domain: S4 Class: domain

Description Usage Arguments Functions Slots Examples

Description

S4 Class: domain

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
Domain(df, columns)

## S4 method for signature 'data.frame,missing'
Domain(df, columns = NULL)

## S4 method for signature 'data.frame,data.frame'
Domain(df, columns)

DM(df, columns)

## S4 method for signature 'data.frame,missing'
DM(df, columns = NULL)

## S4 method for signature 'data.frame,data.frame'
DM(df, columns)

Arguments

df

(data.frame).

columns

(data.frame).

Functions

Slots

df

(data.frame)
the data.

columns

(data.frame)
metadata, information about columns.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
Domain(df = dm)


columns <- data.frame(
  row.names = c("STUDYID", "AGE"),
  label = c("Study Identifier", "Age")
)
Domain(df = dm, columns = columns)

DM(df = dm)


columns <- data.frame(
  row.names = c("STUDYID", "AGE"),
  label = c("Study Identifier", "Age")
)
DM(df = dm, columns = columns)

FCACollin/ClinAD documentation built on Feb. 1, 2021, 12:22 a.m.