Answers for "how to see packages function r"

R
1

how to find the R packages and versions

ip <- as.data.frame(installed.packages()[,c(1,3:4)])
rownames(ip) <- NULL
ip <- ip[is.na(ip$Priority),1:2,drop=FALSE]
print(ip, row.names=FALSE)
Posted by: Guest on April-08-2021

Browse Popular Code Answers by Language