[R] RCMD Rdconv debugging output

2009-10-14 Thread Erich Neuwirth
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?

-- 
Erich Neuwirth, University of Vienna
Faculty of Computer Science
Computer Supported Didactics Working Group
Visit our SunSITE at http://sunsite.univie.ac.at
Phone: +43-1-4277-39464 Fax: +43-1-4277-39459

__
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.


Re: [R] RCMD Rdconv debugging output

2009-10-14 Thread Duncan Murdoch

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

__
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.


Re: [R] RCMD Rdconv debugging output

2009-10-14 Thread Erich Neuwirth
Thanks Duncan, this solved my problem.
Here is another thingy I noticed

\title{RExcel - Using \R from within Excel}
produces
RExcel - Using list() from within Excel
So the \R macro cannot be used in titles.
Is this intentional?



Duncan Murdoch wrote:
 On 10/14/2009 7:45 AM, Erich Neuwirth wrote:
 I am trying (on Windows XP, with R 2.10.0beta) to use
 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
 
 
 

-- 
Erich Neuwirth, University of Vienna
Faculty of Computer Science
Computer Supported Didactics Working Group
Visit our SunSITE at http://sunsite.univie.ac.at
Phone: +43-1-4277-39464 Fax: +43-1-4277-39459

__
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.


Re: [R] RCMD Rdconv debugging output

2009-10-14 Thread Duncan Murdoch

On 10/14/2009 8:42 AM, Erich Neuwirth wrote:

Thanks Duncan, this solved my problem.
Here is another thingy I noticed

\title{RExcel - Using \R from within Excel}
produces
RExcel - Using list() from within Excel
So the \R macro cannot be used in titles.
Is this intentional?


Yes, and it is documented that way.  There was some talk about removing 
that restriction, but I don't think it will make it into 2.10.0.


Duncan Murdoch





Duncan Murdoch wrote:

On 10/14/2009 7:45 AM, Erich Neuwirth wrote:

I am trying (on Windows XP, with R 2.10.0beta) to use

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







__
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.