Old question, but not among the answers is my favorite command to get a quick and short overview of all loaded packages:
(.packages())
To see which version is installed of all loaded packages, just use the above command to subset installed.packages()
.
installed.packages()[(.packages()),3]
By changing the column number (3 for package version) you can get any other information stored in installed.packages()
in an easy-to-read matrix. Below is an example for version number and dependency:
installed.packages()[(.packages()),c(3,5)]