Displaying 1 result from an estimated 1 matches for "g3_jaccard".
2011 May 17
1
simprof test using jaccard distance
...sults$samples[[i]][j] <- rownames(data)[as.numeric(simprof.results$samples[[i]][j])]
}
}
}
results[["significantclusters"]] <- simprof.results$samples
return(results)
}
But upon running it on my vegdist object, I get the following error:
> simprof2(G3_jaccard)
Error in simprof2(G3_jaccard) : could not find function "simprof.body"
I guess this function is part of the initial environment in which simprof runs, but how do I access it in order to call it when I run my own function outside of the initial environment?
Another possible but maybe mor...