Estimate the (very rough) time to run SEQuential analysis on current machine
SEQestimate(
data,
id.col,
time.col,
eligible.col,
treatment.col,
outcome.col,
time_varying.cols = list(),
fixed.cols = list(),
method,
options,
verbose = TRUE
)A list of (very rough) estimates for the time required for SEQuential containing:
modelTime estimated time used when running models
expansionTime estimated time used when expanding data
totalTime sum of model and expansion time
data.frame or data.table, if not already expanded with SEQexpand(), will preform expansion according to arguments passed to either params or ...
String: column name of the id column
String: column name of the time column
String: column name of the eligibility column
String: column name of the treatment column
String: column name of the outcome column
List: column names for time varying columns
List: column names for fixed columns
String: method of analysis to preform
List: optional list of parameters from SEQopts()
Logical: if TRUE, cats progress to console, default is TRUE