| Snoring {evidence} | R Documentation | 
Data on the incidence of hypertension and three indicator variables.
Description
A total of 433 persons were tested for hypertension and checked for whether they were smokers, obese, or snored. The data are in Altman(1991).
Usage
data(Snoring)
Format
A data frame with 8 observations on the following 5 variables:
smokingdid the person smoke (1) or not (0)?
obesewas the person obese (1) or not (0)?
snoringdid the person snore (1) or not (0)?
nthe number of persons observed with these covariates
hypertdid the person suffer from hypertension (1) or not (0)?
Source
Altman, D.G. 1991. Practical Statistics for Medical Research. Chapman \& Hall, London.
References
van Hulst, R. 2018. Evaluating Scientific Evidence. ms.
Examples
data(Snoring)
fit <- glm(cbind(hypert, n - hypert) ~ smoking + obese + snoring,
  family=binomial, data=Snoring)
summary(fit)
[Package evidence version 0.8.10 Index]