Nothing
CalendarTimeCondition <- R6::R6Class(
'CalendarTimeCondition',
inherit = Condition,
public = list(
time = NULL,
arms = NULL,
initialize = function(time, arms = NULL){
stopifnot(is.numeric(time))
stopifnot(length(time) == 1)
stopifnot(time > 0)
stopifnot(is.null(arms) || is.character(arms))
self$time <- time
self$arms <- arms
},
get_trigger_time = function(trial){
milestone_time <- trial$get_data_lock_time_by_calendar_time(
calendar_time = self$time,
arms = self$arms)
milestone_time
},
print = function(){
cat('Calendar time >= ',
self$time, '\n')
invisible(self)
}
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.