organization_list {ckanr} | R Documentation |
List organization
Description
List organization
Usage
organization_list(
order_by = c("name", "package"),
decreasing = FALSE,
organizations = NULL,
all_fields = TRUE,
limit = 31,
url = get_default_url(),
key = get_default_key(),
as = "list",
...
)
Arguments
order_by |
(character, only the first element is used).
The field to sort the list by, must be |
decreasing |
(logical). Is the sort-order is decreasing or not. |
organizations |
(character or |
all_fields |
(logical). Return the name or all fields of the object. |
limit |
(numeric) The maximum number of organizations to return (optional, default: 31) |
url |
Base url to use. Default: https://data.ontario.ca/ See
also |
key |
A privileged CKAN API key, Default: your key set with
|
as |
(character) One of list (default), table, or json. Parsing with
table option uses |
... |
Curl args passed on to |
Examples
## Not run:
ckanr_setup(url = "https://demo.ckan.org/")
# list organizations
res <- organization_list()
res[1:2]
# Different data formats
organization_list(as = 'json')
organization_list(as = 'table')
## End(Not run)