上一页 1 ··· 191 192 193 194 195 196 197 198 199 ··· 367 下一页
摘要: 1、当有端口绑定时(比如高校),使用NAT模式。 2、当没有端口绑定时,使用桥接模式。 阅读全文
posted @ 2022-05-10 23:26 小鲨鱼2018 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 御三家:华硕、技嘉、微星 御三家旗舰主板: 华硕重炮手 技嘉小雕 卫星迫击炮 阅读全文
posted @ 2022-05-10 18:34 小鲨鱼2018 阅读(1959) 评论(0) 推荐(0) 编辑
摘要: 1、 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt i aaaadff f aaewrg k aaarbcd j aaaaavvvv i aaaaaaaaere root@PC1:/home/test# grep -E "a 阅读全文
posted @ 2022-05-09 23:13 小鲨鱼2018 阅读(614) 评论(0) 推荐(0) 编辑
摘要: 1、直接依据列名提取 > a <- 1:5 > b <- letters[1:5] > c <- LETTERS[1:5] > d <- letters[6:10] > dat <- data.frame(a, b, c, d) > dat a b c d 1 1 a A f 2 2 b B g 3 阅读全文
posted @ 2022-05-09 20:13 小鲨鱼2018 阅读(4577) 评论(0) 推荐(0) 编辑
摘要: 1、sort -u实现 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt a b c x y z a b c m n o m n o root@PC1:/home/test# sort -u a.txt ## sort -u删除 阅读全文
posted @ 2022-05-09 19:23 小鲨鱼2018 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1、 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt ## 测试数据 d xaa c xaaa d xaaaa e xaaaaa f xaaaaaa d dff gfgfgf e dfgdg gfdgedr d dfef fc 阅读全文
posted @ 2022-05-09 15:24 小鲨鱼2018 阅读(1876) 评论(0) 推荐(0) 编辑
摘要: 1、 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt ## 测试数据 d aab c aaab d aaaax e aaaaax f aaaaaax root@PC1:/home/test# grep -E "a{2}" a. 阅读全文
posted @ 2022-05-09 13:39 小鲨鱼2018 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 1、提取以指定字符开头的行 > a <- c("abc", "axy", "123", "axy", "mnp") > b <- c("dse", "bcd", "ee4", "sdb", "345") > c <- c("mcy", "873", "345", "egs", &qu 阅读全文
posted @ 2022-05-09 12:06 小鲨鱼2018 阅读(7091) 评论(0) 推荐(0) 编辑
摘要: 1、第一列转化为行名 > x <- letters[1:5] > y <- 1:5 > z <- LETTERS[1:5] > dat <- data.frame(x, y, z) > dat ## 测试数据框 x y z 1 a 1 A 2 b 2 B 3 c 3 C 4 d 4 D 5 e 5 阅读全文
posted @ 2022-05-08 22:57 小鲨鱼2018 阅读(17436) 评论(0) 推荐(0) 编辑
摘要: 1、测试文件 2、加载readxl包、读取数据 > library(readxl) ## 加载readxl包 > dir() [1] "test.xlsx" > sheet1 <- read_xlsx("test.xlsx", sheet = 1, col_names = F) ## 利用read_ 阅读全文
posted @ 2022-05-08 22:27 小鲨鱼2018 阅读(1669) 评论(0) 推荐(0) 编辑
上一页 1 ··· 191 192 193 194 195 196 197 198 199 ··· 367 下一页