摘要:
1、测试数据 [root@centos79 test]# cat a.txt e t q t x g a w i k h e 2、cut删除 [root@centos79 test]# cat a.txt e t q t x g a w i k h e [root@centos79 test]# c 阅读全文
摘要:
1、 #include <stdio.h> int main(void) { signed short int num1 = 10; unsigned short int num2= 10; signed int num3 = 10; unsigned int num4 = 10; signed l 阅读全文
摘要:
1、测试数据sname.csv 1 a 2 b 3 c 4 b 5 d 6 e 7 e 8 f 9 g 10 f test <- read.csv("sname.csv", header = F) test dupid <- test$V2[duplicated(test$V2)] dupid <- 阅读全文