Skip to contents

Get a Single Study by ID

Usage

brapi_study(con, studyDbId)

Arguments

con

A brapi_connection() object.

studyDbId

Character. The unique study identifier.

Value

A single-row tibble with study metadata.

Examples

# \donttest{
con <- brapi_connection("https://test-server.brapi.org")
brapi_study(con, "study1")
#> # A tibble: 1 × 8
#>   dataFormat    description     fileFormat name  provenance scientificType url  
#>   <chr>         <chr>           <chr>      <chr> <chr>      <chr>          <chr>
#> 1 Image Archive Raw drone imag… applicati… imag… Image Pro… Environmental  http…
#> # ℹ 1 more variable: version <chr>
# }