Answers for "how to find the R packages and versions"

5

which package version do i have r

# Replace "snow" below with the name of the package
> packageVersion("snow")
Posted by: Guest on March-05-2020
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

Code answers related to "how to find the R packages and versions"

Browse Popular Code Answers by Language