Hi Chris,
sorry if I answer late but I didn't receive the notification of your response. I try to summarize some questions
1. Simpler and several models instead of a single and complicated one
Since I noticed only now that you answered to me, I started to do as follow.
I'm trying to run less complicated models first grouping the covariates based on their nature (e.g., one model with 3 binary variables, one model with 3 continuous variables), and within them doing separate models for day and night. Then, I would average among individuals to have a population estimates. Just to provide a simple example:
#binary variables are forest, grassland and cropland
RSF_day_binary_animal1<-rsf.select(...,formula=~day:forest+day:grass+day:crop,...,integrator="Montecarlo")
RSF_day_binary_animal2<-rsf.select(...,formula=~day:forest+day:grass+day:crop,...,integrator="Montecarlo")
RSF_night_binary_animal1<-rsf.select(...,formula=~night:forest+night:grass+night:crop,...,integrator="Montecarlo")
RSF_night_binary_animal2<-rsf.select(...,formula=~night:forest+night:grass+night:crop,...,integrator="Montecarlo")
population_day_binary<-mean(RSF_day_binary_animal1,RSF_day_binary_animal2)
population_night_binary<-mean(RSF_night_binary_animal1,
RSF_night_binary_animal2)
Then I do the same for continuous variables and at the end I compare day an night estimates.
Actually, I'm working like this to cope with memory allocation and R crashing problems. It is still time consuming (from 7 to 24 hours per animal), but in most cases it works without warnings.
Therefore, my question is: does it make sense doing a workaround like this?
2. Complementary variables
To anwer to your question, I attatch figure 1: the three binary variables do not perfectly constitute a single categorical variable. Each binary is colored with a distinct colour (the 1 value), meanwhile the 0 value is transparet for all of them. White areas are areas where none of the three binary variables is present (i.e., is 0 for all of them).
As you can see, for some animals' home ranges they almost correspond to a single categorical variable (see sergio HR in the upper side of fig 1), but for other animals this is not the case (see isa HR in the lower side of fig 1).
So, is it faster to keep all of them as separate binary variables, or is it better to combine as a single categorical variable?
If the single categorical variable is a better way, should I create a fourth level in the categorical layer representing the white areas in fig 1 (level 1= forest, level 2= grass, level 3= crop, level 4= other) and use it as a reference layer?
3. Increase numerical error
Ok, thank you.
Just to better understand: if I already run some models with 1% error, and for slower models I increase the error (e.g., 5%), are 1% and 5% models comparable? And what do you mean with "adjustments"? Sorry for such questions, they may be stupid but working with the error argument is completely new to me.
Thank you again as always for the great support
Best
Lorenzo