50% off: Unlimited data and AI learning.
The State of Data & AI Literacy 2025

opalr (version 2.0.0)

opal.resource_get: Get the resource object of a project

Description

Get the resource object of a project

Usage

opal.resource_get(opal, project, resource)

Arguments

opal

Opal object.

project

Name of the project.

resource

Name of the resource in the project.

See Also

Other project functions: opal.project_create(), opal.project_delete(), opal.project_exists(), opal.projects(), opal.project(), opal.resource_create(), opal.resource_exists(), opal.resources(), opal.resource()

Examples

Run this code
# NOT RUN {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
res <- opal.resource_get(o, 'RSRC', 'CNSIM1')
# then interpret locally the resource object (load the appropriate R packages)
library(resourcer)
# coerce to a data.frame
as.data.frame(res)
# or get the resource client object for low-level interactions
rescli <- resourcer::newResourceClient(res)
opal.logout(o)
# }

Run the code above in your browser using DataLab