[Rd] as.vector() broken on a matrix or array of type "list"
Hervé Pagès
hp@ge@ @ending from fredhutch@org
Wed Sep 26 08:27:19 CEST 2018
Hi,
Unlike on an atomic matrix, as.vector() doesn't drop the "dim"
attribute of matrix or array of type "list":
m <- matrix(list(), nrow=2, ncol=3)
m
# [,1] [,2] [,3]
# [1,] NULL NULL NULL
# [2,] NULL NULL NULL
as.vector(m)
# [,1] [,2] [,3]
# [1,] NULL NULL NULL
# [2,] NULL NULL NULL
is.vector(as.vector(m))
# [1] FALSE
Thanks,
H.
--
Hervé Pagès
Program in Computational Biology
Division of Public Health Sciences
Fred Hutchinson Cancer Research Center
1100 Fairview Ave. N, M1-B514
P.O. Box 19024
Seattle, WA 98109-1024
E-mail: hpages using fredhutch.org
Phone: (206) 667-5791
Fax: (206) 667-1319
More information about the R-devel
mailing list