Learn R Programming

Sleuth3 (version 0.1-6)

case0101: Motivation and Creativity

Description

Data from an experiment concerning the effects of intrinsic and extrinsic motivation on creativity. Subjects with considerable experience in creative writing were randomly assigned to on of two treatment groups.

Usage

case0101

Arguments

source

Ramsey, F.L. and Schafer, D.W. (2013). The Statistical Sleuth: A Course in Methods of Data Analysis (3rd ed), Cengage Learning.

References

Amabile, T. (1985). Motivation and Creativity: Effects of Motivational Orientation on Creative Writers, Journal of Personality and Social Psychology 48(2): 393--399.

Examples

Run this code
attach(case0101)  
str(case0101)  
boxplot(Score ~ Treatment)  # Basic boxplots for each level of Treatment

boxplot(Score ~ Treatment,  # Boxplots with labels
  ylab= "Average Creativity Score From 11 Judges (on a 40-point scale)",  
  names=c("23 'Extrinsic' Group Students","24 'Intrinsic' Group Students"), 
  main= "Haiku Creativity Scores for 47 Creative Writing Students") 

detach(case0101)

Run the code above in your browser using DataLab