Get All Available Datasets and Their Description

db_dataset_list(con, schema = "timeseries")

Arguments

con

RPostgres connection object.

schema

character name of the database schema. Defaults to 'timeseries'

Value

data.frame with columns `set_id` and `set_description`

Examples


if (FALSE) {

db_dataset_create(
  con = connection,
  set_name = "zrh_airport_data",
  set_description = "Zurich airport arrivals and departures ",
  schema = "schema"
)

db_dataset_list(
  con = connection,
  schema = "schema"
)
}