上一页 1 ··· 224 225 226 227 228 229 230 231 232 ··· 403 下一页
摘要: 001、par(mar)选项的作用是调整绘图区域距离外围框线的距离。作用和par(mai)一样, 可能只是单位不一样. par(mfrow = c(2, 2)) par(mar = c(1, 1, 1, 1)) plot(1:10, main = "mar = 1", cex.main = 3) b 阅读全文
posted @ 2022-05-18 13:15 小鲨鱼2018 阅读(8200) 评论(0) 推荐(0)
摘要: 001、par(oma)选项的作用是调整外框线距离绘图边界的距离。 par(oma = c(1, 1, 1, 1)) plot(1:10, main = "oma = 1", cex.main = 3) box(which = "figure", lwd = 5) box(which = "plot 阅读全文
posted @ 2022-05-18 13:04 小鲨鱼2018 阅读(1513) 评论(0) 推荐(1)
摘要: 001、mai的作用是调整绘图区域与外围框线的距离。 par(mfrow = c(2, 2)) par(mai = c(0.5,0.5,0.5,0.5)) plot(1:10, main = "mai = 0.5", cex.main = 3) box(which = "figure", lwd = 阅读全文
posted @ 2022-05-18 12:57 小鲨鱼2018 阅读(2061) 评论(0) 推荐(0)
摘要: 1、 plot(0:10, 0:10, pch = 16, col = "red", xaxs = "i", yaxs = "i") abline(h = 5, lwd = 5) ## 高度 2、 plot(0:10, 0:10, pch = 16, col = "red", xaxs = "i", 阅读全文
posted @ 2022-05-17 23:54 小鲨鱼2018 阅读(697) 评论(0) 推荐(0)
摘要: 001 完整代码 dat <- read.table("result.fst", header = T) head(dat) chrlen <- vector() for (i in unique(dat$CHR)) { temp <- dat[dat$CHR == i, ] temp <- tem 阅读全文
posted @ 2022-05-17 13:59 小鲨鱼2018 阅读(321) 评论(0) 推荐(0)
摘要: 1、 win + i 打开设置, 点击轻松使用 2、点击左下角键盘 3、将屏幕截图快捷方式点为开 阅读全文
posted @ 2022-05-17 12:47 小鲨鱼2018 阅读(1165) 评论(0) 推荐(0)
摘要: 1、 > plot(1:5, 1:5, xlim = c(0,6), ylim = c (0,6), type = "n") > arrows(x0 = 1, y0 = 1, x1 = 4, y1 = 4) 2、 同时画两个箭头 > plot(1:5, 1:5, xlim = c(0,6), yli 阅读全文
posted @ 2022-05-17 11:20 小鲨鱼2018 阅读(582) 评论(0) 推荐(0)
摘要: 1、 > plot(1:10) > segments(1,1, 6, 4, lwd = 5, col = "red") 阅读全文
posted @ 2022-05-17 11:06 小鲨鱼2018 阅读(459) 评论(0) 推荐(0)
摘要: 1、 完整代码: dat <- read.table("result.fst", header = T) head(dat) chrlen <- vector() for (i in unique(dat$CHR)) { temp <- dat[dat$CHR == i,] temp <- temp 阅读全文
posted @ 2022-05-17 01:23 小鲨鱼2018 阅读(564) 评论(0) 推荐(0)
摘要: [[:alnum:]] = [a-zA-Z0-9] root@PC1:/home/test/test# ls a.txt root@PC1:/home/test/test# cat a.txt GMM 201 0 0 0 GMM 202 0 0 0 GMM 203 0 0 0 root@PC1:/h 阅读全文
posted @ 2022-05-16 23:26 小鲨鱼2018 阅读(435) 评论(0) 推荐(0)
上一页 1 ··· 224 225 226 227 228 229 230 231 232 ··· 403 下一页