Learn R Programming

opalr (version 2.0.0)

opal.project_create: Create a project

Description

Create a project

Usage

opal.project_create(
  opal,
  project,
  database = NULL,
  title = NULL,
  description = NULL,
  tags = NULL,
  exportFolder = NULL
)

Arguments

opal

Opal object.

project

Name of the project

database

The database name (as declared in Opal) to be used to store project's data. If not provided, the project can have views and resources but no raw tables.

title

The title of the project (optional).

description

The description of the project (optional).

tags

A list of tag names (optional).

exportFolder

The default location of the exported data files in the Opal file system (optional).

See Also

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

Examples

Run this code
# NOT RUN {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
opal.project_create(o, 'test', database='opal_data', title='This is a test', tags=list('Test'))
opal.logout(o)
# }

Run the code above in your browser using DataLab