Skip to content

barplot manpage (PR#7331)

2 messages · Liaw, Andy, Dan Bolser

#
Starting with R-2.0.0, the Windows binary installer has an option for
installing the Rd files for at least R itself (not sure about recommended
packages), I believe exactly for the purpose that users can submit suggested
patches.
The `Writing R Extensions' manual has a section on how to write the Rd file.
I'm not sure how one would write a document that describes how to change a
Rd file...
When I find typos in the documentation, I just post them to R-devel.  R Core
has been very responsive to such posts.

Best,
Andy
#
Here is a change I made to the matrix.Rd file...

<     \code{list} of length 2 giving the row and column names
respectivly.}
---
65,75d64
<
< # Example of setting row and column names
< data <- matrix(c(16522,34057,40949,
<                  19924,46032,55185),
<                nrow=2, ncol=3,
<                byrow=TRUE,
<                dimnames = list(
<                  c('PDB','MSD'),
<                  c('Entry','Chain','Domain')
<                  )
<                )


I also tried to create some instructions here...

http://fawn.unibw-hamburg.de/cgi-bin/Rwiki.pl?HowTo

(which you must feel free to edit (you can delete it entirly if you
like!)).

All the best,
Dan.
On Tue, 2 Nov 2004, Liaw, Andy wrote: