Run the Metropolis-Hastings algorithm for tsd. Deeply modified from a MCMC script by Olivier Martin (INRA, Paris-Grignon). The number of iterations is n.iter+n.adapt+1 because the initial likelihood is also displayed. I recommend that thin=1 because the method to estimate SE uses resampling. If initial point is maximum likelihood, n.adapt = 0 is a good solution. To get the SE from result_mcmc <- tsd_MHmcmc(result=try), use: result_mcmc$BatchSE or result_mcmc$TimeSeriesSE The batch standard error procedure is usually thought to be not as accurate as the time series methods. Based on Jones, Haran, Caffo and Neath (2005), the batch size should be equal to sqrt(n.iter). Jones, G.L., Haran, M., Caffo, B.S. and Neath, R. (2006) Fixed Width Output Analysis for Markov chain Monte Carlo , Journal of the American Statistical Association, 101:1537-1547. coda package is necessary for this function. The parameters intermediate and filename are used to save intermediate results every 'intermediate' iterations (for example 1000). Results are saved in a file of name filename. The parameter previous is used to indicate the list that has been save using the parameters intermediate and filename. It permits to continue a mcmc search. These options are used to prevent the consequences of computer crash or if the run is very very long and processes at time limited.
tsd_MHmcmc(result = stop("A result of tsd() fit must be provided"),
n.iter = 10000, parametersMCMC = NULL, n.chains = 1, n.adapt = 0,
thin = 1, trace = FALSE, batchSize = sqrt(n.iter), adaptive = FALSE,
adaptive.lag = 500, adaptive.fun = function(x) { ifelse(x > 0.234,
1.3, 0.7) }, intermediate = NULL, filename = "intermediate.Rdata",
previous = NULL)
An object obtained after a SearchR fit
Number of iterations for each step
A set of parameters used as initial point for searching with information on priors
Number of replicates
Number of iterations before to store outputs
Number of iterations between each stored output
True or False, shows progress
Number of observations to include in each batch fo SE estimation
Should an adaptive process for SDProp be used
Lag to analyze the SDProp value in an adaptive content
Function used to change the SDProp
Period for saving intermediate result, NULL for no save
If intermediate is not NULL, save intermediate result in this file
Previous result to be continued. Can be the filename in which intermediate results are saved.
A list with resultMCMC being mcmc.list object, resultLnL being likelihoods and parametersMCMC being the parameters used
tsd_MHmcmc runs the Metropolis-Hastings algorithm for tsd (Bayesian MCMC)
Other Functions for temperature-dependent sex determination: DatabaseTSD
,
P_TRT
, TSP.list
,
predict.tsd
, stages
,
tsd_MHmcmc_p
, tsd
# NOT RUN {
library(embryogrowth)
eo <- subset(DatabaseTSD, Species=="Emys orbicularis", c("Males", "Females",
"Incubation.temperature"))
eo_logistic <- tsd(eo)
pMCMC <- tsd_MHmcmc_p(eo_logistic, accept=TRUE)
# Take care, it can be very long
result_mcmc_tsd <- tsd_MHmcmc(result=eo_logistic,
parametersMCMC=pMCMC, n.iter=10000, n.chains = 1,
n.adapt = 0, thin=1, trace=FALSE, adaptive=TRUE)
# summary() permits to get rapidly the standard errors for parameters
summary(result_mcmc_tsd)
plot(result_mcmc_tsd, parameters="S", scale.prior=TRUE, xlim=c(-3, 3), las=1)
plot(result_mcmc_tsd, parameters="P", scale.prior=TRUE, xlim=c(25, 35), las=1)
1-rejectionRate(as.mcmc(result_mcmc_tsd))
raftery.diag(as.mcmc(result_mcmc_tsd))
heidel.diag(as.mcmc(result_mcmc_tsd))
library(car)
o <- P_TRT(x=eo_logistic, resultmcmc=result_mcmc_tsd)
outEo <- dataEllipse(x=o$P_TRT[, "PT"],
y=o$P_TRT[, "TRT"],
levels=c(0.95),
draw=FALSE)
plot(x = o$P_TRT[, "PT"],
y=o$P_TRT[, "TRT"],
pch=".", las=1, bty="n",
xlab="Pivotal temperature",
ylab=paste0("TRT ", as.character(100*eo_logistic$l), "%"),
xlim=c(28.4, 28.6),
ylim=c(0.8, 1.8))
lines(outEo[, 1], outEo[, 2], col="green", lwd=2)
legend("topleft", legend = c("Emys orbicularis", "95% confidence ellipse"),
pch=c(19, NA), col=c("black", "green"), lty=c(0, 1), lwd=c(0, 2))
# }
Run the code above in your browser using DataLab