print.wrda {douconca} | R Documentation |
Print a summary of a wrda object
Description
Print a summary of a wrda object
Usage
## S3 method for class 'wrda'
print(x, ...)
Arguments
x |
a wrda object from |
... |
Other arguments passed to the function (currently ignored). |
Value
No return value, results are printed to console.
Examples
data("dune_trait_env")
# rownames are carried forward in results
rownames(dune_trait_env$comm) <- dune_trait_env$comm$Sites
response <- dune_trait_env$comm[, -1] # must delete "Sites"
w <- rep(1, 20)
w[1:10] <- 8
w[17:20] <- 0.5
object <- wrda(formula = ~ A1 + Moist + Mag + Use + Condition(Manure),
response = response,
data = dune_trait_env$envir,
weights = w)
object # Proportions equal to those Canoco 5.15
mod_scores <- scores(object, display = "all")
scores(object, which_cor = c("A1", "X_lot"), display = "cor")
anova(object)
[Package douconca version 1.2.0 Index]