看來你可以從已安裝的R中提取Rd來源。我正在使用R-devel(2011-09-05 r56942)。
獲取基礎包的Rd數據庫。
library(tools)
db <- Rd_db("base")
在路DB的名稱搜索 「grep.Rd」,例如:
grep("grep.Rd", names(db), value = TRUE)
[1] "d:/murdoch/recent/R64/src/library/base/man/agrep.Rd"
[2] "d:/murdoch/recent/R64/src/library/base/man/grep.Rd"
得到公正的grep爲五路對象。
db[grep("/grep.Rd", names(db))]
$`d:/murdoch/recent/R64/src/library/base/man/grep.Rd`
\title{Pattern Matching and Replacement}
\name{grep}
\alias{grep}
\alias{grepl}
\alias{sub}
\alias{gsub}
\alias{regexpr}
\alias{gregexpr}
\alias{regexec}
\keyword{character}
\keyword{utilities}
\description{
\code{grep}, \code{grepl}, \code{regexpr} and \code{gregexpr} search
for matches to argument \code{pattern} within each element of a
character vector: they differ in the format of and amount of detail in
the results.
\code{sub} and \code{gsub} perform replacement of the first and all
matches respectively.
}\usage{
...
...
有用於獲取從路對象的組件的工具,這樣你就可以優化搜索關鍵字或名稱,請參閱?Rd_db例子和嘗試。
lapply(db, tools:::.Rd_get_metadata, "name")
有專門致力於統計和分析http://stats.stackexchange.com – robermorales
堆棧網站,我從來沒有看到這種情況,但如果有一種方法來提取RDA Rd文件這將是很好文件。如果你想擁有.Rd文件,你可以隨時下載一個包(或者在基本包,R源的情況下)。 –
@robermorales是的,我知道這一點,謝謝。但是這是一個編程問題,而不是一個統計分析問題,所以CrossValidated上的話題將會成爲焦點話題。 – Andrie