Skip to content
Prev 244010 / 398506 Next

Loading .RData from Internet

You can create a connection to the URL and load() the connection.
Like this:
con <- 
url('http://rss.acs.unt.edu/Rdoc/library/twang/data/raceprofiling.RData')
load(file=con)
close(con)
str(raceprofiling)

But the easiest way is to save the file and then load it.

Ivan

Le 12/6/2010 10:44, Rainer M Krug a ?crit :