上一页 1 ··· 276 277 278 279 280 281 282 283 284 ··· 408 下一页
摘要: 1、加减(矩阵加减只能在同维度矩阵之间进行,即行列数相同) a1 <- c(2, 3, 5, 1, 7, 4, 8, 4, 2) a2 <- c(3, 1, 3, 1, 4, 8, 4, 3, 4) m1 <- matrix(a1, nrow = 3, byrow = T) m2 <- matrix 阅读全文
posted @ 2021-10-31 21:08 小鲨鱼2018 阅读(1860) 评论(0) 推荐(0)
摘要: 1、协方差 协方差:两个向量每一项与各自平均数只差 的对应项乘积之和的平均数。 方差:每一项与平均数只差 的平方的平均数。 标准差: 方差开平方 皮尔逊相关系数:两个向量的协方差 除以 两个向量的标准差的乘积。 a <- c(1, 3, 7, 8) b <- c(12, 15, 16, 18) su 阅读全文
posted @ 2021-10-31 19:28 小鲨鱼2018 阅读(2584) 评论(0) 推荐(0)
摘要: 1、R脚本 dir() dat <- read.table("outcome.ped") dat id <- dat[,2] dat <- dat[, -(1:6)] result <- data.frame() for (i in 1:nrow(dat)) { count = 0 for (j i 阅读全文
posted @ 2021-10-31 18:16 小鲨鱼2018 阅读(162) 评论(0) 推荐(0)
摘要: 1、shell脚本 [root@centos79 test]# cat test.sh #!/bin/bash ## step1 for i in $(seq `sed -n "$=" $1`); do sed -n "$i"p $1 | cut -d " " -f 7- | grep -o "0" 阅读全文
posted @ 2021-10-31 18:00 小鲨鱼2018 阅读(89) 评论(0) 推荐(0)
摘要: 1、plink脚本 plink --file outcome --pca 3 header tabs --sheep --out pcatest > /dev/null; rm *.log *.nosex 2、R绘图 dir() dat <- read.table("pcatest.eigenvec 阅读全文
posted @ 2021-10-31 17:00 小鲨鱼2018 阅读(459) 评论(0) 推荐(0)
摘要: 1、R实现 dir() dat <- read.table("outcome.ped") dim(dat) dat <- dat[,-(1:6)] loci <- data.frame(v1 = rep(1, 2 * nrow(dat))) for (i in 1:(ncol(dat)/2)) { 阅读全文
posted @ 2021-10-31 14:50 小鲨鱼2018 阅读(150) 评论(0) 推荐(0)
摘要: 1、脚本 [root@centos79 test]# cat test.sh #!/bin/bash #step1 check ped file uniqn=$(sed 's/\r//g' $1 | cut -d " " -f 7- | sed 's/ /\n/g' | sort -u | wc - 阅读全文
posted @ 2021-10-31 12:57 小鲨鱼2018 阅读(123) 评论(0) 推荐(0)
摘要: 1、脚本只有10行,报第11行错误?? [root@centos79 test]# bash test.sh test.sh: line 11: syntax error: unexpected end of file [root@centos79 test]# cat -n test.sh 1 # 阅读全文
posted @ 2021-10-31 12:20 小鲨鱼2018 阅读(525) 评论(0) 推荐(0)
摘要: 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 阅读(544) 评论(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 阅读(2886) 评论(0) 推荐(0)
上一页 1 ··· 276 277 278 279 280 281 282 283 284 ··· 408 下一页