appendSqlCyclopsData
appends data to an OHDSI data object.
appendSqlCyclopsData(
object,
oStratumId,
oRowId,
oY,
oTime,
cRowId,
cCovariateId,
cCovariateValue
)
OHDSI Cyclops data object to append entries
Integer vector (optional): non-unique stratum identifier for each row in outcomes table
Integer vector: unique row identifier for each row in outcomes table
Numeric vector: model outcome variable for each row in outcomes table
Numeric vector (optional): exposure interval or censoring time for each row in outcomes table
Integer vector: non-unique row identifier for each row in covariates table that matches a single outcomes table entry
Integer vector: covariate identifier
Numeric vector: covariate value
Append data using two tables. The outcomes table is dense and contains ... The covariates table is sparse and contains ... All entries in the outcome table must be sorted in increasing order by (oStratumId, oRowId). All entries in the covariate table must be sorted in increasing order by (cRowId). Each cRowId value must match exactly one oRowId value.