Skip to content

CST_Start use startR functions without the explicit namespace

The following piece of code can be used inside CST_Start to solve the namespace problem:

inputs <- as.list(substitute(list(...)))[-1]
for (i in 1:length(inputs)) {
  inputs[[i]] <- eval(inputs[[i]])
}
res <- do.call(Start, inputs)