Displaying 2 results from an estimated 2 matches for "rhelp00".
Did you mean:
rhelp02
2004 Dec 23
1
searching Jonathan Baron's R Site
...affecting existing links).
This function runs from within R and opens a web page with the
results of the search. For example,
RSiteSearch("multiple imputation")
Jon
--
RSiteSearch <- function(string,
restrict=c("Rhelp02a","Rhelp01","Rhelp00","functions","docs"),
format="normal", sortby="score", matchesPerPage=10) {
string <- paste("http://finzi.psych.upenn.edu/cgi-bin/namazu.cgi?query=",
gsub(" ", "+", string),...
2004 Nov 24
2
an R function to search on Prof. Baron's site
...quot;, "revtime"),
sep="")
res <- charmatch(restrict, c("Rhelp", "doc", "function", "doc/fun"))
if (res == 0) stop("wrong restriction specified")
res <- switch(res, "Rhelp00/archive|Rhelp01/archive|Rhelp02a/archive",
"finzi.psych.upenn.edu/R/doc",
"finzi.psych.upenn.edu/R/library",
"finzi.psych.upenn.edu/R/doc|finzi.psych.upenn.edu/R/library")
res <- paste("restrict=", res, sep=&q...