Skip to content
Prev 5985 / 7420 Next

Doing repeated measures on a randomized block design

Dear Richard,

your question could be handled using a linear model incorporating a
temporal autcorrelation structure within trees. However, I don't think
using "tree" as random factor (e.g. in lme()) would be very helpful here
because random factors assume a compound symmetry autocorrelation structure
(same correlation for any temporal distance), which is probably overly
simplistic for long time series. Instead, you could use Generalized Least
Squares, gls() in R, which is a standard choice in such cases. For instance:

gls(FvFm ~ Exposure, correlation = corAR1(form = ~time|Tree), data =
perm.fvfm)

This will fit a model assuming a first-order autoregressive correlation
structure, i.e. residual autocorrelation should decrease as the temporal
distance between them increases. Notice that "time" should be the temporal
order of observations within trees, so you will have to convert your "Date"
to this format first. For other correlation structures, relevant R
functions and examples similar to yours, see Zuur et al. (2009), "Mixed
effects models and extensions in ecology with R".

Best wishes,

Pedro

Em sex, 14 de jun de 2019 ?s 14:42, Richard Boyce <boycer at nku.edu> escreveu: