plm0 is used to fit a discharge rating curve for paired measurements of stage and discharge using a power-law model with a constant variance as described in Hrafnkelsson et al. (2022). See "Details" for a more elaborate description of the model.
Arguments
- formula
An object of class "formula", with discharge column name as response and stage column name as a covariate, i.e. of the form
y
~x
wherey
is discharge in m\(^3/\)s andx
is stage in m (it is very important that the data is in the correct units).- data
A data.frame containing the variables specified in formula.
- c_param
The largest stage value for which there is zero discharge. If NULL, it is treated as unknown in the model and inferred from the data.
- h_max
The maximum stage to which the rating curve should extrapolate to. If NULL, the maximum stage value in the data is selected as an upper bound.
- parallel
A logical value indicating whether to run the MCMC in parallel or not. Defaults to TRUE.
- num_cores
An integer between 1 and 4 (number of MCMC chains) indicating how many cores to use. Only used if parallel=TRUE. If NULL, the number of cores available on the device is detected automatically.
- forcepoint
A logical vector of the same length as the number of rows in data. If an element at index \(i\) is TRUE it indicates that the rating curve should be forced through the \(i\)-th measurement. Use with care, as this will strongly influence the resulting rating curve.
- verbose
A logical value indicating whether to print progress and diagnostic information. If `TRUE`, the function will print messages as it runs. If `FALSE`, the function will run silently. Default is `TRUE`.
Value
plm0 returns an object of class "plm0". An object of class "plm0" is a list containing the following components:
rating_curve
A data frame with 2.5%, 50% and 97.5% percentiles of the posterior predictive distribution of the rating curve.
rating_curve_mean
A data frame with 2.5%, 50% and 97.5% percentiles of the posterior distribution of the mean of the rating curve.
param_summary
A data frame with 2.5%, 50% and 97.5% percentiles of the posterior distribution of latent- and hyperparameters. Additionally contains columns with r_hat and the effective number of samples for each parameter as defined in Gelman et al. (2013).
posterior_log_likelihood_summary
A data frame with 2.5%, 50% and 97.5% percentiles of the posterior log-likelihood values.
rating_curve_posterior
A matrix containing the full thinned posterior samples of the posterior predictive distribution of the rating curve (excluding burn-in).
rating_curve_mean_posterior
A matrix containing the full thinned posterior samples of the posterior distribution of the mean of the rating curve (excluding burn-in).
a_posterior
A numeric vector containing the full thinned posterior samples of the posterior distribution of \(a\).
b_posterior
A numeric vector containing the full thinned posterior samples of the posterior distribution of \(b\).
c_posterior
A numeric vector containing the full thinned posterior samples of the posterior distribution of \(c\).
sigma_eps_posterior
A numeric vector containing the full thinned posterior samples of the posterior distribution of \(\sigma_{\varepsilon}\).
posterior_log_likelihood
A numeric vector containing the full thinned posterior log-likelihood values, excluding burn-in samples.
D_hat
A statistic defined as -2 times the log-likelihood evaluated at the median value of the parameters.
effective_num_param_DIC
The effective number of parameters, which is calculated as median(-2*posterior_log_likelihood) minus D_hat.
DIC
The Deviance Information Criterion for the model, calculated as D_hat plus 2*effective_num_parameters_DIC.
lppd
The log pointwise predictive density of the observed data under the model.
WAIC
The Widely Applicable Information Criterion for the model, defined as -2*( lppd - effective_num_param_WAIC ).
WAIC_i
The pointwise WAIC values, where WAIC := sum(WAIC_i).
effective_num_param_WAIC
The effective number of parameters, which is calculated by summing up the posterior variance of the log predictive density for each data point.
autocorrelation
A data frame with the autocorrelation of each parameter for different lags.
acceptance_rate
The proportion of accepted samples in the thinned MCMC chain (excluding burn-in).
formula
An object of type "formula" provided by the user.
data
The data provided by the user, ordered by stage.
run_info
The information about the input arguments and the specific parameters used in the MCMC chain.
Details
The power-law model, which is commonly used in hydraulic practice, is of the form
$$Q=a(h-c)^{b}$$
where \(Q\) is discharge, \(h\) is stage and \(a\), \(b\) and \(c\) are unknown constants.
The power-law model is here inferred by using a Bayesian hierarchical model. The model is on a logarithmic scale
$$\log(Q_i) = \log(a) + b \log(h_i - c) + \varepsilon, i = 1,...,n$$
where \(\varepsilon\) follows a normal distribution with mean zero and variance \(\sigma_\varepsilon^2\), independent of stage. An efficient posterior simulation is achieved by sampling from the joint posterior density of the hyperparameters of the model, and then sampling from the density of the latent parameters conditional on the hyperparameters.
Bayesian inference is based on the posterior density and summary statistics such as the posterior mean and 95% posterior intervals are based on the posterior density. Analytical formulas for these summary statistics are intractable in most cases and thus they are computed by generating samples from the posterior density using a Markov chain Monte Carlo simulation.
References
Gelman, A., Carlin, J. B., Stern, H. S., Dunson, D. B., Vehtari, A., and Rubin, D. B. (2013). Bayesian Data Analysis, Third Edition. Chapman & Hall/CRC Texts in Statistical Science. Taylor & Francis. doi: https://doi.org/10.1201/b16018
Hrafnkelsson, B., Sigurdarson, H., Rögnvaldsson, S., Jansson, A. Ö., Vias, R. D., and Gardarsson, S. M. (2022). Generalization of the power-law rating curve using hydrodynamic theory and Bayesian hierarchical modeling, Environmetrics, 33(2):e2711. doi: https://doi.org/10.1002/env.2711
Spiegelhalter, D., Best, N., Carlin, B., Van Der Linde, A. (2002). Bayesian measures of model complexity and fit. Journal of the Royal Statistical Society: Series B (Statistical Methodology) 64(4), 583–639. doi: https://doi.org/10.1111/1467-9868.00353
Watanabe, S. (2010). Asymptotic equivalence of Bayes cross validation and widely applicable information criterion in singular learning theory. J. Mach. Learn. Res. 11, 3571–3594.
See also
summary.plm0
for summaries, predict.plm0
for prediction. It is also useful to look at spread_draws
and plot.plm0
to help visualize the full posterior distributions.
Examples
# \donttest{
data(skogsliden)
set.seed(1)
plm0.fit <- plm0(formula=Q~W,data=skogsliden,num_cores=2)
#> Progress:
#> Initializing Metropolis MCMC algorithm...
#> Multiprocess sampling (4 chains in 2 jobs) ...
#>
#> MCMC sampling completed!
#>
#> Diagnostics:
#> Acceptance rate: 37.00%.
#> ✔ All chains have mixed well (Rhat < 1.1).
#> ✔ Effective sample sizes sufficient (eff_n_samples > 400).
summary(plm0.fit)
#>
#> Formula:
#> Q ~ W
#> Latent parameters:
#> lower-2.5% median-50% upper-97.5%
#> a 10.29 10.77 11.22
#> b 2.09 2.17 2.26
#>
#> Hyperparameters:
#> lower-2.5% median-50% upper-97.5%
#> c 3.9042 3.9201 3.9341
#> sigma_eps 0.0455 0.0592 0.0805
#>
#> WAIC: -68.50725
# }