chapter_7_table_1 {AMCP} | R Documentation |
The data used in Chapter 7, Table 1
Description
The data used in Chapter 7, Table 1
Usage
data(chapter_7_table_1)
Format
An object of class data.frame
with 20 rows and 2 columns.
Details
This data is the hypothetical data from a psychologist's evaluation of the effectiveness of biofeedback and drug therapy for treating hypertension (lowering blood pressure). There are four groups: both biofeedback training and drug therapy, biofeedback but not drug therapy, drug therapy but no biofeedback, and neither biofeedback nor drug therapy... As usual, in this data set, the number of subjects is kept small to minimize the computational burden. We assume that the scores in the table represent systolic blood pressure readings taken at the end of the treatment period.
The following data consists specifically of blood pressure measurements taken after the end of treatment for five individuals that were randomly assigned to one of four groups. The initial question of interest is whether there is a significant difference between any of the group means, that is, are all of the population group means equal or is there a difference somewhere.
As before, we can perform a one-way ANOVA via the One-Way ANOVA procedure to replicate the results given in Table 7.2.
Variables
- group
a numeric vector between 1 and 4 equal to the drug therapy group
- score
the blood pressure of one of the individuals in the study
Synonym
C7T1
Author(s)
Ken Kelley kkelley@nd.edu
Source
https://designingexperiments.com/data/
Maxwell, S. E., Delaney, H. D., & Kelley, K. (2018). Designing experiments and analyzing data: A model comparison perspective. (3rd ed.). New York, NY: Routledge.
References
Maxwell, S. E., Delaney, H. D., & Kelley, K. (2018). Designing experiments and analyzing data: A model comparison perspective (3rd ed.). New York, NY: Routledge.
Examples
# Load the data
data(chapter_7_table_1)
# Or, alternatively load the data as
data(C7T1)
# View the structure
str(chapter_7_table_1)