plot-matrix {latte} | R Documentation |
Plot a matrix
Description
plot_matrix is a R variant of Matlab's spy
function.
Usage
plot_matrix(A)
Arguments
A |
A matrix |
Value
a ggplot object
Author(s)
David Kahle david@kahle.io
Examples
# the no-three-way interaction configuration
(A <- kprod(ones(1,3), diag(3), ones(3)))
plot_matrix(A)
if (has_4ti2()) {
plot_matrix(markov(A))
(A <- genmodel(c(2L, 2L), list(1L, 2L)))
plot_matrix(A)
plot_matrix(markov(A))
(A <- genmodel(c(5L, 5L), list(1L, 2L)))
plot_matrix(A)
plot_matrix(markov(A))
}
[Package latte version 0.2.1 Index]