Displaying 1 result from an estimated 1 matches for "arrayassign".
Did you mean:
arrayalign
2006 Jun 20
2
multi-dimension array of raw
I would like to store and manipulate large sets of marker genotypes
compactly using "raw" data arrays. This works fine for vectors or
matrices, but I run into the error shown in the example below as soon
as I try to use 3 dimensional arrays (eg. animal x marker x allele).
> a <- array(as.raw(1:6),c(2,3))
> a
[,1] [,2] [,3]
[1,] 01 03 05
[2,] 02 04 06
>