User$list_datasets
User$list_datasets(max_results=None) → list<Dataset>
Returns a list of dataset instances associated with the user. If the user is not yourself, only datasets that you have overview access to will be included in the list.
Parameters:
max_results
: int, default NULL
If specified, will only return up to max_results datasets
Returns:
list<Dataset>
Examples
user <- redivis$user("imathews")
datasets <- user$list_datasets()
for (dataset in datasets){
print(dataset$properties$"name")
}
Last updated
Was this helpful?