R语言编写、调用自定义函数
程序员文章站
2022-06-12 10:12:24
...
编写函数:
myfunction <- function(arg1, arg2, ... ){
statements
return(object)
}
调用函数:
#source 函数文件
source(FUNCfile)
#调用函数
result=myfunction(arg1, ...)
上一篇: C++11之function
下一篇: Linux 进程(二) 进程地址空间