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

2011-04-03 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: htt

[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 pro