Displaying 1 result from an estimated 1 matches for "anosimenv".
2004 Jul 19
1
Dendrogram plotting options?
...xis
on the bottom. Example code follows:
library(vegan) #loads the "vegan" module that compuptes ANOSIM
library(cluster)
community <- read.csv("ANOSIMmites.csv", header=TRUE) #reads the data
file into memory under the name "community"
enviro <- read.csv("ANOSIMenv.csv", header=TRUE) #reads the grouping
variables into memory
attach(enviro)
attach(community)
community.dist <- vegdist(community)
community.ano <- anosim(community.dist, plant)
summary(community.ano)
clust <- hclust(community.dist, method = "complete", members=NULL)
plot(c...