Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 R 上制作一个包。我有两个函数共享一个变量(全局)。
如何将其导入包中?
例如,
m<-0 f<-function() { m <- m+1 } g<-function() { m <- m-1 }
是的,您可以导出变量,但您不必这样做。
您要查找的主题是“编写扩展”手册中的“包中的数据”。