更新我的包的 .Rd

Update .Rd of my Package

为我的包的新功能更新 .Rd 文件的最佳方法是什么?

我在我的 R 脚本中添加了一个函数并创建了一个 .Rd 文件来解释这个函数但是当我重建我的包时:

install("CAPepitesPRO",dependencies = T)
library(CAPepitesPRO)

pkg 编译工作正常:

installing help indices
  converting help for package 'mypkg'
    finding HTML links ... fini
    mypkg-package                    html  
    func1                html  
    func2                html  
    func3                html 
** building package indices
** testing if installed package can be loaded
*** arch - i386
*** arch - x64
* DONE (mypkg)
In R CMD INSTALL

但是当我尝试使用 ?func3 打印 func3 的帮助时,我遇到了这个错误:

No documentation for ‘func3’ in specified packages and libraries:
you could try ‘??func3’

你应该运行以下

document("yourpath/CAPepitesPRO") 

以下

之前
install("CAPepitesPRO",dependencies = T)