R语言中source()函数出现错误,求大神指教

编辑source函数如下:
source("h.r")
出现的错误如下:
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
cannot open file 'h.r': No such file or directory

你查看你的工作路径是不是可以缺省,把路径写全了再试。查看我刚写的已经得到正确结果:
> source("F:\\Program Files\\R\\temp\\h.r")
[1] 0 4 6 8 10 12 14 16 18 20 22
另外,注意R语言的绝对路径要用双反斜杠。

希望能帮到你。
温馨提示:内容为网友见解,仅供参考
第1个回答  2015-07-29
缺少函数文件h.r
检查一下引用文件夹中,是否确实少了这个文件。追问

不缺少,我在引用文件夹建立了一个TXT,然后重命名为h.r,然后在R中用source('h.r'),就出现了这样的错误。

本回答被网友采纳
相似回答