在R编程中,我在内部R脚本中创建并调用了一些R函数,但是当该函数在另一个主要R脚本(也称为内部R脚本)中调用时,我需要执行它们。
device_type = ['curl', 'http://localhost:8000/submitinfos/infos/getdevicets/?hostname=master'].execute().text.readLines()
用于R函数和主要的R脚本。
例如,在sapply, list.files(path, pattern)
中
脚本(内部R脚本),我使用fruit.R
文件夹中的apple.R
调用了banana.R
,list.files
之类的R函数,并在此{{1 }}脚本分别为frt
和sapply
。同时,我在此fruit.R
脚本中也将apple <- apple (x,y)
脚本(主脚本)称为花园(苹果,香蕉)并使用了sapply,但我需要执行apple,banana函数仅当在花园程序中调用它们时,才使用banana <- fruit (a,b)
脚本。
请帮帮我。