linearComb-methods.Rd
Methods for function linearComb
in Package `unmarked'
Typically called internally
Returns
linear combinations of parameters from a fitted model. Coefficients
are supplied through coefficients. The required argument type
specifies which model estimate to use. You can use
names(fittedmodel)
to view possible values for the type
argument.
data(ovendata) ovenFrame <- unmarkedFrameMPois(ovendata.list$data, siteCovs=as.data.frame(scale(ovendata.list$covariates[,-1])), type = "removal") fm <- multinomPois(~ 1 ~ ufc + trba, ovenFrame) linearComb(fm, c(1, 0.5, 0.5), type = "state")#> Linear combination(s) of Abundance estimate(s) #> #> Estimate SE (Intercept) ufc trba #> 0.0671 0.167 1 0.5 0.5 #>#> Linear combination(s) of Abundance estimate(s) #> #> Estimate SE (Intercept) ufc trba #> 1 0.0671 0.167 1 0.5 0.5 #> 2 0.1024 0.119 1 0.0 0.0 #> 3 0.0169 0.145 1 0.0 0.5 #>