Why does as.numeric convert matrices and arrays to vectors?

as.numeric(matrix(c("1", "2", "3", "4"), 2, 2))
[1] 1 2 3 4

I could only figure out ugly ways to bypass this, like:

x <- matrix(c("1", "2", "3", "4"), 2, 2)
array(as.numeric(x), dim = dim(x), dimnames = dimnames(x))

Alberto Monteiro

______________________________________________
R-help@r-project.org 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.

Reply via email to