[R] RCMD Rdconv debugging output

Duncan Murdoch murdoch at stats.uwo.ca
Wed Oct 14 13:54:33 CEST 2009


On 10/14/2009 7:45 AM, Erich Neuwirth wrote:
> I am trying (on Windows XP, with R 2.10.0beta) to use
> RCMD Rdconv -t html myfile.Rd > myfile.html
> to convert some Rd files to html.
> I get a message that there are warning.
> How can I tell Rdconv to show me these warnings?

You can do the same conversion within R as

library(tools)
Rd2HTML("myfile.Rd", out="myfile.html")

and any warnings will show up in the usual way in the console.  For more 
extensive checks, you can use

checkRd("myfile.Rd")

Duncan Murdoch




More information about the R-help mailing list