安装或设置

要安装 dplyr,只需在 R 控制台中输入即可。

install.packages("dplyr") 

然后加载 dplyr,键入

library("dplyr")

也可以从 Github 安装最新的开发版本 :

if (packageVersion("devtools") < 1.6) {
  install.packages("devtools")
}
devtools::install_github("hadley/lazyeval")
devtools::install_github("hadley/dplyr")

你可能希望安装大多数示例中使用的数据包:install.packages(c("nycflights13", "Lahman"))