RDSalamander | R Documentation |
A robust design occupancy data set for modelling presence/absence data for salamanders.
A data frame with 40 observations (sites) on the following 2 variables.
a character vector containing the presence (1) and absence (0) with 2 primary occasions with 48 and 31 visits to the site
frequency of sites (always 1)
This is a data set that I got from Gary White which is suppose to be salamander data collected with a robust design.
# This example is excluded from testing to reduce package check time fit.RDOccupancy=function() { data(RDSalamander) occ.p.time.eg=mark(RDSalamander,model="RDOccupEG", time.intervals=c(rep(0,47),1,rep(0,30)), model.parameters=list(p=list(formula=~session)),threads=2,delete=TRUE) occ.p.time.pg=mark(RDSalamander,model="RDOccupPG", time.intervals=c(rep(0,47),1,rep(0,30)), model.parameters=list(Psi=list(formula=~time), p=list(formula=~session)),threads=2,delete=TRUE) occ.p.time.pe=mark(RDSalamander,model="RDOccupPE", time.intervals=c(rep(0,47),1,rep(0,30)), model.parameters=list(Psi=list(formula=~time), p=list(formula=~session)),threads=2,delete=TRUE) return(collect.models()) } RDOcc=fit.RDOccupancy() print(RDOcc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.