-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing_measured.html
3216 lines (3157 loc) · 197 KB
/
testing_measured.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.6.1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>24 The Statistics of Hypothesis-Testing With Measured Data – Resampling statistics</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
/* CSS for syntax highlighting */
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
}
pre.numberSource { margin-left: 3em; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
/* CSS for citations */
div.csl-bib-body { }
div.csl-entry {
clear: both;
margin-bottom: 0em;
}
.hanging-indent div.csl-entry {
margin-left:2em;
text-indent:-2em;
}
div.csl-left-margin {
min-width:2em;
float:left;
}
div.csl-right-inline {
margin-left:2em;
padding-left:1em;
}
div.csl-indent {
margin-left: 2em;
}</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./testing_procedures.html" rel="next">
<link href="./testing_counts_2.html" rel="prev">
<script src="site_libs/quarto-html/quarto.js"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "sidebar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "start",
"type": "textbox",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"show-item-context": false,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-text-placeholder": "",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<script type="text/javascript">
$(document).ready(function() {
$("table").addClass('lightable-paper lightable-striped lightable-hover')
});
</script>
<script src="site_libs/kePrint-0.0.1/kePrint.js"></script>
<link href="site_libs/lightable-0.0.1/lightable.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js" type="text/javascript"></script>
<script type="text/javascript">
const typesetMath = (el) => {
if (window.MathJax) {
// MathJax Typeset
window.MathJax.typeset([el]);
} else if (window.katex) {
// KaTeX Render
var mathElements = el.getElementsByClassName("math");
var macros = [];
for (var i = 0; i < mathElements.length; i++) {
var texText = mathElements[i].firstChild;
if (mathElements[i].tagName == "SPAN") {
window.katex.render(texText.data, mathElements[i], {
displayMode: mathElements[i].classList.contains('display'),
throwOnError: false,
macros: macros,
fleqn: false
});
}
}
}
}
window.Quarto = {
typesetMath
};
</script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="font-awesome.min.css">
</head>
<body class="nav-sidebar floating">
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="quarto-secondary-nav">
<div class="container-fluid d-flex">
<button type="button" class="quarto-btn-toggle btn" data-bs-toggle="collapse" role="button" data-bs-target=".quarto-sidebar-collapse-item" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<i class="bi bi-layout-text-sidebar-reverse"></i>
</button>
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="./testing_measured.html"><span class="chapter-number">24</span> <span class="chapter-title">The Statistics of Hypothesis-Testing With Measured Data</span></a></li></ol></nav>
<a class="flex-grow-1" role="navigation" data-bs-toggle="collapse" data-bs-target=".quarto-sidebar-collapse-item" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
<button type="button" class="btn quarto-search-button" aria-label="Search" onclick="window.quartoOpenSearch();">
<i class="bi bi-search"></i>
</button>
</div>
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article">
<!-- sidebar -->
<nav id="quarto-sidebar" class="sidebar collapse collapse-horizontal quarto-sidebar-collapse-item sidebar-navigation floating overflow-auto">
<div class="pt-lg-2 mt-2 text-left sidebar-header">
<div class="sidebar-title mb-0 py-0">
<a href="./">Resampling statistics</a>
</div>
</div>
<div class="mt-2 flex-shrink-0 align-items-center">
<div class="sidebar-search">
<div id="quarto-search" class="" title="Search"></div>
</div>
</div>
<div class="sidebar-menu-container">
<ul class="list-unstyled mt-1">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Python version</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./preface_third.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Preface to the third edition</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./preface_second.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Preface to the second edition</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./intro.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">1</span> <span class="chapter-title">Introduction</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./resampling_method.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">2</span> <span class="chapter-title">The resampling method</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./what_is_probability.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">3</span> <span class="chapter-title">What is probability?</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./about_technology.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">4</span> <span class="chapter-title">Introducing Python and the Jupyter notebook</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./resampling_with_code.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">5</span> <span class="chapter-title">Resampling with code</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./resampling_with_code2.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">6</span> <span class="chapter-title">More resampling with code</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./sampling_tools.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">7</span> <span class="chapter-title">Tools for samples and sampling</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./probability_theory_1a.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">8</span> <span class="chapter-title">Probability Theory, Part 1</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./probability_theory_1b.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">9</span> <span class="chapter-title">Probability Theory Part I (continued)</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./more_sampling_tools.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">10</span> <span class="chapter-title">Two puzzles and more tools</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./probability_theory_2_compound.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">11</span> <span class="chapter-title">Probability Theory, Part 2: Compound Probability</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./probability_theory_3.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">12</span> <span class="chapter-title">Probability Theory, Part 3</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./probability_theory_4_finite.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">13</span> <span class="chapter-title">Probability Theory, Part 4: Estimating Probabilities from Finite Universes</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./sampling_variability.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">14</span> <span class="chapter-title">On Variability in Sampling</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./monte_carlo.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">15</span> <span class="chapter-title">The Procedures of Monte Carlo Simulation (and Resampling)</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./standard_scores.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">16</span> <span class="chapter-title">Ranks, Quantiles and Standard Scores</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./inference_ideas.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">17</span> <span class="chapter-title">The Basic Ideas in Statistical Inference</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./inference_intro.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">18</span> <span class="chapter-title">Introduction to Statistical Inference</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./point_estimation.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">19</span> <span class="chapter-title">Point Estimation</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./framing_questions.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">20</span> <span class="chapter-title">Framing Statistical Questions</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./testing_counts_1.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">21</span> <span class="chapter-title">Hypothesis-Testing with Counted Data, Part 1</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./significance.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">22</span> <span class="chapter-title">The Concept of Statistical Significance in Testing Hypotheses</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./testing_counts_2.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">23</span> <span class="chapter-title">The Statistics of Hypothesis-Testing with Counted Data, Part 2</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./testing_measured.html" class="sidebar-item-text sidebar-link active">
<span class="menu-text"><span class="chapter-number">24</span> <span class="chapter-title">The Statistics of Hypothesis-Testing With Measured Data</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./testing_procedures.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">25</span> <span class="chapter-title">General Procedures for Testing Hypotheses</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./confidence_1.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">26</span> <span class="chapter-title">Confidence Intervals, Part 1: Assessing the Accuracy of Samples</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./confidence_2.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">27</span> <span class="chapter-title">Confidence Intervals, Part 2: The Two Approaches to Estimating Confidence Intervals</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./reliability_average.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">28</span> <span class="chapter-title">Some Last Words About the Reliability of Sample Averages</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./correlation_causation.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">29</span> <span class="chapter-title">Correlation and Causation</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./how_big_sample.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">30</span> <span class="chapter-title">How Large a Sample?</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./bayes_simulation.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">31</span> <span class="chapter-title">Bayesian Analysis by Simulation</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./references.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">References</span></a>
</div>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a class="sidebar-item-text sidebar-link text-start" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-1" role="navigation" aria-expanded="true">
<span class="menu-text">Appendices</span></a>
<a class="sidebar-item-toggle text-start" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-1" role="navigation" aria-expanded="true" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-1" class="collapse list-unstyled sidebar-section depth1 show">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./exercise_solutions.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">A</span> <span class="chapter-title">Exercise Solutions</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./technical_note.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">B</span> <span class="chapter-title">Technical Note to the Professional Reader</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./acknowlegements.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">C</span> <span class="chapter-title">Acknowledgements</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./code_topics.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">D</span> <span class="chapter-title">Code topics</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./errors_suggestions.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">E</span> <span class="chapter-title">Errors and suggestions</span></span></a>
</div>
</li>
</ul>
</li>
</ul>
</div>
</nav>
<div id="quarto-sidebar-glass" class="quarto-sidebar-collapse-item" data-bs-toggle="collapse" data-bs-target=".quarto-sidebar-collapse-item"></div>
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<nav id="TOC" role="doc-toc" class="toc-active">
<h2 id="toc-title">Table of contents</h2>
<ul>
<li><a href="#sec-pig-rations-measured" id="toc-sec-pig-rations-measured" class="nav-link active" data-scroll-target="#sec-pig-rations-measured"><span class="header-section-number">24.0.1</span> Example: The Pig Rations Still Once Again, Using Measured Data</a></li>
<li><a href="#sec-liquor-public-measured" id="toc-sec-liquor-public-measured" class="nav-link" data-scroll-target="#sec-liquor-public-measured"><span class="header-section-number">24.0.2</span> Example: Is There a Difference in Liquor Prices Between State-Run and Privately-Run Systems?</a></li>
<li><a href="#example-is-there-a-difference-between-treatments-to-prevent-low-birthweights" id="toc-example-is-there-a-difference-between-treatments-to-prevent-low-birthweights" class="nav-link" data-scroll-target="#example-is-there-a-difference-between-treatments-to-prevent-low-birthweights"><span class="header-section-number">24.0.3</span> Example: Is there a difference between treatments to prevent low birthweights?</a></li>
<li><a href="#sec-eg-bootstrap-sampling" id="toc-sec-eg-bootstrap-sampling" class="nav-link" data-scroll-target="#sec-eg-bootstrap-sampling"><span class="header-section-number">24.0.4</span> Example: Bootstrap Sampling with Replacement</a></li>
<li><a href="#example-permutation-sampling-without-replacement" id="toc-example-permutation-sampling-without-replacement" class="nav-link" data-scroll-target="#example-permutation-sampling-without-replacement"><span class="header-section-number">24.0.5</span> Example: Permutation Sampling Without Replacement</a></li>
<li><a href="#differences-among-four-means" id="toc-differences-among-four-means" class="nav-link" data-scroll-target="#differences-among-four-means"><span class="header-section-number">24.1</span> Differences among four means</a>
<ul class="collapse">
<li><a href="#example-differences-among-four-pig-rations" id="toc-example-differences-among-four-pig-rations" class="nav-link" data-scroll-target="#example-differences-among-four-pig-rations"><span class="header-section-number">24.1.1</span> Example: differences among four pig rations</a></li>
</ul></li>
<li><a href="#using-squared-differences" id="toc-using-squared-differences" class="nav-link" data-scroll-target="#using-squared-differences"><span class="header-section-number">24.2</span> Using Squared Differences</a></li>
<li><a href="#exercises" id="toc-exercises" class="nav-link" data-scroll-target="#exercises"><span class="header-section-number">24.3</span> Exercises</a>
<ul class="collapse">
<li><a href="#sec-exr-paired-differences" id="toc-sec-exr-paired-differences" class="nav-link" data-scroll-target="#sec-exr-paired-differences"><span class="header-section-number">24.3.1</span> Exercise: paired differences</a></li>
<li><a href="#sec-exr-seatbelt-proportions" id="toc-sec-exr-seatbelt-proportions" class="nav-link" data-scroll-target="#sec-exr-seatbelt-proportions"><span class="header-section-number">24.3.2</span> Exercise: seatbelt proportions</a></li>
</ul></li>
</ul>
</nav>
</div>
<!-- main -->
<main class="content" id="quarto-document-content">
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title"><span id="sec-testing-measured" class="quarto-section-identifier"><span class="chapter-number">24</span> <span class="chapter-title">The Statistics of Hypothesis-Testing With Measured Data</span></span></h1>
</div>
<div class="quarto-title-meta">
</div>
</header>
<!---
Discussion here of dispersion - have we discussed this before?
Methods of estimating dispersion.
-->
<p><a href="testing_counts_1.html" class="quarto-xref"><span>Chapter 21</span></a> and <a href="point_estimation.html" class="quarto-xref"><span>Chapter 19</span></a> discussed testing a hypothesis with data that either arrive in dichotomized (yes-no) form, or come as data in situations where it is convenient to dichotomize. We next consider hypothesis testing using measured data. Conventional statistical practice employs such devices as the “t-test” and “analysis of variance.” In contrast to those complex devices, the resampling method does not differ greatly from what has been discussed in previous chapters.</p>
<section id="sec-pig-rations-measured" class="level3" data-number="24.0.1">
<h3 data-number="24.0.1" class="anchored" data-anchor-id="sec-pig-rations-measured"><span class="header-section-number">24.0.1</span> Example: The Pig Rations Still Once Again, Using Measured Data</h3>
<p><strong>Testing for the difference between means of two equal-sized samples of measured-data observations</strong></p>
<p>Let us now treat the pig-food problem without converting the quantitative data into qualitative data, because a conversion always loses information.</p>
<p>The term “lose information” can be understood intuitively. Consider two sets of three sacks of corn. Set A includes sacks containing, respectively, one pound, two pounds, and three pounds. Set B includes sacks of one pound, two pounds, and a hundred pounds. If we <em>rank</em> the sacks by weight, the two sets can no longer be distinguished. The one-pound and two-pound sacks have ranks one and two in both cases, and their relative places in their sets are the same. But if we know <em>not only</em> that the one-pound sack is the smallest of its set and the three-pound or hundred-pound sack is the largest, but <em>also</em> that the largest sack is three pounds (or a hundred pounds), we have more information about a set than if we only know the ranks of its sacks.</p>
<p>Rank data are also known as “ordinal” data, whereas data measured in (say) pounds are known as “cardinal” data. Even though converting from cardinal (measured) to ordinal (ranked) data loses information, the conversion may increase convenience, and may therefore be worth doing in some cases.</p>
<p><a href="#tbl-pig-ab-rations" class="quarto-xref">Table <span>24.1</span></a> has the measured data for pig rations A and B.</p>
<div class="cell" data-layout-align="center">
<div class="cell-output-display">
<div id="tbl-pig-ab-rations" class="lightable-paper lightable-striped lightable-hover quarto-float quarto-figure quarto-figure-center anchored" style="font-family: "Arial Narrow", arial, helvetica, sans-serif; width: auto !important; margin-left: auto; margin-right: auto;" data-quarto-postprocess="true">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-pig-ab-rations-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table 24.1: Measured data for pig rations A and B
</figcaption>
<div aria-describedby="tbl-pig-ab-rations-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<table class="lightable-paper lightable-striped lightable-hover caption-top table table-sm table-striped small" data-quarto-postprocess="true">
<thead>
<tr class="header">
<th style="text-align: left;" data-quarto-table-cell-role="th">ration</th>
<th style="text-align: right;" data-quarto-table-cell-role="th">weight_gain</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">A</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="even">
<td style="text-align: left;">A</td>
<td style="text-align: right;">34</td>
</tr>
<tr class="odd">
<td style="text-align: left;">A</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="even">
<td style="text-align: left;">A</td>
<td style="text-align: right;">26</td>
</tr>
<tr class="odd">
<td style="text-align: left;">A</td>
<td style="text-align: right;">32</td>
</tr>
<tr class="even">
<td style="text-align: left;">A</td>
<td style="text-align: right;">35</td>
</tr>
<tr class="odd">
<td style="text-align: left;">A</td>
<td style="text-align: right;">38</td>
</tr>
<tr class="even">
<td style="text-align: left;">A</td>
<td style="text-align: right;">34</td>
</tr>
<tr class="odd">
<td style="text-align: left;">A</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="even">
<td style="text-align: left;">A</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="odd">
<td style="text-align: left;">A</td>
<td style="text-align: right;">32</td>
</tr>
<tr class="even">
<td style="text-align: left;">A</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="odd">
<td style="text-align: left;">B</td>
<td style="text-align: right;">26</td>
</tr>
<tr class="even">
<td style="text-align: left;">B</td>
<td style="text-align: right;">24</td>
</tr>
<tr class="odd">
<td style="text-align: left;">B</td>
<td style="text-align: right;">28</td>
</tr>
<tr class="even">
<td style="text-align: left;">B</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="odd">
<td style="text-align: left;">B</td>
<td style="text-align: right;">30</td>
</tr>
<tr class="even">
<td style="text-align: left;">B</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="odd">
<td style="text-align: left;">B</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="even">
<td style="text-align: left;">B</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="odd">
<td style="text-align: left;">B</td>
<td style="text-align: right;">32</td>
</tr>
<tr class="even">
<td style="text-align: left;">B</td>
<td style="text-align: right;">26</td>
</tr>
<tr class="odd">
<td style="text-align: left;">B</td>
<td style="text-align: right;">28</td>
</tr>
<tr class="even">
<td style="text-align: left;">B</td>
<td style="text-align: right;">32</td>
</tr>
</tbody>
</table>
</div>
</figure>
</div>
</div>
</div>
<p>We begin a measured-data procedure by noting that if the two pig foods are the same, then each of the observed weight gains came from the <em>same benchmark universe</em>. This is the basic tactic in our statistical strategy. That is, if the two foods came from the same universe, <em>our best guess about the composition of that universe is that it includes weight gains just like the twenty-four we have observed</em>, and in the same proportions, because that is all the information that we have about the universe; this is the bootstrap method. Since ours is (by definition) a sample from an infinite (or at least, a very large) universe of possible weight gains, we assume that there are <em>many</em> weight gains in the universe just like the ones we have observed, in the same proportion as we have observed them. For example, we assume that 2/24 of the universe is composed of 34-pound weight gains, as seen in <a href="#fig-rations-hist" class="quarto-xref">Figure <span>24.1</span></a>:</p>
<div class="cell" data-layout-align="center">
<div class="cell-output-display">
<div id="fig-rations-hist" class="quarto-float quarto-figure quarto-figure-center anchored" data-fig-align="center">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-rations-hist-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="testing_measured_files/figure-html/fig-rations-hist-1.png" class="img-fluid quarto-figure quarto-figure-center figure-img" style="width:70.0%">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-rations-hist-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure 24.1: Histogram of weight gain
</figcaption>
</figure>
</div>
</div>
</div>
<p>We recognize, of course, that weight gains other than the exact ones we observed certainly would occur in repeated experiments. And if we thought it reasonable to do so, we could assume that the “distribution” of the weight gains would follow a regular “smooth” shape such as <a href="#fig-rations-ideal" class="quarto-xref">Figure <span>24.2</span></a>. But deciding just how to draw <a href="#fig-rations-ideal" class="quarto-xref">Figure <span>24.2</span></a> from the data in <a href="#fig-rations-hist" class="quarto-xref">Figure <span>24.1</span></a> requires that we make arbitrary assumptions about unknown conditions. And if we were to draw <a href="#fig-rations-ideal" class="quarto-xref">Figure <span>24.2</span></a> in a form that would be sufficiently regular for conventional mathematical analysis, we might have to make some <em>very strong</em> assumptions going far beyond the observed data.</p>
<div class="cell" data-layout-align="center">
<div class="cell-output-display">
<div id="fig-rations-ideal" class="quarto-float quarto-figure quarto-figure-center anchored" data-fig-align="center">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-rations-ideal-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="testing_measured_files/figure-html/fig-rations-ideal-1.png" class="img-fluid quarto-figure quarto-figure-center figure-img" style="width:70.0%">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-rations-ideal-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure 24.2: Idealized distribution for weight gain
</figcaption>
</figure>
</div>
</div>
</div>
<p>Drawing a smooth curve such as <a href="#fig-rations-ideal" class="quarto-xref">Figure <span>24.2</span></a> from the raw data in <a href="#fig-rations-hist" class="quarto-xref">Figure <span>24.1</span></a> might be satisfactory — if done with wisdom and good judgment. But there is no necessity to draw such a smooth curve, in this case or in most cases. We can proceed by assuming simply that the benchmark universe — the universe to which we shall compare our samples, conventionally called the “null” or “hypothetical” universe — is composed only of elements similar to the observations we have in hand. We thereby lose no efficiency and avoid making unsound assumptions.</p>
<p>To carry out our procedure in practice: 1) Write down each of the twenty-four weight gains on a blank index card. We then have one card each for 31, 34, 29, 26, and so on. 2) Shuffle the twenty-four cards thoroughly, and pick one card. 3) Record the weight gain, and replace the card. (Recall that we are treating the weight gains as if they come from an infinite universe — that is, as if the probability of selecting any amount is the same no matter which others are selected randomly. Another way to say this is to state that each selection is independent of each other selection. If we did not replace the card before selecting the next weight gain, the selections would no longer be independent. See <a href="probability_theory_2_compound.html" class="quarto-xref"><span>Chapter 11</span></a> for further discussion of this issue.) 4) Repeat this process until you have made two sets of 12 observations. 5) Call the first hand “food A” and the second hand “food B.” Determine the average weight gain for the two hands, and record it as in <a href="#tbl-eg-pigs-measured" class="quarto-xref">Table <span>24.2</span></a>. Repeat this procedure many times.</p>
<p>In operational steps:</p>
<ul>
<li><strong>Step 1.</strong> Write down each observed weight gain on a card, e.g. 31, 34, 29 …</li>
<li><strong>Step 2.</strong> Shuffle and deal a card.</li>
<li><strong>Step 3.</strong> Record the weight and replace the card.</li>
<li><strong>Step 4.</strong> Repeat steps 2 and 3 eleven more times; call this group A.</li>
<li><strong>Step 5.</strong> Repeat steps 2-3 another twelve times; call this group B.</li>
<li><strong>Step 6.</strong> Calculate the mean weight gain of each group.</li>
<li><strong>Step 7.</strong> Subtract the mean of group A from the mean of group B and record. If larger (more positive) than 3.16 (the difference between the observed means) or more negative than -3.16, record “more.” Otherwise record “less.”</li>
<li><strong>Step 8.</strong> Repeat this procedure perhaps fifty times, and calculate the proportion “more.” This estimates the probability sought.</li>
</ul>
<p>In none of the first ten simulated trials did the difference in the means of the random hands exceed the observed difference (3.16 pounds, in the top line in the table) between foods A and B. (The difference between group <em>totals</em> tells the same story and is faster, requiring no division calculations.)</p>
<p>In the old days before a computer was easily available, I (JLS) would quit making trials at such a point, confident that a difference in means as great as observed is not likely to happen by chance. (Using the convenient “multiplication rule” described in <a href="probability_theory_1b.html" class="quarto-xref"><span>Chapter 9</span></a>, we can estimate the probability of such an occurrence happening by chance in 10 successive trials as <span class="math inline">\(\frac{1}{2} * \frac{1}{2} * \frac{1}{2} ... = \frac{1}{2}^{10} = 1/1024
\approx .001\)</span> = .1 percent, a small chance indeed.) Nevertheless, let us press on to do 50 trials.</p>
<div id="tbl-eg-pigs-measured" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-eg-pigs-measured-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table 24.2: Results of fifty random samples for measured pig rations
</figcaption>
<div aria-describedby="tbl-eg-pigs-measured-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<table class="caption-top table">
<colgroup>
<col style="width: 16%">
<col style="width: 18%">
<col style="width: 18%">
<col style="width: 1%">
<col style="width: 17%">
<col style="width: 1%">
<col style="width: 17%">
<col style="width: 1%">
</colgroup>
<thead>
<tr class="header">
<th>Trial #</th>
<th>Mean of first 12 observations (first hand)</th>
<th colspan="2">Mean of second 12 observations (second hand)</th>
<th colspan="2">Difference</th>
<th colspan="2">Greater or less than observed difference?</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Observed</td>
<td>382 / 12=31.83</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="even">
<td>1</td>
<td>368 / 12=30.67</td>
<td>357 / 12=29.75</td>
<td colspan="2">.87</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>2</td>
<td>364 / 12=30.33</td>
<td>361 / 12=30.08</td>
<td colspan="2">.25</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>3</td>
<td>352 / 12=29.33</td>
<td>373 / 12=31.08</td>
<td colspan="2">(1.75)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>4</td>
<td>378 / 12=31.50</td>
<td>347 / 12=28.92</td>
<td colspan="2">2.58</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>5</td>
<td>365 / 12=30.42</td>
<td>360 / 12=30.00</td>
<td colspan="2">.42</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>6</td>
<td>352 / 12=29.33</td>
<td>373 / 12=31.08</td>
<td colspan="2">(1.75)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>7</td>
<td>355 / 12=29.58</td>
<td>370 / 12=30.83</td>
<td colspan="2">(1.25)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>8</td>
<td>366 / 12=30.50</td>
<td>359 / 12=29.92</td>
<td colspan="2">.58</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>9</td>
<td>360 / 12=30.00</td>
<td>365 / 12=30.42</td>
<td colspan="2">(.42)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>10</td>
<td>355 / 12=29.58</td>
<td>370 / 12=30.83</td>
<td colspan="2">(1.25)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>11</td>
<td>359 / 12=29.92</td>
<td>366 / 12=30.50</td>
<td colspan="2">(.58)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>12</td>
<td>369 / 12=30.75</td>
<td>356 / 12=29.67</td>
<td colspan="2">1.08</td>
<td colspan="2">”</td>
<td></td>
</tr>
<tr class="even">
<td>13</td>
<td>360 / 12=30.00</td>
<td>365 / 12=30.42</td>
<td colspan="2">(.42)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>14</td>
<td>377 / 12=31.42</td>
<td>348 / 12=29.00</td>
<td colspan="2">2.42</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>15</td>
<td>365 / 12=30.42</td>
<td>360 / 12=30.00</td>
<td colspan="2">.42</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>16</td>
<td>364 / 12=30.33</td>
<td>361 / 12=30.08</td>
<td colspan="2">.25</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>17</td>
<td>363 / 12=30.25</td>
<td>362 / 12=30.17</td>
<td colspan="2">.08</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>18</td>
<td>365 / 12=30.42</td>
<td>360 / 12=30.00</td>
<td colspan="2">.42</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>19</td>
<td>369 / 12=30.75</td>
<td>356 / 12=29.67</td>
<td colspan="2">1.08</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>20</td>
<td>369 / 12=30.75</td>
<td>356 / 12=29.67</td>
<td colspan="2">1.08</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>21</td>
<td>369 / 12=30.75</td>
<td>356 / 12=29.67</td>
<td colspan="2">1.08</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>22</td>
<td>364 / 12=30.33</td>
<td>361 / 12=30.08</td>
<td colspan="2">.25</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>23</td>
<td>363 / 12=30.25</td>
<td>362 / 12=30.17</td>
<td colspan="2">.08</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>24</td>
<td>363 / 12=30.25</td>
<td>362 / 12=30.17</td>
<td colspan="2">.08</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>25</td>
<td>364 / 12=30.33</td>
<td>361 / 12=30.08</td>
<td colspan="2">.25</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>26</td>
<td>359 / 12=29.92</td>
<td>366 / 12=30.50</td>
<td colspan="2">(.58)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>27</td>
<td>362 / 12=30.17</td>
<td>363 / 12=30.25</td>
<td colspan="2">(.08)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>28</td>
<td>362 / 12=30.17</td>
<td>363 / 12=30.25</td>
<td colspan="2">(.08)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>29</td>
<td>373 / 12=31.08</td>
<td>352 / 12=29.33</td>
<td colspan="2">1.75</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>30</td>
<td>367 / 12=30.58</td>
<td>358 / 12=29.83</td>
<td colspan="2">.75</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>31</td>
<td>376 / 12=31.33</td>
<td>349 / 12=29.08</td>
<td colspan="2">2.25</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>32</td>
<td>365 / 12=30.42</td>
<td>360 / 12=30.00</td>
<td colspan="2">.42</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>33</td>
<td>357 / 12=29.75</td>
<td>368 / 12=30.67</td>
<td colspan="2">(1.42)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>34</td>
<td>349 / 12=29.08</td>
<td>376 / 12=31.33</td>
<td colspan="2">2.25</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="even">
<td>35</td>
<td>356 / 12=29.67</td>
<td>396 / 12=30.75</td>
<td colspan="2">(1.08)</td>
<td colspan="2">Less</td>
<td></td>
</tr>
<tr class="odd">
<td>36</td>