- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get the list of packages installed in base R?
There is no limitation to installation of packages in R but base R also has some packages associated to it. Hence, there is no need to install or load them in R console every time. We can directly use any of the base R package functions to perform the analysis. If we want to get the list of these package then we can use the code as shown below:
Example
> installed.packages(priority="base")
Output
Package LibPath Version Priority base "base" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" compiler "compiler" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" datasets "datasets" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" graphics "graphics" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" grDevices "grDevices" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" grid "grid" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" methods "methods" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" parallel "parallel" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" splines "splines" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" stats "stats" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" stats4 "stats4" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" tcltk "tcltk" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" tools "tools" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" utils "utils" "C:/Program Files/R/R-4.0.2/library" "4.0.2" "base" Depends Imports LinkingTo base NA NA NA compiler NA NA NA datasets NA NA NA graphics NA "grDevices" NA grDevices NA NA NA grid NA "grDevices, utils" NA methods NA "utils, stats" NA parallel NA "tools, compiler" NA splines NA "graphics, stats" NA stats NA "utils, grDevices, graphics" NA stats4 NA "graphics, methods, stats" NA tcltk NA "utils" NA tools NA NA NA utils NA NA NA Suggests Enhances base "methods" NA compiler NA NA datasets NA NA graphics NA NA grDevices "KernSmooth" NA grid "lattice" NA methods "codetools" NA parallel "methods" "snow, nws, Rmpi" splines "Matrix, methods" NA stats "MASS, Matrix, SuppDists, methods, stats4" NA stats4 NA NA tcltk NA NA tools "codetools, methods, xml2, curl, commonmark" NA utils "methods, xml2, commonmark" NA License License_is_FOSS License_restricts_use OS_type base "Part of R 4.0.2" NA NA NA compiler "Part of R 4.0.2" NA NA NA datasets "Part of R 4.0.2" NA NA NA graphics "Part of R 4.0.2" NA NA NA grDevices "Part of R 4.0.2" NA NA NA grid "Part of R 4.0.2" NA NA NA methods "Part of R 4.0.2" NA NA NA parallel "Part of R 4.0.2" NA NA NA splines "Part of R 4.0.2" NA NA NA stats "Part of R 4.0.2" NA NA NA stats4 "Part of R 4.0.2" NA NA NA tcltk "Part of R 4.0.2" NA NA NA tools "Part of R 4.0.2" NA NA NA utils "Part of R 4.0.2" NA NA NA MD5sum NeedsCompilation Built base NA NA "4.0.2" compiler NA NA "4.0.2" datasets NA NA "4.0.2" graphics NA "yes" "4.0.2" grDevices NA "yes" "4.0.2" grid NA "yes" "4.0.2" methods NA "yes" "4.0.2" parallel NA "yes" "4.0.2" splines NA "yes" "4.0.2" stats NA "yes" "4.0.2" stats4 NA NA "4.0.2" tcltk NA "yes" "4.0.2" tools NA "yes" "4.0.2" utils NA "yes" "4.0.2"
- Related Articles
- How to find the location of installed packages in R in windows operating system?
- How to get a list of installed android Applications?
- How to get a list of installed Android applications in Kotlin?
- How to get the list of data sets available in base R or in a package in R?
- How can I get a list of locally installed Python modules?
- How to get installed windows update using PowerShell?
- How to list down all the plug-in installed in your browser?
- How to get the installed Azure VM extension using PowerShell?
- How to create boxplot for a list object in base R?
- How to get the list of available data frames in R environment?
- How to check which packages are loaded in R?
- How to create a column of log with base 2 in data frames stored in R list?
- How to create a column of log with base 10 in data frames stored in R list?
- How to increase the thickness of histogram lines in base R?
- How to change the resolution of a plot in base R?

Advertisements