How we can get the list of installed packages by user in R along with its version?
I know about the command installed.packages() which will give information
installed.packages()
str(allPackage <- installed.packages(.Library, priority = "high")) allPackage [, c(1,3:5)]
You will get all the active package List