Trying to build a model inflated to zeros R gives me the following message:
Warning message: In sqrt (diag (object $ vcov)): NaNs produced
That basically assumes that most of my statisticians appear as Na. The recommendations I read in other forums are to scale the numerical variables. I've done it and despite the fact that it's improving, Na keep appearing that prevent me from interpreting anything or continue modeling.
tabla <- read.table("Dataset_pulido-basura.csv", sep=";", dec=".", header=T, na.strings="NA")
f1<- formula(presencias ~ distancia|distancia+habitat+ganado)
Zap1 <- hurdle(f1, dist = "poisson",link = "logit", data = tabla)