我已经创建了一个实用程序 R 脚本 util.R,我想从我项目中的其他脚本中使用它。 确保该脚本定义的函数可用于其他脚本的正确方法是什么?
I'm looking for something similar to the require
function, that loads a package only if it has not been loaded yet. I don't want to call source("util.R")
because that will load the script every time it is called.
我知道我会得到一些答案,告诉我创建一个包,如在 组织 R 源代码:) 但是我并没有创建一些可以在其他地方使用的东西,它只是一个独立的项目。