Learn R Programming

PairedData (version 1.1.1)

Shoulder: Shoulder flexibility in swimmers

Description

This dataset gives the flexibility for the right and left shoulders in 15 swimmers and 15 sedentary people.

Usage

data(Shoulder)

Arguments

Format

A dataframe with 30 rows and 4 columns.

[,1] Subject factor anonymous subjects
[,2] Group factor swimmer or control
[,3] Right numeric right shoulder flexibility (deg.)
[,4] Left numeric left shoulder flexibility (deg.)

References

Monteil, K., Taiar, R., Champely, S. and Martin, J. (2002) Competitive swimmers versus sedentary people: a predictive model based upon normal shoulders flexibility. Journal of Human Movement Studies, 43 , 17-34.

Examples

Run this code
# NOT RUN {
data(Shoulder)

# Is there some heteroscedasticity?
with(Shoulder,plot(paired(Left,Right)))

# Swimmers are indeed quite different
with(Shoulder,plot(paired(Right,Left),groups=Group))

# A first derived variable to compare the amplitude in flexibilty
with(Shoulder,boxplot(((Left+Right)/2)~Group,ylab="mean shoulder flexibility"))

# A second derived variable to study shoulder asymmetry
with(Shoulder,boxplot((abs(Left-Right))~Group,ylab="asymmetry in shoulder flexibility"))
# }

Run the code above in your browser using DataLab