aggr {hbsae} | R Documentation |
Compute aggregates of small area estimates and MSEs.
Description
Compute aggregates of small area estimates and MSEs.
Usage
aggr(x, R)
Arguments
x |
sae object. |
R |
aggregation matrix, M x r matrix where M is the number of areas and r the number of aggregate areas; default is aggregation over all areas. |
Value
Object of class sae
with aggregated small area estimates and MSEs.
See Also
Examples
d <- generateFakeData()
# compute small area estimates
sae <- fSAE(y0 ~ x + area2, data=d$sam, area="area", popdata=d$Xpop)
# by default aggregate over all areas
global <- aggr(sae)
EST(global); RMSE(global)
# aggregation to broad area
# first build aggregation matrix
M <- d$Xpop[, c("area22", "area23", "area24")] / d$Xpop[, "(Intercept)"]
M <- cbind(1 - rowSums(M), M); colnames(M)[1] <- "area21"
est.area2 <- aggr(sae, M)
EST(est.area2); RMSE(est.area2)
COV(est.area2) # covariance matrix
[Package hbsae version 1.2 Index]