Skip to content
Prev 294869 / 398503 Next

how to download source code, pdf manual for any package from internet?

sagarnikam123 <sagarnikam123 <at> gmail.com> writes:
http://r.789695.n4.nabble.com/how-to-download-source-code-pdf-manual-for-any-package-from-internet-tp4630354.html
grep("^[Aa]",rownames(r),value=TRUE)

gets you the names of the 143 packages starting with A or a.

If you google ACCLMA you will find

http://cran.r-project.org/web/packages/ACCLMA/

with further links

http://cran.r-project.org/src/contrib/ACCLMA_1.0.tar.gz
http://cran.r-project.org/web/packages/ACCLMA/ACCLMA.pdf

You can use paste() and download.file() in a loop to get all of the
packages.

ACCLMA happens not to have any vignettes.  It's a little hard for me
to see how you can figure out the URLs of package-associated vignettes,
without web-scraping (which shouldn't actually be too hard, but I won't
illustrate here how to do it)

  You probably want to use the URL of your local mirror rather than
the main CRAN site when doing this.

  Ben Bolker