pBayes {StatMatch} | R Documentation |
Pseudo-Bayes estimates of cell probabilities
Description
Estimation of cells counts in contingency tables by means of the pseudo-Bayes estimator.
Usage
pBayes(x, method="m.ind", const=NULL)
Arguments
x |
A contingency table with observed cell counts. Typically the output of |
method |
The method for estimating the final cell frequencies. The following options are available:
|
const |
Numeric value, a user defined constant |
Details
This function estimates the frequencies in a contingency table by using the pseudo-Bayes approach. In practice the estimator being considered is a weighted average of the input (observed) cells counts and a suitable prior guess,
, for cells probabilities :
depends on the parameters of Dirichlet prior distribution being considered (for major details see Chapter 12 in Bishop et al., 1974).
It is worth noting that with a constant prior guess
(
), then
and in practice corresponds to adding
to each cell before estimation of the relative frequencies (
method = "invcat"
); when the constant 0.5 is added to each cell (
method = "Jeffreys"
); finally when the quantity
is added to each cell (
method = "minimax"
). All these cases corresponds to adding a flattening constant; the higher is the value of the more the estimates will be shrinked towards
(flattening).
When method = "m.ind"
the prior guess is estimated under the hypothesis of mutual independence between the variables crossed in the initial contingency table
x
, supposed to be at least a two-way table. In this case the value of is estimated via a data-driven approach by considering
On the contrary, when method = "h.assoc"
the prior guess is estimated under the hypothesis of homogeneous association between the variables crossed in the initial contingency table
x
.
Please note that when the input table is estimated from sample data where a weight is assigned to each unit, the weights should be used in estimating the input table, but it is suggested to rescale them so that their sum is equal to n, the sample size.
Value
A list
object with three components.
info |
A vector with the sample size |
prior |
A table having the same dimension as |
pseudoB |
A table with having the same dimension as |
Author(s)
Marcello D'Orazio mdo.statmatch@gmail.com
References
Bishop Y.M.M., Fienberg, S.E., Holland, P.W. (1974) Discrete Multivariate Analysis: Theory and Practice. The Massachusetts Institute of Technology
Examples
data(samp.A, package="StatMatch")
tab <- xtabs(~ area5 + urb + c.age + sex + edu7, data = samp.A)
out.pb <- pBayes(x=tab, method="m.ind")
out.pb$info
out.pb <- pBayes(x=tab, method="h.assoc")
out.pb$info
out.pb <- pBayes(x=tab, method="Jeffreys")
out.pb$info
# usage of weights in estimating the input table
n <- nrow(samp.A)
r.w <- samp.A$ww / sum(samp.A$ww) * n # rescale weights to sum up to n
tab.w <- xtabs(r.w ~ area5 + urb + c.age + sex + edu7, data = samp.A)
out.pbw <- pBayes(x=tab.w, method="m.ind")
out.pbw$info