Displaying 1 result from an estimated 1 matches for "desensitisztion".
2007 Dec 04
2
Learning to do randomized block design analysis
...e a
case study example from my textbook [1]:
> # Case Study 13.2.1, page 778
> cd <- c(8, 11, 9, 16, 24)
> dp <- c(2, 1, 12, 11, 19)
> lm <- c(-2, 0, 6, 2, 11)
> table <- data.frame(Block=LETTERS[1:5], "Score changes"=c(cd, dp,
lm), Therapy=rep(c("Contact Desensitisztion", "Demonstration
Participation", "Live Modeling"), each=5))
> table
Block Score.changes Therapy
1 A 8 Contact Desensitisztion
2 B 11 Contact Desensitisztion
3 C 9 Contact Desensitisztion...