如何消除 Roxygen 关于“未找到名称...”的警告?

发布于 2024-12-01 11:15:00 字数 741 浏览 1 评论 0原文

我正在使用参数 use.Rd2 = TRUE 调用 roxygenize()。我有一个文件 testcase.R,我在其中使用 R.oo 创建一个简单的 S3 对象。这是文件的内容。 roxygen 在这里无事可做,它应该忽略内容:

library( R.oo )

setConstructorS3( "TestCase" , 
function() 
{  
    extend( Object() , "TestCase", 
            .parameters = list() ,
            .validationData = list()
          )
} )

这是错误:

Error in parse.name(partitum) :
  (converted from warning) No name found for the following expression in E:/mypackage/R/te
stcase.R line 1:
  `library( R.oo ) . . .'
Calls: roxygenize ... <Anonymous> -> maybe.call -> do.call -> <Anonymous> -> par
se.name

如何消除警告?根据其他帖子中的建议,我添加了以下内容作为第一行,但它不起作用:

 #' @nord

I'm calling roxygenize() with parameter use.Rd2 = TRUE. I have a file testcase.R where I create a simple S3 object using R.oo. Here's the contents of the file. There's nothing for roxygen to do here, and it should ignore the contents:

library( R.oo )

setConstructorS3( "TestCase" , 
function() 
{  
    extend( Object() , "TestCase", 
            .parameters = list() ,
            .validationData = list()
          )
} )

And here's the error:

Error in parse.name(partitum) :
  (converted from warning) No name found for the following expression in E:/mypackage/R/te
stcase.R line 1:
  `library( R.oo ) . . .'
Calls: roxygenize ... <Anonymous> -> maybe.call -> do.call -> <Anonymous> -> par
se.name

How can I eliminate the warning? Per suggestions in other posts, I added the following as the first line, but it didn't work:

 #' @nord

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蝶舞 2024-12-08 11:15:00

升级到 Roxygen2 消除了该错误。

Upgrading to Roxygen2 eliminated the error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文