compatibleVersions {annotate} | R Documentation |
This function takes the names of installed R packages and then checks to see if they all have the same version number.
compatibleVersions(...)
... |
... character strings for the names of R
packages that have been installed |
If all the package have the same version number, the function returns TRUE. Otherwise, the function returns FALSE
This function returns TRUE or FALSE depending on whether the packages have the same version number
Jianhua Zhang
if(require("hgu95av2") && require("GO")){ compatibleVersions("hgu95av2", "GO") }