What happened? TIA.
In version 2.7.x:
> (x <- array(1:4, c(2,2)))
[,1] [,2]
[1,] 1 3
[2,] 2 4
> as.array(x)
[,1] [,2]
[1,] 1 3
[2,] 2 4
In version 2.8.0:
> (x <- array(1:4, c(2,2)))
[,1] [,2]
[1,] 1 3
[2,] 2 4
> as.array(x)
Error: evaluation nested too deeply: infinite recursion /
options(expressions=)?
-----
The power of accurate observation is commonly called cynicism
by those who have not got it. George Bernard Shaw
--
View this message in context:
http://www.nabble.com/array-in-version-2.8.0-tp20295881p20295881.html
Sent from the R help mailing list archive at Nabble.com.
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.