Displaying 1 result from an estimated 1 matches for "mex3".
Did you mean:
ex3
1997 Sep 15
0
R-alpha: is.vector(.., mode=..) bug (old)
...MPLE to the man page of 'mode'
src/library/base/man/mode :
cex3 <- c("1","1:1","1i","list(1)","args","lm","formals(lm)[[2]]","y~x")
lex3 <- sapply(cex3, function(x) eval(parse(text=x)))
mex3 <- t(sapply(lex3, function(x) c(typeof(x), storage.mode(x), mode(x))))
dimnames(mex3) <- list(cex3, c("typeof(.)","mode(.)","storage.mode(.)"))
mex3
]]
## Here is my test code revealing the is.vector(..) problems :
### Ex. 1 --- call ---
cl <-...