R - getting list of libraries installed
to get a list of installed packages in your R, just use the following command :-
installed.packages()
You can also list core libraries by using the following command
installed.packages(priority = "base")
"base" must be lower case.
Comments