View source: R/f_isUniqueTrial.R
f.isUniqueTrial | R Documentation |
Trial concept calculated: Applies function dbFindIdsUniqueTrials() with its defaults.
f.isUniqueTrial(df = NULL)
df |
data frame such as from dbGetFieldsIntoDf. If 'NULL', prints fields needed in 'df' for calculating this trial concept, which can be used with dbGetFieldsIntoDf. |
data frame with columns '_id' and '.isUniqueTrial', a logical.
# fields needed
f.isUniqueTrial()
## Not run:
# apply trial concept when creating data frame
dbc <- nodbi::src_sqlite(
dbname = system.file("extdata", "demo.sqlite", package = "ctrdata"),
collection = "my_trials", flags = RSQLite::SQLITE_RO)
trialsDf <- dbGetFieldsIntoDf(
calculate = "f.isUniqueTrial",
con = dbc)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.