add list of the arguments for building the stack (switch withinlabrudetails)
Code
# A_sp <- inla.spde.make.A(mesh = mesh, # loc = SSOM[,c('x.loc','y.loc')] |> as.matrix())A_sp<-inla.spde.make.A(mesh =mesh, loc =st_coordinates(SSOM))iset_sp<-inla.spde.make.index(name ="spatial_field", matern$n.spde)stk<-inla.stack(data=list(Ycounts =SSOM$y, # observed occurrences Ncounts =SSOM$nvisits, # number of visits det_cov =SSOM$x_s, # detection covariate Int_det =rep(1,length(SSOM$y))), # Baseline detection A=list(A_sp,1), # the A matrix; the 1 is included to make the list(covariates) effects=list(c(list(Int_occ=1), #the Interceptiset_sp), #the spatial index#the covariateslist(occ_cov =SSOM$x_s)), #this is a quick name so yo can call upon easily tag='ssom')
Now we define the model components (left hand side -observational model components; right hand side - state process components) and fit the model (switch withinlabrudetails):