The models
run fine when i I do not include the random effects. The data is on
page views per individual at a news paper website over a period of
1 month, hence I want to include person specific random effects.
And I create the group Id by person.
So I have been able to run the following successfully:
output <- glmmadmb(tot_pv~ time_last_visit + friends_residual+
number_friends + like_counter + avg_gap_activity + dum_local +
dum_sport + dum_more + dum_tvzap + number_like +
tot_daily_visits_o + tot_daily_visits_reg + female + age ,
data=(subset(facebook_merge,tot_pv>0)), zeroInflation=FALSE,
family="truncnbinom1")
However when I include a random effect on each individual in the
data set I get the following error message:
output <- glmmadmb(tot_pv~ time_last_visit + friends_residual+
number_friends + like_counter + avg_gap_activity + dum_local +
dum_sport + dum_more + dum_tvzap + number_like +
tot_daily_visits_o + tot_daily_visits_reg + female + age ,
(1|group_id) , data=(subset(facebook_merge,tot_pv>0)),
zeroInflation=FALSE, family="truncnbinom1")
Error message
The function maximizer failed (couldn't find STD file) In addition:
Warning message: running command './glmmadmb -maxfn 500 -maxph 5
-noinit -shess' had status 1
Need to increase the maximum number of separable calls allowed to
at least 20001 Current value is 20000 Use the -ndi N command line
option