Read all Time Series in a Dataset
db_dataset_read_ts(
con,
datasets,
valid_on = NULL,
respect_release_date = FALSE,
schema = "timeseries",
chunksize = 10000
)
RPostgres connection object.
character vector of the datasets. Dataset is a group of time series.
character representation of a date in the form of 'YYYY-MM-DD'. valid_on selects the version of a time series that is valid at the specified time.
boolean indicating if it should the release embargo of a time series be respected. Defaults to FALSE. This option makes sense when the function is used in an API. In that sense, users do not have direct access to this function and therefore cannot simply switch parameters.
character name of the database schema. Defaults to 'timeseries'
set a limit of the number of time series requested in the function.
Other time series functions:
db_collection_read_ts()
,
db_ts_delete_latest_version()
,
db_ts_delete()
,
db_ts_get_last_update()
,
db_ts_read_history()
,
db_ts_read()
,
db_ts_store()
,
db_ts_trim_history()
if (FALSE) {
db_dataset_create(con = connection,
set_name = "zrh_airport_data",
set_description = "Zurich airport arrivals and departures ",
schema = "schema")
db_ts_assign_dataset(con = connection,
ts_keys = c("ch.zrh_airport.departure.total",
"ch.zrh_airport.arrival.total"),
set_name = "zrh_airport_data",
schema = "schema")
db_dataset_read_ts(con = connection,
datasets = "zrh_airport_data",
schema = "schema")
}