Re: [R] loading R object files on an RWeb server

2011-04-04 Thread Dieter Menne

jose romero-3 wrote:
 
 For one thing, i am using google docs to host the R object file and google
 docs has secure https URL's, which apparently cannot be handled by R's
 url(). So my questions are these:
 
 

Try ?getURL in the RCurl package

Dieter



--
View this message in context: 
http://r.789695.n4.nabble.com/loading-R-object-files-on-an-RWeb-server-tp3424613p3424761.html
Sent from the R help mailing list archive at Nabble.com.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] loading R object files on an RWeb server

2011-04-03 Thread jose romero
Hello list:

I have some R code/data sets that i'd like to make available to others through 
RWeb server use.  The code/data were saved via save.image and should be made 
available by the following command sequence:

con - url(https:// )
load(con)
close(con)

However, this is where the problem starts...

For one thing, i am using google docs to host the R object file and google docs 
has secure https URL's, which apparently cannot be handled by R's url(). So my 
questions are these:

1) where can i host the R object file (for free) with a permanent hot-link and 
without https, that could be read in by the load() command?
2) is there a correct procedure for all this that can be used when working with 
Rweb? Packages are not the way to go as it seems one cannot install a package 
on an RWeb server!

Thanks in advance,

jose romero


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.