-
Notifications
You must be signed in to change notification settings - Fork 0
/
sampling_variability.html
1691 lines (1658 loc) · 89.8 KB
/
sampling_variability.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>14 On Variability in Sampling – 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="./monte_carlo.html" rel="next">
<link href="./probability_theory_4_finite.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>
<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="./sampling_variability.html"><span class="chapter-number">14</span> <span class="chapter-title">On Variability in Sampling</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">R 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 R 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 active">
<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">
<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="#variability-and-small-samples" id="toc-variability-and-small-samples" class="nav-link active" data-scroll-target="#variability-and-small-samples"><span class="header-section-number">14.1</span> Variability and small samples</a></li>
<li><a href="#regression-to-the-mean" id="toc-regression-to-the-mean" class="nav-link" data-scroll-target="#regression-to-the-mean"><span class="header-section-number">14.2</span> Regression to the mean</a></li>
<li><a href="#summary-and-conclusion" id="toc-summary-and-conclusion" class="nav-link" data-scroll-target="#summary-and-conclusion"><span class="header-section-number">14.3</span> Summary and conclusion</a></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-sampling-variability" class="quarto-section-identifier"><span class="chapter-number">14</span> <span class="chapter-title">On Variability in Sampling</span></span></h1>
</div>
<div class="quarto-title-meta">
</div>
</header>
<blockquote class="blockquote">
<p>[Debra said]: “I’ve had such good luck with Japanese cars and poor luck with American...”</p>
</blockquote>
<blockquote class="blockquote">
<p>The ’65 Ford Mustang: “It was fun, but I had to put two new transmissions in it.”</p>
</blockquote>
<blockquote class="blockquote">
<p>The Ford Torino: “That got two transmissions too. That finished me with Ford.”</p>
</blockquote>
<blockquote class="blockquote">
<p>The Plymouth Horizon: “The disaster of all disasters. That should’ve been painted bright yellow. What a lemon.”</p>
</blockquote>
<p>(From <em>Washington Post Magazine</em>, May 17, 1992, p. 19)</p>
<p>Do the quotes above convince you that Japanese cars are better than American? Has Debra got enough evidence to reach the conclusion she now holds? That sort of question, and the reasoning we use to address it, is the subject of this chapter.</p>
<p>More generally, how should one go about using the available data to test the hypothesis that Japanese cars are better? That is an example of the questions that are the subject of statistics.</p>
<section id="variability-and-small-samples" class="level2" data-number="14.1">
<h2 data-number="14.1" class="anchored" data-anchor-id="variability-and-small-samples"><span class="header-section-number">14.1</span> Variability and small samples</h2>
<p>Perhaps the most important idea for sound statistical inference — the section of the book we are now beginning, in contrast to problems in probability, which we have studied in the previous chapters — is recognition of the <em>presence of variability in the results of small samples</em>. The fatal error of relying on too-small samples is all too common among economic forecasters, journalists, and others who deal with trends and public opinion. Athletes, sports coaches, sportswriters, and fans too frequently disregard this principle both in their decisions and in their discussion.</p>
<p>Our intuitions often carry us far astray when the results vary from situation to situation — that is, when there is variability in outcomes — and when we have only a small sample of outcomes to look at.</p>
<p>To motivate the discussion, I’ll tell you something that almost no American sports fan will believe: There is no such thing as a slump in baseball batting. That is, a batter often goes an alarming number of at-bats without getting a hit, and everyone — the manager, the sportswriters, and the batter himself — assumes that something has changed, and the probability of the batter getting a hit is now lower than it was before the slump. It is common for the manager to replace the player for a while, and for the player and coaches to change the player’s hitting style so as to remedy the defect. But the chance of a given batter getting a hit is just the same after he has gone many at-bats without a hit as when he has been hitting well. A belief in slumps causes managers to play line-ups which may not be their best.</p>
<p>By “slump” I mean that a player’s probability of getting a hit in a given at-bat is lower during a period than during average periods. And when I say there is no such thing as a slump, I mean that the chances of getting a hit after any sequence of at-bats without a hit is <em>not</em> different than the long-run average.</p>
<p>The “hot hand” in basketball is another illusion. In practical terms, the hot hand does not exist — or rather — if it does, the effect is weak.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> The chance of a shooter scoring is more or less the same after they have just missed a flock of shots as when they have just sunk a long string. That is, the chance of scoring a basket is not appreciably higher after a run of successes than after a run of failures. But even professional teams choose plays on the basis of who supposedly has a hot hand.</p>
<p>Managers who substitute for the “slumping” or “cold-handed” players with other players who, in the long run, have lower batting averages, or set up plays for the shooter who supposedly has a hot hand, make a mistake. The supposed hot hand in basketball, and the slump in baseball, are illusions because the observed long runs of outs, or of baskets, are statistical artifacts, due to ordinary random variability. The identification of slumps and hot hands is superstitious behavior, classic cases of the assignment of pattern to a series of events when there really is no pattern.</p>
<p>How do statisticians ascertain that slumps and hot hands are very weak effects, or do not exist? In brief, in baseball we simulate a hitter with a given average — say .250 — and compare the results with actual hitters of that average, to see whether they have “slumps” longer than the computer. The method of investigation is roughly as follows. You program a computer or other machine to behave the way a player would, given the player’s long-run average, on the assumption that each trial is a random drawing. For example, if a player has a .250 season-long batting average, the machine is programmed like a bucket containing three black balls and one white ball. Then for each simulated at bat, the machine shuffles the “balls” and draws one; it then records whether the result is black or white, after which the ball is replaced in the bucket. To study a season with four hundred at-bats, a simulated ball is drawn four hundred times.</p>
<p>The records of the player’s real season and the simulated season are then compared. If there really is such a thing as a non-random slump or streak, there will be fewer but longer “runs” of hits or outs in the real record than in the simulated record. On the other hand, if performance is independent from at-bat trial to at-bat trial, the actual record will change from hit to out and from out to hit as often as does the random simulated record. I suggested this sort of test for the existence of slumps in my 1969 book that first set forth the resampling method, a predecessor of this book.</p>
<p>For example, <a href="#tbl-at-bats" class="quarto-xref">Table <span>14.1</span></a> shows the results of one 400 at-bat season for a simulated .250 hitter. (H = hit, O = out, sequential at-bats ordered vertically) Note the “slump” — 1 for 24 — in columns 7 & 8 (in bold).</p>
<div id="tbl-at-bats" 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-at-bats-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table 14.1: 400 simulated at-bats (ordered vertically)
</figcaption>
<div aria-describedby="tbl-at-bats-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<table class="caption-top table">
<tbody>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
</tr>
<tr class="odd">
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
</tr>
<tr class="even">
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>H</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
</tr>
<tr class="even">
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
</tr>
<tr class="odd">
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;"><strong>O</strong></td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">H</td>
<td style="text-align: left;">O</td>
<td style="text-align: left;">O</td>
</tr>
</tbody>
</table>
</div>
</figure>
</div>
<p>Harry Roberts investigated the batting records of a sample of major leaguers.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> He compared players’ season-long records against the behavior of random-number drawings. If slumps existed rather than being a fiction of the imagination, the real players’ records would shift from a string of hits to a string of outs less frequently than would the random-number sequences. But in fact the number of shifts, and the average lengths of strings of hits and outs, are on average the same for players as for player-simulating random-number devices.</p>
<p>Over long periods, averages may vary systematically, as Ty Cobb’s annual batting averages varied non-randomly from season to season, Roberts found. But in the short run, most individual and team performances have shown results similar to the outcomes that a lottery-type random number machine would produce.</p>
<p>Thomas Gilovich, Robert Vallone and Amos Twersky <span class="citation" data-cites="gilovich1985hot">(<a href="references.html#ref-gilovich1985hot" role="doc-biblioref">1985</a>)</span> performed a similar study of basketball shooting. They examined the records of shots from the floor by the Philadelphia 76’ers, foul shots by the Boston Celtics, and a shooting experiment of Cornell University teams. They found that “basketball players and fans alike tend to believe that a player’s chance of hitting a shot are greater following a hit than following a miss on the previous shot. However, detailed analyses…provided no evidence for a positive correlation between the outcomes of successive shots.”</p>
<p>To put their conclusion differently, knowing whether a shooter has scored or not scored on the previous shot — or in any previous sequence of shots — is of absolutely no use in predicting whether the shooter will or will not score on the next shot. Similarly, knowledge of the past series of at-bats in baseball does not improve a prediction of whether a batter will get a hit this time.</p>
<p>Of course a batter <em>feels</em> — and intensely — as if she or he has a better chance of getting a hit at some times than at other times. After a series of successful at-bats, both sandlot players and professionals feel confident that this time will be a hit, too. And after you have hit a bunch of baskets from all over the court, you feel as if you can’t miss.</p>
<p>But notice that card players get the same poignant feeling of being “hot” or “cold,” too. After a poker player “fills” several straights and flushes in a row, s/he feels s/he will hit the next one too. (Of course there are some players who feel just the opposite, that the “law of averages” is about to catch up with them.)</p>
<p>You will agree, I’m sure, that the cards don’t have any memory, and a player’s chance of filling a straight or flush remains the same no matter how he or she has done in the last series of hands. Clearly, then, a person can have a strong feeling that something is about to happen even when that feeling has no foundation. This supports the idea that even though a player in sports “feels” that s/he is in a slump or has a hot hand, this does not imply that the feeling has any basis in reality.</p>
<p>Why, when a batter is low in his/her mind because s/he has been making a lot of outs or for personal reasons, does her/ his batting not suffer? And why the opposite? Apparently at any given moment there are many influences operating upon a player’s performance in a variety of directions, with none of them clearly dominant. Hence there is no simple convincing explanation why a player gets a hit or an out, a basket or a miss, on any given attempt.</p>
<p>But though science cannot provide an explanation, the sports commentators always are ready to offer their analyses. Listen, for example, to how they tell you that Joe Zilch must have been trying extra hard <em>just because of</em> his slump. There is a sportswriter’s explanation for <em>anything</em> that happens.</p>
<p>Why do we believe the nonsense we hear about “momentum,” “comeback,” “she’s due this time,” and so on? The adult of the human species has a powerful propensity to believe that he or she can find a pattern even when there is no pattern to be found. Two decades ago I cooked up series of numbers with a random-number machine that looked as if they were prices on the stock market. Subjects in the experiment were told to buy and sell whichever stocks they chose. Then I gave them “another day’s prices,” and asked them to buy and sell again. The subjects did all kinds of fancy figuring, using an incredible variety of assumptions — even though there was no way for the figuring to help them. That is, people sought patterns even though there was no reason to believe that there were any patterns to be found.</p>
<p>When I stopped the game before the ten buy-and-sell sessions the participants expected, people asked that the game continue. Then I would tell them that there was no basis for any patterns in the data. “Winning” or “losing” had no meaning. But the subjects demanded to continue anyway. They continued believing that they could find patterns even after I told them that the numbers were randomly looked up and not real stock prices.</p>
<p>The illusions in our thinking about sports have important counterparts in our thinking about such real-world phenomena as the climate, the stock market, and trends in the prices of raw materials such as mercury, copper and wheat. And private and public decisions made on the basis of faulty understanding of these real situations, caused by illusory thinking on the order of belief in slumps and hot hands, are often costly and sometimes disastrous.</p>
<p>An example of the belief that there are patterns when there are none: Systems for finding patterns in the stock market are peddled that have about the same reliability as advice from a racetrack tout — and millions buy them.</p>
<p>One of the scientific strands leading into research on variability was the body of studies that considers the behavior of stock prices as a “random walk.” That body of work asserts that a stock broker or chartist who claims to be able to find patterns in past price movements of stocks that will predict future movements should be listened to with about the same credulity as a racetrack tout or an astrologer. A second strand was the work in psychology in the last decade or two which has recognized that people’s estimates of uncertain events are systematically biased in a variety of interesting and knowable ways.</p>
<p>The U.S. government has made — and continues to make — blunders costing the public scores of billions of dollars, using slump-type fallacious reasoning about resources and energy. Forecasts are issued and policies are adopted based on the belief that a short-term increase in price constitutes a long-term trend. But the “experts” employed by the government to make such forecasts do no better on average than do private forecasters, and often the system of forecasting that they use is much more misleading than would be a random-number generating machine of the sort used in the baseball slump experiments.</p>
<p>Please look at the data in <a href="#fig-nile_height" class="quarto-xref">Figure <span>14.1</span></a> for the height of the Nile River over about half a century. Is it not natural to think that those data show a decline in the height of the river? One can imagine that if our modern communication technology existed then, the Cairo newspapers would have been calling for research to be done on the fall of the Nile, and the television anchors would have been warning the people to change their ways and use less water.</p>
<div class="cell" data-layout-align="center">
<div class="cell-output-display">
<div id="fig-nile_height" 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-nile_height-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="diagrams/nile_height.svg" 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-nile_height-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure 14.1: Height of the Nile River Over Half of a Century
</figcaption>
</figure>
</div>
</div>
</div>
<p>Let’s look at <a href="#fig-nile_long" class="quarto-xref">Figure <span>14.2</span></a> which represents the data over an even longer period. What now would you say about the height of the Nile? Clearly the “threat” was non-existent, and only appeared threatening because the time span represented by the data was too short. The point of this display is that looking at too-short a segment of experience frequently leads us into error. And “too short” may be as long as a century.</p>
<div id="fig-nile_long" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-nile_long-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="images/nile_levels.png" class="img-fluid figure-img">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-nile_long-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure 14.2: Variations in the height of Nile Flood in centimeters. The sloping line indicates the secular raising of the bed of the Nile by deposition of silt. From <span class="citation" data-cites="brooks1928periodicities">Brooks (<a href="references.html#ref-brooks1928periodicities" role="doc-biblioref">1928</a>)</span>
</figcaption>
</figure>
</div>
<p>Another example is the price of mercury, which is representative of all metals. <a href="#fig-mercury_prediction" class="quarto-xref">Figure <span>14.3</span></a> shows a forecast made in 1976 by natural-scientist Earl Cook <span class="citation" data-cites="cook1976limits">(<a href="references.html#ref-cook1976limits" role="doc-biblioref">1976</a>)</span>. He combined a then-recent upturn in prices with the notion that there is a finite amount of mercury on the earth’s surface, plus the mathematical charm of plotting a second-degree polynomial with the computer. <a href="#fig-mercury_reserves" class="quarto-xref">Figure <span>14.4</span></a> and <a href="#fig-mercury_price_indexes" class="quarto-xref">Figure <span>14.5</span></a> show how the forecast was almost immediately falsified, and the price continued its long-run decline.</p>
<div id="fig-mercury_prediction" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-mercury_prediction-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="images/mercury_prices.png" class="img-fluid figure-img">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-mercury_prediction-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure 14.3: The Price of Mercury from <span class="citation" data-cites="cook1976limits">Cook (<a href="references.html#ref-cook1976limits" role="doc-biblioref">1976</a>)</span>
</figcaption>
</figure>
</div>
<div class="cell" data-layout-align="center">