上一页 1 ··· 236 237 238 239 240 241 242 243 244 ··· 367 下一页
摘要: 1、点R添加至环境变量中 2、点关于 3、点高级系统设置 4、点环境变量 5、点path 6、点编辑 7、点新建 8、输入R安装的bin目录(根据个人安装的目录) 9、确定一直点 10、win + r ,输入cmd,进入dos 11、测试Rscript命令, 没有问题 12、进入工作目录 13、测试 阅读全文
posted @ 2021-10-30 22:12 小鲨鱼2018 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 1、删除指定类型的文件 dir() allfile = dir() ## 目录下的所有文件 allfile txtfile <- grep("*.txt", allfile) ## 查找txt文件,返回索引 txtfile file.remove(allfile[txtfile]) ## 删除txt 阅读全文
posted @ 2021-10-30 21:17 小鲨鱼2018 阅读(2405) 评论(0) 推荐(0) 编辑
摘要: 1、启动Rstudio 2、点击tools 3、点击global options 4、点击browse 5、选择将要设定的路径,点击open 6、然后点击应用 7、重启rstudio,查看 阅读全文
posted @ 2021-10-30 20:56 小鲨鱼2018 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: 1、 dir() dat <- read.table("outcome.ped") dat <- dat[,-(1:6)] loci <- data.frame() loci[1:(nrow(dat) * 2), 1] <- 1 for (i in 1:(ncol(dat)/2)) { loci < 阅读全文
posted @ 2021-10-30 19:03 小鲨鱼2018 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 1、 [root@centos79 test]# cat test.sh #!/bin/bash #step1 check consistence of columns temp1=`head -n 1 $1 | awk '{print NF}'` for i in $(seq `sed -n "$ 阅读全文
posted @ 2021-10-30 15:46 小鲨鱼2018 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1、 a <- c(1, 3, 4, 7, 9) sum_a = 0 for (i in 1:length(a)) { sum_a = sum_a + a[i] } mean_a = sum_a / length(a) va = 0 for (i in 1:length(a)) { va = va 阅读全文
posted @ 2021-10-29 23:09 小鲨鱼2018 阅读(799) 评论(0) 推荐(0) 编辑
摘要: 1、rbind, 按行合并数据框 a <- 1:3 b <- 5:7 c <- 9:11 d <- data.frame(a, b, c) d e <- 11:13 f <- 15:17 g <- 19:21 h <- data.frame(e, f, g) h rbind(d, h) ## 列名不 阅读全文
posted @ 2021-10-29 22:45 小鲨鱼2018 阅读(4133) 评论(0) 推荐(0) 编辑
摘要: R中%in%用于判断前一个向量的元素是否在后一个向量中, 返回逻辑值。 1、 a <- c(3,1,8,9) b <- c(2, 3, 4, 8, 10) a %in% b 利用此关系可以取出向量a、和向量b的交集, 可以取出向量a中不包含在向量b中的项 a <- c(3,1,8,9) b <- c 阅读全文
posted @ 2021-10-29 22:31 小鲨鱼2018 阅读(4113) 评论(0) 推荐(1) 编辑
摘要: 1、echo liujiaxin01@PC1:~/test$ ls a.txt liujiaxin01@PC1:~/test$ cat a.txt 01 02 03 04 05 06 07 08 09 10 liujiaxin01@PC1:~/test$ echo "" >> a.txt liuji 阅读全文
posted @ 2021-10-29 11:23 小鲨鱼2018 阅读(1736) 评论(0) 推荐(1) 编辑
摘要: 列转行 1、paste liujiaxin01@PC1:~/test$ seq -f %02g 10 01 02 03 04 05 06 07 08 09 10 liujiaxin01@PC1:~/test$ seq -f %02g 10 > a.txt liujiaxin01@PC1:~/test 阅读全文
posted @ 2021-10-29 11:18 小鲨鱼2018 阅读(5055) 评论(0) 推荐(0) 编辑
上一页 1 ··· 236 237 238 239 240 241 242 243 244 ··· 367 下一页