从R文件导入内容

时间:2012-01-03 05:19:15

标签: r

我正在研究R,我被要求使用在simpleR库(http://www.math.csi.cuny.edu/Statistics/R/simpleR/index.html/simpleR.R)上提供的pi2000数据集。然后我下载了这个文件。如何将其导入命令行?

2 个答案:

答案 0 :(得分:15)

使用source功能:

> source("http://www.math.csi.cuny.edu/Statistics/R/simpleR/index.html/simpleR.R")

然后您可以访问那里定义的变量:

> vacation
 [1] 23 12 10 34 25 16 27 18 28 13 14 20  8 21 23 33 30 13 16 14 38 19  6 11 15 21 10
[28] 39 42 25 12 17 19 26 20

有关详细信息,请在R终端中键入?source

答案 1 :(得分:5)

你的意思是将功能加载到R?如果是,请使用source()

source("http://www.math.csi.cuny.edu/Statistics/R/simpleR/index.html/simpleR.R")