上一页 1 ··· 365 366 367 368 369 370 371 372 373 ··· 375 下一页
摘要: 1、创建测试数据 [root@linuxprobe test]# dd if=/dev/zero bs=1024 count=40000 of=c.txt [root@linuxprobe test]# dd if=/dev/zero bs=1024 count=4000 of=d.txt [roo 阅读全文
posted @ 2020-10-03 17:53 小鲨鱼2018 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 1、R语言strsplit用于分割字符串 创建测试数据 > test <- "aa bb cc dd ee ff" ##创建测试数据 > test [1] "aa bb cc dd ee ff" > class(test) ## 测试数据为字符 [1] "character" 2、按照指定分隔符拆分 阅读全文
posted @ 2020-10-03 16:48 小鲨鱼2018 阅读(17507) 评论(0) 推荐(0) 编辑
摘要: 1、使用vim创建测试数据 a.txt [root@linuxprobe test]# cat a.txt 1 w e t 2 s f h 3 z c g 4 e a g 5 a f w 6 k h d 7 w f r 2、删除指定的行 [root@linuxprobe test]# sed '3d 阅读全文
posted @ 2020-10-03 12:15 小鲨鱼2018 阅读(10435) 评论(0) 推荐(0) 编辑
摘要: 1、创建测试数据 > test <- as.data.frame(matrix(1:100,nrow = 10)) > test V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 1 1 11 21 31 41 51 61 71 81 91 2 2 12 22 32 42 52 62 7 阅读全文
posted @ 2020-10-03 11:37 小鲨鱼2018 阅读(10382) 评论(0) 推荐(0) 编辑
摘要: 1、创建测试数据 > dat <- as.data.frame(matrix(1:100,nrow =10)) > dat V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 1 1 11 21 31 41 51 61 71 81 91 2 2 12 22 32 42 52 62 72 8 阅读全文
posted @ 2020-10-02 15:19 小鲨鱼2018 阅读(12525) 评论(0) 推荐(2) 编辑
摘要: 1、创建测试数据 [root@linuxprobe test]# seq 20 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# head a.txt 1 2 3 4 5 6 7 8 9 10 2、提取奇数行 [root 阅读全文
posted @ 2020-10-02 09:50 小鲨鱼2018 阅读(3016) 评论(0) 推荐(0) 编辑
摘要: 1、创建测试数据 [root@linuxprobe test]# seq 30 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# head a.txt 1 2 3 4 5 6 7 8 9 10 2、提取奇数行 [root 阅读全文
posted @ 2020-10-01 23:29 小鲨鱼2018 阅读(3112) 评论(0) 推荐(0) 编辑
摘要: 1、遇到一个数据需要提取奇数列 创建测试数据 [root@linuxprobe test]# seq -f %03g 60 | xargs -n 30 > test.txt[root@linuxprobe test]# seq -f c%02g 30 | xargs |cat - test.txt 阅读全文
posted @ 2020-10-01 23:12 小鲨鱼2018 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 1、遇到一个数据需要提取奇数列 [root@linuxprobe test]# cat test.txtc1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 阅读全文
posted @ 2020-10-01 23:09 小鲨鱼2018 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 1、运行perl程序遇到如下报错,Can't exec "epstopdf": No such file or directory 2、 安装 epstopdf git clone https://github.com/lgong30/epstopdf.g cd epstopdf/ chmod +x 阅读全文
posted @ 2020-10-01 21:47 小鲨鱼2018 阅读(1197) 评论(0) 推荐(0) 编辑
上一页 1 ··· 365 366 367 368 369 370 371 372 373 ··· 375 下一页