Description Usage Format Source References Examples
This dataset presents 10 paired data corresponding to percentages of iron found in compounds with the help of two different methods (take a guess: A & B). It is quite intersting to study rounding effect on hypothesis test (have a look at the examples section).
1 |
A dataframe with 10 rows and 3 columns:
[,1] | Compound | factor | |
[,2] | Method_A | numeric | percentage of iron |
[,3] | Method_B | numeric | percentage of iron |
Chatfield, C. (1978) Statistics for Technology: A Course in Applied Statistics, 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 10 11 12 13 14 15 16 | data(Iron)
# Visualizing, very nice correlation
# Is this an agreement problem or a comparison problem?
with(Iron,plot(paired(Method_A,MethodB)))
# Significant... p=0.045
with(Iron,t.test(paired(Method_A,MethodB)))
# Looking at data, rounded at 0.1 so they can be +0.05 or -0.05
show(Iron)
# Thus the differences can be +0.1 or -0.1
# Influence of rounding on the t-statistic
with(Iron,t.test(Method_A-MethodB+0.1))
with(Iron,t.test(Method_A-MethodB-0.1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.