Are there more ways to call a function by name like I do below via do.call?
setClass(Class = "MyClass",
representation = representation(name = "character",
type = "character"
)
)
MyClass <- function(...) new("MyClass",...)
cC<-"MyClass"
do.call(cC,list())
Another way: