Chapter 3 Installing R packages

Users of R would sometimes need to install ” R Packages” depending on the operations that they need to perform. For example, for creating a great image (plot) the R package, “ggplot2” is frequently installed. Below is the code for installing the R packages “ggplot2”, “kableExtra”, “magrittr”, “tidyverse”, “janitor”, and “emoji”.

library(ggplot2)
library(kableExtra)
library(magrittr)
library(tidyverse)
library(janitor)
library(emoji)