data(simulatedData)
est <- overlapEst(tigerObs, pigObs, type="Dhat4")
boots <- bootstrap(tigerObs, pigObs, 99, type="Dhat4", cores=1)
mean(boots)
hist(boots)
bootCI(est, boots)
# alternatively:
tigSim <- resample(tigerObs, 99)
dim(tigSim)
pigSim <- resample(pigObs, 99)
boots <- bootEst(tigSim, pigSim, type="Dhat4", cores=1)
mean(boots)
Run the code above in your browser using DataLab