我是靠谱客的博主 耍酷雪糕,最近开发中收集的这篇文章主要介绍R语言source命令使用过程中遇到的某些错误的解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2022年7月9日
今天在R中用source(‘Afunc.R’)调取Afunc.R里的函数时, 出现了错误如下:
Error in file(filename, “r”, encoding = encoding) :
cannot open the connection
In addition: Warning message:
In file(filename, “r”, encoding = encoding) :

Error in file(filename, “r”, encoding = encoding) :
cannot open the connection
后发现Afunc.R里有source其他文件(Bfunc), 但Bfunc的地址与其实际位置不一致,所以我把Bfunc移到文档下(C:UsersLENOVODocuments)并把Afunc.R里的source改为source(‘Bfunc.R’)就没问题了。

因此,在使用source命令出问题时,要注意source的那些文件里是否也有source,地址是否写错。

2022年7月11日
今天打开Rstudio运行source(‘Afunc.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 ‘Afunc.R’: No such file or directory
怀疑是工作路径出问题了,就用getwd()检查了下,发现不是文档(C:UsersLENOVODocuments),跑去D盘了,原因未知,我没有主动修改过工作路径。不出所料,我用setwd(“C:UsersLENOVODocuments”)修改工作路径后再运行source(‘Afunc.R’)就正常了。

最后

以上就是耍酷雪糕为你收集整理的R语言source命令使用过程中遇到的某些错误的解决方法的全部内容,希望文章能够帮你解决R语言source命令使用过程中遇到的某些错误的解决方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部