A helper function that reads data from the internet to memory and deserializes the object with qdeserialize().
qread_url(url, buffer_size, ...)The URL where the object is stored
The buffer size used to read in data (default 16777216L i.e. 16 MB)
Arguments passed to qdeserialize()
The de-serialized object.
See qdeserialize() for additional details.
if (FALSE) { # \dontrun{
x <- qread_url("http://example_url.com/my_file.qs")
} # }