摘要: 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) 编辑