--
---
You received this message because you are subscribed to the Google Groups "Qiime Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
| A | B | C | D | |
| A | 0 | 1.531274835 | 1.649860898 | 1.451182992 |
| B | 1.531274835 | 0 | 1.877257876 | 1.499588695 |
| C | 1.649860898 | 1.877257876 | 0 | 1.398265611 |
| D | 1.451182992 | 1.499588695 | 1.398265611 | 0 |
| A | B | C | D | |
| A | 0 | 0.860465116 | 0.961165049 | 0.904761905 |
| B | 0.860465116 | 0 | 1 | 0.866666667 |
| C | 0.961165049 | 1 | 0 | 0.882352941 |
| D | 0.904761905 | 0.866666667 | 0.882352941 | 0 |
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/tx74w-fwyHA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
# manually deleted first line of OTU table with hashtag, then removed #otu id from the header line
comm.data <- read.table("otu_tableR.txt", header=TRUE, sep="\t")
comm.matrix<-t(comm.data) #transpose
## make Bray-Curtis distance matrix
dist.matrix<-vegdist(comm.matrix,method="bray")
Thanks!