Displaying 1 result from an estimated 1 matches for "360240".
Did you mean:
30240
2010 Dec 29
2
Referring to an object name from within a function
Can anyone show me how to refer to an object name that is passed to a
function, from within the function?
For example:
MyModel <- 1
test <- function(x) {
if(x == 1) {cat("x is a valid object.\n")}
}
test(x)
What I would like this to do is pass MyModel to function test, and if it
passes a test, be able to print "MyModel is a valid object."
Thanks.
--
View this