| library.version {ssBase} | R Documentation |
Prints, via Unix, the versions of each of the packages requested.
library.version(which = "[a-z]*")
which |
string or character vector of packages for which version information is required. The default is to show all the currently installed packages. |
The character strings may use shell wildcards, but this means that all shell special characters must be escaped, as shown above.
No value is returned by this function.
Ray Brownrigg, 2000
# get the version of the current base package
library.version("base")
# get the version of the maps library and all SSLib packages
library.version(c("maps", "ss*"))