Displaying 1 result from an estimated 1 matches for "writeindexdata".
2009 Apr 30
0
Rpad installation help wanted (from NEWBIE)
...hods")
for (i in firstpg)
res <- rbind(res,package.contents(i))
for (lib in lib.loc) {
pg <- .packages(all.available=TRUE, lib.loc=lib)
pg <- pg[!(pg %in% firstpg)]
for (i in pg)
try(res <- rbind(res,package.contents(i)))
}
res
}
writeIndexData <- function(res) { # then must edit after
t <- file("helpIndex.txt","w")
cat(file=t,"var Entry =\n")
dput(res[,"Entry"],file=t)
cat(file=t,"var Keywords =\n")
dput(res[,"Keywords"],file=t)
cat(file=t,"var...