Description Usage Arguments Details Value Note Author(s) References See Also Examples
B2ZM_IMIS
obtains random samples from the posterior distribution of the parameters and exposure concentrations for the Bayesian two-zone model proposed by Zhang et al. (2009) using the Incremental Mixture Importance Sampling (IMIS). The user can choose whether the near and far field measurement error processes are dependent or not. In the independent model, 5 parameters are considered: 1) Beta: Interzonal air flow rate
(m3); 2) Q: supply and exhaust flow rate (m3/min); 3) G: contaminant emission rate (mg/min); 4) Tau_N: variance of the measurement error at the near field; 5)Tau_F; variance of the measurement error at the far field. In the dependent model (default), one more parameter is considered: 6) Tau_NF: covariance between the measurements at the near and far field. Any prior distribution for Beta, Q and G can be chosen. In the independent model, the prior distributions for Tau_N and Tau_F are inverse gamma distributions; in the dependent model, the prior joint distribution of Tau_N, Tau_NF and Tau_F is the Inverse Wishart Distribution (see the Details section for more information on the parameterization of these distributions). The output from
B2ZM_IMIS
is a list that belongs to the class imis
. This output is valid as an input for the functions summary
and plot
.
1 2 3 4 5 6 7 |
data |
A 3-column matrix where the columns are time, concentrations at the near field, and concentrations at the far field, respectively. The time must be scaled in minutes (min), and the concentrations must be scaled in miligrams per cubic meter (mg/m3) |
priorBeta |
A string defining the prior distribution for the parameter Beta. To declare the prior distribution of Beta, use standard R nomenclature for probability distributions. For example, if the prior of Beta is a Uniform(0,20), declare it with "unif(0,20)"; if it is a Normal(0,1), declare it with "norm(0,1)". DO NOT put an "d" or "r" in front the name of the distributions. The options are: "unif(a,b)", "gamma(a,b)", "exp(a)", "norm(a,b)", "t(a)", "weibull(a,b)", "f(a,b)", "chisq(a,b)", "cauchy(a,b)" and "lnorm(a,b)". |
priorQ |
A string defining the prior distribution for Q (use the nomenclature as for |
priorG |
A string defining the prior distribution for G (use the nomenclature as for |
v |
Degrees of freedom for the Inverse Wishart distribution (prior joint distribution for Tau_N, Tau_NF and Tau_F in the dependent model). |
S |
A 2x2 positive definite matrix for the Inverse Wishart (prior joint distribution for Tau_N, Tau_NF and Tau_F in the dependent model). |
tauN.sh |
The shape parameter in the inverse gamma distribution (prior distribution for Tau_N in the independent model). |
tauN.sc |
The scalar parameter in the inverse gamma distribution (prior distribution for Tau_N in the independent model). |
tauF.sh |
The shape parameter in the inverse gamma distribution (prior distribution for Tau_F in the independent model). |
tauF.sc |
The scalar parameter in the inverse gamma distribution (prior distribution for Tau_F in the independent model). |
VN |
Volume of the near field in cubic meters m3. |
VF |
Volume of the far field in cubic meters m3. |
indep.model |
A logical value indicating whether the independent model should be considered. The default is FALSE. |
cred |
A scalar between 0 and 100 indicating the credibility level for the posterior intervals of the parameters. |
N0 |
Initial number of inputs from the prior joint distribution of Beta, G, Q, Tau_N, Tau_F, and Tau_NF (if the dependent model is considered). The default is 6,000. |
B |
Number of inputs to be chosen in the Importance Sampling Stage. The default is 600. |
M |
Number of resamplings in the Resample Stage. The default is 3,000. |
it.max |
Maximum number of iterations in the Importance Sampling Stage to be tolerated, in case the stop condition suggested by Raftery and Bao (2009) takes too many time. The default is 16. |
figures |
The command
|
Parameterization priors: The inverse gamma and inverse Wishart distributions used in B2ZM_IMIS
are from the package MCMCpack
. The inverse gamma distribution with shape a and scale b has mean b/(a-1) (a>1) and variance (b^2)/((a-1)^2(a-2)) (a>2). The inverse Wishart with v degrees of freedom and scalar matrix S has mean S/(v-p-1), where p is the number of rows of S.
B2ZM_IMIS
returns a list that belongs to the class imis
. The output from B2ZM_IMIS
contains the objects:
Beta |
a vector containing the sampled values from the joint posterior distribution for the parameter Beta. |
Q |
a vector containing the sampled values from the joint posterior distribution for the parameter Q. |
G |
a vector containing the sampled values from the joint posterior distribution for the parameter G. |
tauN |
a vector containing the sampled values from the joint posterior distribution for the parameter Tau_N. |
tauF |
a vector containing the sampled values from the joint posterior distribution for the parameter Tau_F. |
tauNF |
a vector containing the sampled values from the joint posterior distribution for the parameter Tau_NF (if the dependent model is used). |
Y |
a matrix containing the log of the observed concentrations. |
DIC |
deviance information criterion. |
pD |
effective number of parameters. |
Dbar |
Deviance expectation. |
ESS |
effective sample size. |
indep |
a logical value indicating whether the independent model was used. |
times |
a vector containing the times when the observed concentrations were measured. |
cred |
credibility of the posterior intervals. |
expfrac |
expected fraction of unique points. |
V.hat |
variance of the rescaled importance weights. |
U.hat |
entropy of importance weights relative to uniformity. |
Q.hat |
expected number of unique points after re-sampling. |
maxw |
maximum importance weight. |
w |
importance weights. |
Methods defined for B2ZM_IMIS object are summary
and plot
.
In the Examples section, N0
, B
, M
and it.max
are small just for a quick demonstration. We suggest that N0
= 6,000; B
= 600; M
= 3,000 and it.max
greater than 10.
Joao Vitor Dias Monteiro, Sudipto Banerjee and Gurumurthy Ramachandran.
Monteiro, J. V. D., Banerjee, S. and Ramachandran, G. (2011). B2Z: An R Package for Bayesian Two-Zone Models. Journal of Statistical Software 43 (2) 1–23. http://www.jstatsoft.org/v43/i02/
Raftery, A. E. and Bao, L. (2009). Estimating and Projecting Trends in HIV/AIDS Generalized Epidemics Using Incremental Mixture Importance Sampling. http://www.stat.washington.edu/research/reports/2009/tr560.pdf
Zhang, Y., Banerjee, S., Yang,R., Lungu,C. and Ramachandran, G. (2009). Bayesian Modeling of Exposure and Airflow Using Two-Zone Models. The Annals of Occupational Hygiene, 53, 409-424. http://www.biostat.umn.edu/~sudiptob/ResearchPapers/ZBYLR.pdf
B2Z, B2ZM,B2ZM_BCLT,B2ZM_MCMC,B2ZM_SIR
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | ##################
#Dependent Model#
################
#Data 1: 100 simulated concentrations during the times
#between 0 and 4, using the parameters Beta = 5, Q = 13.8,
#G = 351.5, VN = pi*10^-3, VF = 3.8, Tau_N = 1,
#Tau_NF = 0.5 and Tau_F = 0.64.
data(ex1)
r <- B2ZM_IMIS(data = ex1, priorBeta = "unif(0,10)",
priorQ="unif(11,17)", priorG = "unif(281,482)", S = diag(10,2),
v = 4, VN = pi*10^-3, VF = 3.8, N0 = 500, B = 50, M = 250,
it.max = 4)
plot(r)
summary(r)
#Saving figures with .pdf extension
## Not run:
r <- B2ZM_IMIS(data = ex1, priorBeta = "unif(0,10)",
priorQ = "unif(11,17)", priorG = "unif(281,482)", S = diag(10,2),
v = 4, VN = pi*10^-3, VF = 3.8, N0 = 6000, B = 600, M = 3000,
it.max = 12, figures = list(save = TRUE, type ="pdf"))
## End(Not run)
#####################
#Independent Model #
###################
#Data 2: 100 simulated concentrations during the times
#between 0 and 4, using the parameters Beta = 5, Q = 13.8,
#G = 351.5, VN = pi*10^-3, VF = 3.8, Tau_N = 1,
#Tau_NF = 0 and Tau_F = 0.64.
## Not run:
data(ex2)
r <- B2ZM_IMIS(data = ex2, indep.model = TRUE,
priorBeta = "unif(0,10)", priorQ="unif(11,17)",
priorG = "unif(281,482)", tauN.sh = 5 , tauN.sc = 4 ,
tauF.sh = 5, tauF.sc = 7 , VN = pi*10^-3, VF = 3.8,
N0 = 5000, B = 500, M = 3000, it.max = 12)
plot(r)
summary(r)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.