Nothing
EqRS <-
function(comm, dis = NULL, structures = NULL,
option=c("eq", "normed1", "normed2"), formula = c("QE", "EDI"), tol = 1e-8){
df <- comm
if(!option[1]%in%c("eq", "normed1", "normed2")) stop("unavailable option, please modify; option can be eq, normed1, or normed2")
if(!(is.data.frame(df) | is.matrix(df))) stop("df must be a matrix or a data frame")
if(!(is.data.frame(df))) df <- as.data.frame(df)
if(is.null(colnames(df)) | is.null(rownames(df))) stop("df must have both row names and column names")
if(length(colnames(df)[colSums(df)>0])==1) stop("df must contain at least two species with positive occurrence in at least one site")
if (is.null(dis)){
dis <- as.dist((matrix(1, ncol(df), ncol(df)) - diag(rep(1, ncol(df)))))
attributes(dis)$Labels <- colnames(df)
formula <- "QE"
}
if(!inherits(dis, "dist")) stop("dis must be of class dist")
if(!formula[1]%in%c("QE","EDI")) stop("formula can be either QE or EDI")
if(any(!colnames(df)%in%attributes(dis)$Labels)) stop("column names in df are missing in dis")
else{
d <- as.matrix(dis)[colnames(df), colnames(df)]
if(formula[1]=="EDI"){
op <- options()$warn
options(warn=-1)
if(!is.euclid(as.dist(d))) stop("dis should be Euclidean")
options(warn=op)
d <- d^2/2 # Euclidean Diversity Index
}
else{
op <- options()$warn
options(warn=-1)
if(!is.euclid(sqrt(as.dist(d)))) stop("dis should be squared Euclidean")
options(warn=op)
}
if(any(d>1)) d <- d/max(d)
}
nsp <- ncol(df)
if(any(rowSums(df)<tol)) warnings("empty sites have been removed")
if(sum(df)<tol) stop("df must contain nonnegative values and the sum of its values must be positive")
dfold <- df
df <- df[rowSums(df)>tol, ]
ncomm <- nrow(df)
if(nrow(df)==1) stop("df must contain at least two non-empty sites")
if(!is.null(structures)){
if(!inherits(structures, "data.frame")) stop("structures should be a data frame or NULL")
if(!nrow(structures)==nrow(dfold)) stop("incorrect number of rows in structures")
structures <- structures[rowSums(dfold)>0, , drop=FALSE]
if(!is.null(rownames(structures)) & !is.null(rownames(df))){
e <- sum(abs(match(rownames(df), rownames(structures))-(1:ncomm)))
if(e>1e-8) warning("be careful that rownames in comm should be in the same order as rownames in structures")
}
checknested <- function(forstru){
n <- ncol(forstru)
for (i in 1:(n - 1)) {
tf <- table(forstru[, c(i, i + 1)])
niv <- apply(tf, 1, function(x) sum(x != 0))
if (any(niv != 1)) {
stop(paste("non hierarchical design for structures, column", i, "is not nested in column", i + 1))
}
}
}
if(ncol(structures)> 1) checknested(structures)
}
P <- as.data.frame(sweep(df, 1, rowSums(df), "/"))
if(is.null(structures)) w <- rep(1/nrow(df), nrow(df))
else{
nc <- ncol(structures)
fun <- function(i){
x <- table(structures[, i], structures[, i-1])
x[x>0] <- 1
x <- rowSums(x)
v <- x[structures[, i]]
v <- 1/v
return(v)
}
if(ncol(structures)==1){
firstw <- table(structures[, 1])
w <- 1/firstw[structures[, 1]]/length(unique(structures[, 1]))
}
else {
listw <- lapply(2:nc, fun)
firstw <- table(structures[, 1])
firstw <- 1/firstw[structures[, 1]]
finalw <- 1/length(unique(structures[, ncol(structures)]))
forw <- cbind.data.frame(as.vector(firstw), as.vector(listw), as.vector(rep(finalw, nrow(structures))))
w <- apply(forw, 1, prod)
}
}
df <- P * w
if(!is.null(structures)){
if(length(levels(factor(structures[, 1])))==1) stop("All sites belong to a unique level in the first column of structures, remove this first column in structures")
if(length(levels(factor(structures[, 1])))==nrow(df)) stop("Each site belongs to a distinct level in the first column of structures, this first column is useless, remove it and re-run")
for(i in 1:ncol(structures)) structures[,i] <-factor(structures[,i])
}
op <- options()$warn
options(warn=-1)
a <- apqe(as.data.frame(t(df)), sqrt(2*as.dist(d)), structures)
options(warn=op)
nlev <- nrow(a$results)
gamma <- a$results[nlev, 1]
gamma <- 1/(1-gamma)
alpha <- a$results[nlev-1, 1]
alpha <- 1/(1-alpha)
beta1 <- (1-sum(a$results[-c(1, nlev), 1]))/(1-a$results[nlev, 1])
if(nlev==3){
if(option[1]=="eq"){
res <- cbind.data.frame(c(beta1, alpha, gamma))
rownames(res) <- c("Inter-sites", "Intra-sites", "Gamma")
colnames(res) <- "Equivalent numbers"
}
else if(option[1]=="normed2"){
beta1 <- (beta1-1)/(ncomm-1)
res <- cbind.data.frame(c(beta1))
rownames(res) <- c("Inter-sites")
colnames(res) <- "Normed beta diversity"
}
else if(option[1]=="normed1"){
beta1 <- (1 - 1/beta1)/(1 - 1 / ncomm)
res <- cbind.data.frame(c(beta1))
rownames(res) <- c("Inter-sites")
colnames(res) <- "Normed beta diversity"
}
return(res)
}
else{
v1 <- sapply(3:(nlev-1), function(i) sum(a$results[i:(nlev-1), 1]))
v2 <- sapply(2:(nlev-2), function(i) sum(a$results[i:(nlev-1), 1]))
resbeta <- (1-v1)/(1-v2)
if(option[1]=="eq"){
nc <- ncol(structures)
res <- cbind.data.frame(c(beta1, resbeta, alpha, gamma))
inter <- c("Inter-sites", paste("Inter-", colnames(structures), sep=""))
intra <- c("Intra-sites", paste("Intra-", colnames(structures), sep=""))
intrainter <- paste(inter[-(nc+1)], intra[-1])
rownames(res) <- c(inter[nc+1], rev(intrainter), intra[1], "Gamma")
colnames(res) <- "Equivalent numbers"
}
else if(option[1]=="normed2"){
nc <- ncol(structures)
beta1N <- (beta1 - 1) / (length(unique(structures[, nc])) - 1)
fun <- function(i){
T <- as.factor(structures[, i])
poidsnum <- tapply(w, structures[, i], sum)
if(i==1) {
effectifs <- as.vector(table(T))
poidsden <- poidsnum / effectifs
}
else{
effectifs <- unlist(lapply(split(structures[, i-1], T), function(x) length(unique(x))))
poidsden <- poidsnum / effectifs
}
dfilist <- split(df, T)
if(i > 1){
strulist <- split(structures, T)
strulist <- lapply(strulist, function(x) x[, 1:(i-1), drop = FALSE])
}
fun0 <- function(j){
tab <- dfilist[[j]]
if(i > 1){
thestru <- strulist[[j]]
for(k in 1:ncol(thestru)) thestru[, k] <- factor(thestru[, k])
}
options(warn=-1)
if (i > 1)
ai <- apqe(as.data.frame(t(tab)), sqrt(2*as.dist(d)), thestru)
else
ai <- apqe(as.data.frame(t(tab)), sqrt(2*as.dist(d)))
options(warn=op)
nlevai <- nrow(ai$results)
alphai <- ai$results[nlevai, 1] - ai$results[1, 1]
return(alphai)
}
resi <- unlist(lapply(1:length(dfilist), fun0))
res <- sum((1-resi)*poidsnum)/sum((1-resi)*poidsden)
return(res)
}
M <- sapply(nc:1, fun)
resbetaN <- (resbeta - 1) / (M - 1)
res <- cbind.data.frame(c(beta1N, resbetaN))
inter <- c("Inter-sites", paste("Inter-", colnames(structures), sep=""))
intra <- c("Intra-sites", paste("Intra-", colnames(structures), sep=""))
intrainter <- paste(inter[-(nc+1)], intra[-1])
rownames(res) <- c(inter[nc+1], rev(intrainter))
colnames(res) <- "Normed contributions to beta diversity"
}
else if(option[1]=="normed1"){
nc <- ncol(structures)
beta1N <- (beta1 - 1) / (length(unique(structures[, nc])) - 1)
fun <- function(i){
T <- as.factor(structures[, i])
poidsnum <- tapply(w, structures[, i], sum)
if(i==1) {
effectifs <- as.vector(table(T))
poidsden <- poidsnum / effectifs
}
else{
effectifs <- unlist(lapply(split(structures[, i-1], T), function(x) length(unique(x))))
poidsden <- poidsnum / effectifs
}
dfilist <- split(df, T)
if(i > 1){
strulist <- split(structures, T)
strulist <- lapply(strulist, function(x) x[, 1:(i-1), drop = FALSE])
}
fun0 <- function(j){
tab <- dfilist[[j]]
if(i > 1){
thestru <- strulist[[j]]
for(k in 1:ncol(thestru)) thestru[, k] <- factor(thestru[, k])
}
options(warn=-1)
if (i > 1)
ai <- apqe(as.data.frame(t(tab)), sqrt(2*as.dist(d)), thestru)
else
ai <- apqe(as.data.frame(t(tab)), sqrt(2*as.dist(d)))
options(warn=op)
nlevai <- nrow(ai$results)
alphai <- ai$results[nlevai, 1] - ai$results[1, 1]
return(alphai)
}
resi <- unlist(lapply(1:length(dfilist), fun0))
res <- sum((1-resi)*poidsnum)/sum((1-resi)*poidsden)
return(res)
}
M <- sapply(nc:1, fun)
resbetaN <- (1 - 1/resbeta) / (1 - 1/M)
res <- cbind.data.frame(c(beta1N, resbetaN))
inter <- c("Inter-sites", paste("Inter-", colnames(structures), sep=""))
intra <- c("Intra-sites", paste("Intra-", colnames(structures), sep=""))
intrainter <- paste(inter[-(nc+1)], intra[-1])
rownames(res) <- c(inter[nc+1], rev(intrainter))
colnames(res) <- "Normed contributions to beta diversity"
}
return(res)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.