latte (version 0.2.1)

plot-matrix: 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

Examples

Run this code
# NOT RUN {
# 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))

}

# }

Run the code above in your browser using DataLab