matrix2 {popbio} | R Documentation |
Create a square matrix from a given set of values
matrix2(x, stages, byrow = TRUE)
x |
a vector of matrix elements |
stages |
a vector of row names (also assigned to columns) |
byrow |
fill matrix by rows , default TRUE |
a square matri
Chris Stubben
# Centaurea corymbosa from Freville 2004
ceco <- c(0,0,5.905,0.368,0.639, 0.025, 0.001, 0.152, 0.051)
stages <- c("seedling", "vegetative", "flowering")
# shortcut for
matrix(ceco, nrow=3, byrow=TRUE, dimnames=list(stages,stages))
matrix2(ceco, stages)