Displaying 1 result from an estimated 1 matches for "createvariable".
2010 Oct 06
5
Create variable by name
Can one create a variable through a function by name
createVariable <- function(name) {
outputVariable = name
name <- NULL
}
after calling
createVariable("myVar")
I would like to have a variable myVar initialized with NULL in my
environment. Is this possible?
Ralf