HSAUR2 (version 1.1-17)

GHQ: General Health Questionnaire

Description

Data from an psychiatric screening questionnaire

Usage

data("GHQ")

Arguments

Format

A data frame with 22 observations on the following 4 variables.

GHQ

the General Health Questionnaire score.

gender

a factor with levels female and male

cases

the number of diseased subjects.

non.cases

the number of healthy subjects.

Details

The data arise from a study of a psychiatric screening questionnaire called the GHQ (General Health Questionnaire, see Goldberg, 1972). Here the main question of interest is to see how caseness is related to gender and GHQ score.

Examples

Run this code
# NOT RUN {
  data("GHQ", package = "HSAUR2")
  male <- subset(GHQ, gender == "male")
  female <- subset(GHQ, gender == "female")
  layout(matrix(1:2, ncol = 2))
  barplot(t(as.matrix(male[,c("cases", "non.cases")])), main = "Male", xlab = "GHC score")
  barplot(t(as.matrix(male[,c("cases", "non.cases")])), main = "Female", xlab = "GHC score")

# }

Run the code above in your browser using DataLab