rowncolMatrix-method {corrsieve} | R Documentation |
RowncolMatrix constructor
Description
Constructor for rowncolMatrix
objects
Usage
rowncolMatrix(K, filtermatrix)
Arguments
K |
A numeric corresponding to the @K slot listing the K value of the runs correlated |
filtermatrix |
A table corresponding to the @filtermatrix slot listing filtered Q matrix correlations |
Value
Returns a S4 object of class rowncolMatrix listing raw Q matrix correlation results
Author(s)
Michael G. Campana <mcampana63@gmail.com>
See Also
Examples
## Make a table of correlation determinations
filtmat <- table(matrix(c("Y","Y","Y",NA,"Y","Y",NA,NA,"Y"),ncol = 3, byrow = TRUE))
## Make a rowncolMatrix
test <- rowncolMatrix(K = 3, filtermatrix = filtmat)
[Package corrsieve version 1.6-9 Index]