Re: [R] error message with roxygen

2009-02-02 Thread David Hajage
I have found something there : https://lists.r-forge.r-project.org/pipermail/roxygen-devel/2009-January/16.html In order to do static callgraphs, the package itself has to be loadable; that's unfortunate in the sense that you may have to install the package before generating the docs. But I

Re: [R] error message with roxygen

2009-02-02 Thread hadley wickham
On Fri, Jan 30, 2009 at 3:49 AM, David Hajage dhajag...@gmail.com wrote: Hello useRs, I'm trying to use the Roxygen package. Here my code file : #' A packge to check Roxygen's sanity #' @name helloRoxygen-package #' @docType package NA And my R code to generate the package :

Re: [R] error message with roxygen

2009-02-02 Thread David Hajage
Thank you Hadley! 2009/2/2 hadley wickham h.wick...@gmail.com On Fri, Jan 30, 2009 at 3:49 AM, David Hajage dhajag...@gmail.com wrote: Hello useRs, I'm trying to use the Roxygen package. Here my code file : #' A packge to check Roxygen's sanity #' @name helloRoxygen-package #'

[R] error message with roxygen

2009-01-30 Thread David Hajage
Hello useRs, I'm trying to use the Roxygen package. Here my code file : #' A packge to check Roxygen's sanity #' @name helloRoxygen-package #' @docType package NA And my R code to generate the package : library(roxygen) package.skeleton(helloRoxygen, code_files = roxy.r, force = T)