Can anyone point me to R help files in plain text or
man page format, greppable ?
By "help file" I mean either
- the file of 1-line command summaries that
??
looks in - a tree of man pages, for
man
,man -k
etc.
For example ??recycle
is funny, but not useful;
I'd much prefer grep -iw recycle
or man -k recycle
.
Sorry if this question is a duplicate -- it must be, but I haven't found it yet.
($R_HOME/doc/manual/*.html
and *.pdf
must have been generated, from what text ?)
(Why grep ? Because it's fast, simple, and familiar -- for me, who grew up when flipping between keyboard and mouse wasn't a problem: there was no mouse.)
Added: the .../*/man/*.Rd files in the src tar (thanks nicola) are latex.
how-do-i-convert-latex-to-plain-text-ascii lists several possibilities;
unfortunately,
pandoc -f latex
quits early on these Rd files.