Dataset$list_tables
Dataset$list_tables(max_results=NULL) → list<Table>
Returns a list of tables within the dataset.
Parameters:
max_results
: int, default NULL
If specified, will only return up to max_results tables
Returns:
list<Table>
Examples:
dataset <- redivis$organization("Demo")$dataset("ghcn_daily_weather_data")
tables <- dataset$list_tables()
for (table in tables){
print(table$properties) # Properties will be populated with the table.list resource definition
}
Last updated
Was this helpful?