본문 바로가기

카테고리 없음

Install Packages In R

PackagesCanPackages

R Install Multiple Packages

R is an important programming language used heavily by statisticians. It is also used in machine learning, data science, research, and many more new fields. It is a computing environment where statistical data may be implemented. In this article, we shall discuss and learn about the packages in R.Package in RPackages are add-ons that can extend R's functionality and perform specific tasks covering a wide range of statistics. Packages are the collections of the R functions and data sets. The packages in R is developed by R Studio team as well as individuals.There are several package (around 5k) available in R. Some of them are standard packages that come with R installation package, such as - tidyverse, shiny, ggplot2, readxl, devtools, plumber, gdata etc.Installing Packages in RWe can install a package in R using function install.packages or following the steps of submenu Install Packages.

Which is the part of Tools menu. We can also install the packages manually after downloading from R Standard and official website site or from other sources available on Google.Instailing Package By function install.packagesTo know more about install.packages function, you can type either?install.packages or help(install.packages). It will show the documentation of install.packages in R Studio as shown in below images.