什麼是roxygen記錄功能與像 #' @name dbh2vol
#' @usage dbh2vol(dbh,ipft)
#' @description This is an allometric function to return the tree volume
#' @param dbh diameter at breast height
#' @param ipft PFT
#
我使用roxygen2來構建我創建的包的文檔。 PDF文檔,看起來不錯,但是當我運行help(mypackage)我得到 No documentation for ‘mypackage’ in specified packages and libraries:
you could try ‘??mypackage’
我怎樣才能讓help(mypackage)工作? 編輯:解決的辦法是什麼//
我正在編寫一個R包,並希望從舊函數(如old())將兩個參數(說x和y)的文檔繼承到新函數new()。扭曲的是這兩個參數共享相同的參數描述。也就是說,在old(),功能,他們在一個單行文件,並用逗號分隔這樣的: #' @param x,y Two arguments with the same description 我用new()以下繼承這些參數: #' @inheritParams old 但