error message with roxygen
On Fri, Jan 30, 2009 at 3:49 AM, David Hajage <dhajage.r at 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 :
library(roxygen)
package.skeleton("helloRoxygen", code_files = "roxy.r", force = T)
roxygenize("helloRoxygen", "helloRoxygen", copy.package = F, unlink.target =
F, overwrite = T)
I obtain this error message :
Writing helloRoxygen-package to helloRoxygen/man/helloRoxygen-package.Rd
Writing namespace directives to helloRoxygen/NAMESPACE
Merging collate directive with helloRoxygen/DESCRIPTION to
helloRoxygen/DESCRIPTION
*Avis dans load.dependencies() :
Package(s) 'helloRoxygen' wouldn't load; callgraphs might be incomplete.*
I don't understand what this means. I'm doing something wrong?
That's not an error - just a warning. You can't get complete call graphs (if you need them) unless you've already installed your helloRoxygen package. If you're not using the call graphs, don't worry about it. Hadley