Learn R Programming

PairedData (version 1.1.1)

Meat: Meat data from Preece (1982, Table 4)

Description

This dataset presents 20 paired data corresponding to the percentage of fat in samples of meat using two different methods: AOAC and Babcock.

Usage

data(Meat)

Arguments

Format

A dataframe with 20 rows and 3 columns:

[,1] AOAC numeric percentage of fat
[,2] Babcock numeric percentage of fat
[,3] MeatType factor meat type

References

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.

Examples

Run this code
# NOT RUN {
data(Meat)

# Presence of clusters or...
with(Meat,plot(paired(AOAC,Babcock)))

# group effect according to Meat type?
with(Meat,plot(paired(AOAC,Babcock),group=MeatType))
with(Meat,plot(paired(AOAC,Babcock),group=MeatType,facet=FALSE))
# }

Run the code above in your browser using DataLab