qread_url {qs} | R Documentation |
A helper function that reads data from the internet to memory and deserializes the object with qdeserialize()
.
qread_url(url, buffer_size, ...)
url |
The URL where the object is stored |
buffer_size |
The buffer size used to read in data (default |
... |
Arguments passed to |
See qdeserialize()
for additional details.
The de-serialized object.
## Not run:
x <- qread_url("http://example_url.com/my_file.qs")
## End(Not run)