ahs: Australian Health Survey

ahsR Documentation

Australian Health Survey

Description

The Australian health survey was used by Bonat and Jorgensen (2016) as an example of multivariate count regression model. The data consists of five count response variables concerning health system access measures and nine covariates concerning social conditions in Australian for 1987-88.

  • sex - Factor with levels male and female.

  • age - Respondent's age in years divided by 100.

  • income - Respondent's annual income in Australian dollars divided by 1000.

  • levyplus - Coded factor. If respondent is covered by private health insurance fund for private patients in public hospital with doctor of choice (1) or otherwise (0).

  • freepoor - Coded factor. If respondent is covered by government because low income, recent immigrant, unemployed (1) or otherwise (0).

  • freerepa - Coded factor. If respondent is covered free by government because of old-age or disability pension, or because invalid veteran or family of deceased veteran (1) or otherwise (0).

  • illnes - Number of illnesses in past 2 weeks, with 5 or illnesses coded as 5.

  • actdays - Number of days of reduced activity in the past two weeks due to illness or injury.

  • hscore - Respondent's general health questionnaire score using Goldberg's method. High score indicates poor health.

  • chcond - Factor with three levels. If respondent has chronic condition(s) and is limited in activity (limited), or if the respondent has chronic condition(s) but is not limited in activity (nonlimited) or otherwise (otherwise, reference level).

  • Ndoc - Number of consultations with a doctor or specialist (response variable).

  • Nndoc - Number of consultations with health professionals (response variable).

  • Nadm - Number of admissions to a hospital, psychiatric hospital, nursing or convalescence home in the past 12 months (response variable).

  • Nhosp - Number of nights in a hospital during the most recent admission.

  • Nmed - Total number of prescribed and non prescribed medications used in the past two days.

Usage

data(ahs)

Format

a data.frame with 5190 records and 15 variables.

Source

Deb, P. and Trivedi, P. K. (1997) Demand for medical care by the elderly: A finite mixture approach. Journal of Applied Econometrics 12(3):313–336.

Bonat, W. H. and Jorgensen, B. (2016) Multivariate covariance generalized linear models. Journal of Royal Statistical Society - Series C 65:649–675.

Examples

require(mcglm)
data(ahs, package="mcglm")
form1 <- Ndoc ~ income + age
form2 <- Nndoc ~ income + age
Z0 <- mc_id(ahs)
fit.ahs <- mcglm(linear_pred = c(form1, form2),
                 matrix_pred = list(Z0, Z0), link = c("log","log"),
                 variance = c("poisson_tweedie","poisson_tweedie"),
                 data = ahs)
summary(fit.ahs)

mcglm documentation built on Sept. 16, 2022, 1:06 a.m.