...load the namespace when a package is being detached.
如果要移除所有已加载的包,可参考https://stackoverflow.com/questions/7505547/detach-all-packages-while-working-in-r 中的回答:
lapply(names(sessionInfo()$loadedOnly), require, character.only = TRUE)invisible(lapply(paste0('p...
...数据集之间变量的相关性。这样的话可以先计算,然后再筛选。
这个函数要求的输入数据是矩阵格式,注意数据最少有5行
rcorr()这个函数的帮助文档也写到了
a numeric matrix with at least 5 rows and at least 2 columns (if y is absent). For print...