Description Usage Format Source References Examples
This dataset presents paired data corresponding to average blink-rate per minute of 12 subjects in an experiment of a visual motor task. They had to steer a pencil along a moving track. Each subject was tested under two conditions : a straight track and an oscillating one. Note that the values from subjects 1 and 2 are somewhat different.
1 |
A dataframe with 12 rows and 3 columns:
[,1] | Subject | factor | |
[,2] | Straight | numeric | blink rate in first condition |
[,3] | Oscillating | numeric | blink rate in second condition |
Wetherhill, G.B. (1972) Elementary Statistical Methods, 2nd ed Chapman and Hall: London.
Preece D.A. (1982) t is for trouble (and textbooks): a critique of some examples of the paired-samples t-test. The Statistician, 31 (2), 169-195.
1 2 3 4 5 6 7 8 9 | data(Blink)
# Visualizing two "outliers"
with(Blink,plot(paired(Straight,Oscillating),type="profile"))
# Interestingly, the differences for the two outliers are quite "normal"
# so their influence on the t test is negligible
with(Blink,qqnorm(Straight-Oscillating))
with(Blink,qqline(Straight-Oscillating))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.