I am regressing ecological distances between communities (as expressed as similarity) over their spatial and temporal distance on a regular grid of 360 sampling stations divided over six time points. The approach is known as distance-decay or time-decay in community analysis, and is a standard method to assess the influence of geographic or temporal distance on the relatedness of two communities. It regresses all pairwise community distances, expressed as similarities (e.g. (1-bray curtis) or (1- jaccard)) versus all pairwise spatial or temporal distances. The linear regression is very often formulated as log/log-linear (see onlinelibrary.wiley.com/doi/full/10.1111/…).
Since there are samples with large spatial distances (up to 10 m) sampled at the same time (so time.elapsed=0), and samples with large temporal distances (1 year) but small spatial distances (as low as 50 cm; no location was sampled twice), the question is how space and time interact with each other to shape communities.
my non-interactive log-log-linear model glm(log10(Similarity)~log10(Time+1) + log10(Space))
yields:
glm(formula = log10(com.sim) ~ log10(Space) + log10(Time + 1), data = a)
Deviance Residuals:
Min 1Q Median 3Q Max
-0.28927 -0.01443 0.01030 0.02782 0.07214
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -0.1075605 0.0004254 -252.84 <2e-16 ***
log10(Space) -0.0086474 0.0004695 -18.42 <2e-16 ***
log10(Time + 1) -0.0087252 0.0001608 -54.27 <2e-16 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
(Dispersion parameter for gaussian family taken to be 0.001929398)
Null deviance: 252.89 on 127805 degrees of freedom
Residual deviance: 246.58 on 127803 degrees of freedom
AIC: -436155
Number of Fisher Scoring iterations: 2
(as you can see i have ~70000 data points, which is another story by itself)
So, very small effect sizes, but increasing time and space between two samples each decreases community similarity. If i am correct in interpreting log-log-linear regression, a 1% chance of space (or time+1)= would result in a decrease of -0.008 similarity units.
My interactive model looks like this:
glm(formula = log10(com.sim) ~ log10(Space) * log10(Time + 1), data = a)
Deviance Residuals:
Min 1Q Median 3Q Max
-0.29134 -0.01438 0.01033 0.02779 0.07238
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -0.1031889 0.0007938 -129.994 < 2e-16 ***
log10(Space) -0.0152780 0.0011197 -13.645 < 2e-16 ***
log10(Time + 1) -0.0113717 0.0004364 -26.056 < 2e-16 ***
log10(Space):log10(Time + 1) 0.0040206 0.0006164 6.523 6.94e-11 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
(Dispersion parameter for gaussian family taken to be 0.001928771)
Null deviance: 252.89 on 127805 degrees of freedom
Residual deviance: 246.50 on 127802 degrees of freedom
AIC: -436195
Number of Fisher Scoring iterations: 2
So, here the slopes for the individual terms are higher than in the non-interactive model. As i have learned from this answer, the interaction term expresses the elasticity of an increase of 1% Time +1 in respect to Space, which is 0.00004
My questions are: why are the term slopes so different between the interactive and non-interactive models? Is my interpretation of the interaction term correct? How would i explain the influence of time on space (and vice versa)? Is it possible to formulate a simple sentence to summarize the model?
Thank you.