For instance, I am trying to run Roxygen on:

require( zoo )           # needed for time series
setClass( "zoo" )       # lets S4 know about S3 class so we can use as an
argument
setClass( "myClass", representation( .zoo="zoo" ), prototype( 0,
as.Date("1970-01-01") ))

When I run this code through Roxygen, it warns:
> No name found for the following expression: require( zoo ) 

and generates zoo.Rd  - I don't want any zoo.Rd to be generated - I am a
user of the library, not an implementer.

1. How can I tell Roxygen NOT to generate zoo.Rd?
2. What do I do to prevent Roxygen from warning about: require( zoo ) ?

Thx.

- Ken
-- 
View this message in context: 
http://www.nabble.com/Roxygen-to-ignore-a-block-of-code--tp24133293p24137672.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to