Skip to content
Related Articles
Open in App
Not now

Related Articles

Packages in R Programming

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 22 Nov, 2021
Improve Article
Save Article
Like Article

The package is an appropriate way to organize the work and share it with others. Typically, a package will include code (not only R code!), documentation for the package and the functions inside, some tests to check everything works as it should, and data sets. 

Packages in R

Packages in R Programming language are a set of R functions, compiled code, and sample data. These are stored under a directory called “library” within the R environment. By default, R installs a group of packages during installation. Once we start the R console, only the default packages are available by default. Other packages that are already installed need to be loaded explicitly to be utilized by the R program that’s getting to use them. 

What are Repositories?

A repository is a place where packages are located and stored so you can install packages from it. Organizations and Developers have a local repository, typically they are online and accessible to everyone. Some of the most popular repositories for R packages are: 

  • CRAN: Comprehensive R Archive Network(CRAN) is the official repository, it is a network of ftp and web servers maintained by the R community around the world. The R community coordinates it, and for a package to be published in CRAN, the Package needs to pass several tests to ensure that the package is following CRAN policies.
  • Bioconductor: Bioconductor is a topic-specific repository, intended for open source software for bioinformatics. Similar to CRAN, it has its own submission and review processes, and its community is very active having several conferences and meetings per year in order to maintain quality.
  • Github: Github is the most popular repository for open source projects. It’s popular as it comes from the unlimited space for open source, the integration with git, a version control software, and its ease to share and collaborate with others.

Install an R-Packages

There are multiple ways to install R Package, some of them are, 

  • Installing Packages From CRAN: For installing Package from CRAN we need the name of the package and use the following command:
install.packages("package name")
  • Installing Package from CRAN is the most common and easiest way as we just have to use only one command. In order to install more than a package at a time, we just have to write them as a character vector in the first argument of the install.packages() function:

Example: 

install.packages(c("vioplot", "MASS"))
  • Installing Bioconductor Packages: In Bioconductor, the standard way to install a package is by first executing the following script:
source("https://bioconductor.org/biocLite.R")
  • This will install some basic functions which are needed to install bioconductor packages, such as the biocLite() function. To install the core packages of Bioconductor just type it without further arguments:
biocLite()
  • If we just want a few particular packages from this repository then type their names directly as a character vector:

Example: 

biocLite(c("GenomicFeatures", "AnnotationDbi"))

Update, Remove and Check Installed Packages in R

To check what packages are installed on your computer, type this command: 

installed.packages()

To update all the packages, type this command: 

update.packages()

To update a specific package, type this command: 

install.packages("PACKAGE NAME")

Installing Packages Using RStudio UI

In R Studio goto Tools -> Install Package, and there we will get a pop-up window to type the package you want to install: 

Install-package-in-R2

Under Packages, type, and search Package which we want to install and then click on install button. 

How to Load Packages in R Programming Language

When a package is installed, we are ready to use its functionalities. If we just need a sporadic use of a few functions or data inside a package we can access them with the following notation.

 packagename::functionname()

Example:  Let’s access the births function of package babynames. Then type this command, 

babynames::births

Output: 

output

Difference Between a Package and a Library

There is always confusion between a package and a library, and we find people calling libraries as packages. 

  • library(): It is the command used to load a package, and it refers to the place where the package is contained, usually a folder on our computer.
  • Package: It is a collection of functions bundled conveniently. The package is an appropriate way to organize our own work and share it with others.

Load More Than One Package at a Time

We can just input a vector of names to the install.packages() function to install a package, in the case of the library() function, this is not possible. We can load a set of packages one at a time, or if you prefer, use one of the many work arounds developed by R users. 

Unload a Package in R Language

To unload a given package, use the detach() function. The use will be: 

detach("package:babynames", unload = TRUE)

Choose the Right R Packages

The traditional way of discovering packages is just by learning R, in many tutorials and courses the most popular packages are usually mentioned and used. The first alternative can be to browse categories of CRAN packages. CRAN is the official repository, also gives us the option to browse through packages. 

Another alternative to finding packages can be R Documentation, a help documentation aggregator for R packages from CRAN, BioConductor, and GitHub, which offers you a search box ready for your requests directly on the main page.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!