摘要: # 获取操作符[[的帮助 ?`[[` 相同点: 两者作用都是“提取”,当从一个向量或矩阵中提取第3个元素时,两者结果相同! > aaa<-c(1,2,3,4,5) > aaa[3] [1] 3 > aaa[[3]] [1] 3 不同点: 当数据不是一个list时,情况就不同了。 [] extract 阅读全文
posted @ 2021-06-22 22:19 emanlee 阅读(4343) 评论(0) 推荐(0)
摘要: > BiocManager::install("stringi",ask = F,update = F) 'getOption("repos")' replaces Bioconductor standard repositories, see '?repositories' for details 阅读全文
posted @ 2021-06-22 20:00 emanlee 阅读(552) 评论(0) 推荐(0)
摘要: There are binary versions available but the source versions are later: binary source needs_compilation xfun 0.22 0.24 TRUE tinytex 0.31 0.32 FALSE rma 阅读全文
posted @ 2021-06-22 19:42 emanlee 阅读(315) 评论(0) 推荐(0)