comparing different variance between samples (amplicon data)
1
0
Entering edit mode
23 months ago

Hi everyone,

I'm analyzing my amplicon data, 16S and ITS, and faced a problem for analyzing the possible correlation between my variables. I have six variables (in my metadata table) and want to know if the variance of my ASVs between two groups are meaningful or not. For example I want to know if the variance between variable 1 and variable 2 are statistically meaningful or not (p value< 0.05). I first did adonis(distance_matrix~ variable 1 *variable 2) and got p value and R square values for my two variables separately and together, but I realized that the order of variables matter on one hand and on the hand I don't get the difference between this piece of code and this one adonis(distance_matrix~ variable 1 + variable 2)! My data are not normally distributed by the way. Does anyone know any solution? Thanks in advance

beta-diversity amplicon permanova • 417 views
ADD COMMENT
0
Entering edit mode
23 months ago
Asaf 10k

The difference between ~ Var1 * Var2 and ~ Var1 + Var2 is simply the interaction between Var1 and Var2 being a part of the design equation in the first case and omitted in the second case. Var1 * Var2 is short for Var1 + Var2 + Var1:Var2. The interaction term tests the hypothesis that the effect of Var2 depends on the value of Var1.

ADD COMMENT

Login before adding your answer.

Traffic: 2047 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6