Displaying 1 result from an estimated 1 matches for "soil_high_flood".
2010 Sep 16
0
problems trying to reproduce structural equation model using the sem package
...#
library(sem)
grace <- matrix(ncol = 10, nrow = 10)
variables <- c("lightlog", "light", "dstb", "species_count", "masslog",
? ? ? ? ? ? ? "soil_carbon", "soil_organic", "soil_low_flooding",
? ? ? ? ? ? ? "soil_high_flooding", "soil_salinity")
rownames(grace) <- colnames(grace) <- variables
diag(grace) <- 1
## Coefficients from the paper.
grace.coefficients <- c(0.858, 0.667, -0.251, -0.699, 0.06, 0.012, 0.552, 0.547,
? ? ? ? ? ? ? ? ? ? ? ?0.327, 0.776, -0.404, -0.794, 0.157, 0.120,
0...