gt_load_eruptions {geysertimes} | R Documentation |
Load the Geyser Times Data
Description
Loads the Geyser Times data that was previously downloaded by a call
to gt_get_data
.
Usage
gt_load_eruptions(path = gt_path(), quiet = FALSE, version = NULL)
gt_load_geysers(path = gt_path(), quiet = FALSE, version = NULL)
Arguments
path |
a character string, the local location where the Geyser Times data
has been written.
The default is the local permanent location given by |
quiet |
a logical value, if |
version |
a character string giving the version of the Geyser Times data to load.
Calling |
Details
Typically, a user would download the data once, with a call to 'gt_get_data(destdir=gt_path())'. Subsequent R sessions can the load this downloaded data with a call to 'gt_load_eruptions()'.
Value
a tibble containing the Geyser Times data with names: (need to decide on appropriate names)
Author(s)
Stephen Kaluzny <spkaluzny@gmail.com>
See Also
gt_get_data
Examples
## Not run:
tmppath <- gt_get_data()
erupt <- gt_load_eruptions()
## End(Not run)