Roxygen2 - how to @export reference class generator?

懵懂的女人 提交于 2019-12-22 04:01:52

问题


For instance, say I have the following package called Test and I want to export class A:

# In /R/Test.R:
#' @docType package
#' @import methods
#' @exportClass A
A <- setRefClass("A", methods = list(foo = identity))

However, after building and loading, I get the following error when using A's generator:

> library(Test)
> A()$foo(1)
Error: could not find function "A"

I've checked the contents of my NAMESPACE file is fine:

exportClasses(A)
import(methods)

So what's going wrong? Why isn't my class generator being exported?


回答1:


If you add @export A then the generator function A will be exported, too, e.g.

#' A class description
#'
#' @import methods
#' @export A
#' @exportClass A
A = setRefClass('A',
  fields=list(name='character', n='numeric'),
  methods=list(
    hello=function() {
      "A greeting"
      return(paste0('Hello, ', name))
    }
  )
)

Important: Don't forget to explicitly mention A in the export directive or it doesn't appear to work, unlike for functions.

Alternatively, as the class is being exported, you can still use the class via new(), e.g.

> a = new('A', name='Josh', n=12345)
> a$hello()
 [1] "Hello, Josh"

but it's easy to just add the export.



来源:https://stackoverflow.com/questions/21532365/roxygen2-how-to-export-reference-class-generator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!