simu_spe: Specialization based on simulated coefficients

View source: R/fcts RSF.R

simu_speR Documentation

Specialization based on simulated coefficients

Description

Calculate specialization for each replicate of simulated coefficients

Usage

simu_spe(simu)

Arguments

simu

An array of simulated individual coefficients based on their uncertainties(output of simu_coefs)

Value

A matrix of specialization (one value for each covariates and replicates)

Examples

data(goats)
ls1<-list()
ls1[[1]]<-as.formula(STATUS~ELEVATION+SLOPE+ET+ASPECT+HLI+TASP)
out<-rsf_ind(goats$ID, data=goats, form_ls=ls1)
coef<-ind_coef(m=1, out)
se<-ind_se(m=1, out)
simu<-simu_coefs(coef, se, n=100)
spe<-simu_spe(simu)
colnames(spe)<-names(coef)
head(spe)
apply(spe, 2, quantile, na.rm=T) #Show variation around estimate of each covariate
colMeans(spe) #Calculate average specialization for each covariate

BastilleRousseau/IndRSA documentation built on Jan. 28, 2024, 2:14 a.m.