With this data frame grouping the response variables :
And this df grouping the explanatory variables :
I perform the vegan::rda like this :
fish_rda <- rda(fish ~ kJ_per_kg_GF + Condition(factor(annee)), data=df_rda)
But when I call summary(fish_rda)
, it returns this error message :
Error in if (all(vars >= 0)) cumsum(vars) else NA : missing value where TRUE/FALSE needed
I don't understand ...
Here, there is the output of the traceback function :
Someone to help me ?
Thank you