Displaying 2 results from an estimated 2 matches for "rdownloads".
Did you mean:
downloads
2006 Jul 16
1
install.packages for local zip files
...s or binary
package/bundle archive files (as created by 'R CMD build
--binary'). ......
lib: character vector giving the library directories where to install
the packages. Recycled as needed.
So I have issued a command like this:
> install.packages(pkgs="~/Rdownloads/hgug4112a_1.12.0.tar.gz", lib =
"~/Rlib", repos=NULL, contriburl=NULL)
Warning in download.packages(pkgs, destdir = tmpd, available =
available, :
no package '~/Rdownloads/hgug4112a_1.12.0.tar.gz' at the
repositories
As far as I can tell, I've given it the...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
The patch below adds support for custom HTTP headers in
download.file() and url().
My main motivation for this is performing basic http authentication.
Some web sites do not support embedding the credentials into the URI
itself, they only work if the username and password are sent in the
HTTP headers. In fact specifying the username and password in the URI
has been