Neurovault Collections Images

nv_collection_images(id, verbose = TRUE, secure = TRUE, ...)

Arguments

id

id of the collection

verbose

print diagnostic messages

secure

passed to nv_base_url for https

...

additional options to pass to GET

Value

List of the result of the GET call and the content

Note

See https://neurovault.org/api-docs

Examples

res = nv_collection_images(id = 77)
#> GET command is:
#> Response [https://neurovault.org/api/collections/77/images/] #> Date: 2020-03-18 16:22 #> Status: 200 #> Content-Type: application/json; charset=utf-8 #> Size: 6.95 kB #>
df = results_to_df(res$content$results) if (FALSE) { id = nv_collection_id(name = "FeatureX IAPS Test") imgs = nv_collection_images(id = id) }