R 包



R 包是 R 函数、编译代码和示例数据的集合。它们存储在 R 环境中名为 **“library”** 的目录下。默认情况下,R 在安装过程中会安装一组包。稍后,当需要用于某些特定目的时,会添加更多包。当我们启动 R 控制台时,默认情况下只有默认包可用。其他已安装的包必须显式加载才能被将要使用它们的 R 程序使用。

R 语言中所有可用的包都列在 R 包。

以下是用于检查、验证和使用 R 包的命令列表。

检查可用的 R 包

获取包含 R 包的库位置

.libPaths()

当我们执行上述代码时,它会产生以下结果。它可能会根据您电脑的本地设置而有所不同。

[2] "C:/Program Files/R/R-3.2.2/library"

获取所有已安装包的列表

library()

当我们执行上述代码时,它会产生以下结果。它可能会根据您电脑的本地设置而有所不同。

Packages in library ‘C:/Program Files/R/R-3.2.2/library’:

base                    The R Base Package
boot                    Bootstrap Functions (Originally by Angelo Canty
                        for S)
class                   Functions for Classification
cluster                 "Finding Groups in Data": Cluster Analysis
                        Extended Rousseeuw et al.
codetools               Code Analysis Tools for R
compiler                The R Compiler Package
datasets                The R Datasets Package
foreign                 Read Data Stored by 'Minitab', 'S', 'SAS',
                        'SPSS', 'Stata', 'Systat', 'Weka', 'dBase', ...
graphics                The R Graphics Package
grDevices               The R Graphics Devices and Support for Colours
                        and Fonts
grid                    The Grid Graphics Package
KernSmooth              Functions for Kernel Smoothing Supporting Wand
                        & Jones (1995)
lattice                 Trellis Graphics for R
MASS                    Support Functions and Datasets for Venables and
                        Ripley's MASS
Matrix                  Sparse and Dense Matrix Classes and Methods
methods                 Formal Methods and Classes
mgcv                    Mixed GAM Computation Vehicle with GCV/AIC/REML
                        Smoothness Estimation
nlme                    Linear and Nonlinear Mixed Effects Models
nnet                    Feed-Forward Neural Networks and Multinomial
                        Log-Linear Models
parallel                Support for Parallel computation in R
rpart                   Recursive Partitioning and Regression Trees
spatial                 Functions for Kriging and Point Pattern
                        Analysis
splines                 Regression Spline Functions and Classes
stats                   The R Stats Package
stats4                  Statistical Functions using S4 Classes
survival                Survival Analysis
tcltk                   Tcl/Tk Interface
tools                   Tools for Package Development
utils                   The R Utils Package

获取当前在 R 环境中加载的所有包

search()

当我们执行上述代码时,它会产生以下结果。它可能会根据您电脑的本地设置而有所不同。

[1] ".GlobalEnv"        "package:stats"     "package:graphics" 
[4] "package:grDevices" "package:utils"     "package:datasets" 
[7] "package:methods"   "Autoloads"         "package:base" 

安装新包

有两种方法可以添加新的 R 包。一种是从 CRAN 目录直接安装,另一种是将包下载到本地系统并手动安装。

直接从 CRAN 安装

以下命令直接从 CRAN 网页获取包并在 R 环境中安装包。您可能会被提示选择最近的镜像。选择适合您所在位置的镜像。

 install.packages("Package Name")
 
# Install the package named "XML".
 install.packages("XML")

手动安装包

访问链接 R 包 下载所需的包。将包保存为本地系统中合适位置的 **.zip** 文件。

现在您可以运行以下命令在 R 环境中安装此包。

install.packages(file_name_with_path, repos = NULL, type = "source")

# Install the package named "XML"
install.packages("E:/XML_3.98-1.3.zip", repos = NULL, type = "source")

将包加载到库中

在代码中使用包之前,必须将其加载到当前 R 环境中。您还需要加载以前已安装但当前环境中不可用的包。

使用以下命令加载包:

library("package Name", lib.loc = "path to library")

# Load the package named "XML"
install.packages("E:/XML_3.98-1.3.zip", repos = NULL, type = "source")
广告