-
Notifications
You must be signed in to change notification settings - Fork 2
/
schedule.html
994 lines (929 loc) · 28.1 KB
/
schedule.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>Schedule</title>
<script src="site_libs/jquery-1.11.3/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/paper.min.css" rel="stylesheet" />
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/default.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
pre:not([class]) {
background-color: white;
}
</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
<style type="text/css">
h1 {
font-size: 34px;
}
h1.title {
font-size: 38px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 12px;
}
.table th:not([align]) {
text-align: left;
}
</style>
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
background-color: rgba(0, 0, 0, 0.04);
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
</style>
<style type="text/css">
/* padding for bootstrap navbar */
body {
padding-top: 64px;
padding-bottom: 40px;
}
/* offset scroll position for anchor links (for fixed navbar) */
.section h1 {
padding-top: 69px;
margin-top: -69px;
}
.section h2 {
padding-top: 69px;
margin-top: -69px;
}
.section h3 {
padding-top: 69px;
margin-top: -69px;
}
.section h4 {
padding-top: 69px;
margin-top: -69px;
}
.section h5 {
padding-top: 69px;
margin-top: -69px;
}
.section h6 {
padding-top: 69px;
margin-top: -69px;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
border-radius: 6px 0 6px 6px;
}
</style>
<script>
// manage active state of menu based on current page
$(document).ready(function () {
// active menu anchor
href = window.location.pathname
href = href.substr(href.lastIndexOf('/') + 1)
if (href === "")
href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
// mark it active
menuAnchor.parent().addClass('active');
// if it's got a parent navbar menu mark it active as well
menuAnchor.closest('li.dropdown').addClass('active');
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
</head>
<body>
<div class="container-fluid main-container">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Stat 242</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="schedule.html">Schedule</a>
</li>
<li>
<a href="labs.html">Labs</a>
</li>
<li>
<a href="homework.html">Homework</a>
</li>
<li>
<a href="resources.html">Resources</a>
</li>
<li>
<a href="exams.html">Quizzes/Exams</a>
</li>
<li>
<a href="project.html">Project</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div class="fluid-row" id="header">
<h1 class="title toc-ignore">Schedule</h1>
</div>
<p><strong>Click on the text like “Week 1: Sep 02 – Sep 06” to expand or collapse the items we covered in that week.</strong></p>
<p>I will fill in more detail and provide links to lecture notes and labs as we go along. Items for future dates are tentative and subject to change.</p>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week1" aria-expanded="true" aria-controls="collapseOne"> Week 1: Sep 02 – Sep 06</a>
</h5>
</div>
<div id="week1" class="collapse">
<div class="panel-body">
<h4 id="wed-sep-04">Wed, Sep 04</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Overview of course and syllabus (syllabus linked to from main course website landing page)</li>
<li>Introductory activity/lab: <a href="materials/20190904_intro/foundations_inference.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Fill out this poll about when my office hours should be held: <a href="http://whenisgood.net/4gx9jzb">http://whenisgood.net/4gx9jzb</a></li>
<li>Sign up for our class at Piazza (anonymous question and answer forum): <a href="https://piazza.com/mtholyoke/fall2019/stat242">https://piazza.com/mtholyoke/fall2019/stat242</a></li>
<li>Read Chapter 1 of The Statistical Sleuth 3rd Edition.</li>
</ul></li>
</ul>
<h4 id="fri-sep-06">Fri, Sep 06</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Finish R lab on permutation tests</li>
<li>Review quizzes on material from Chapter 1 (possible quizzes and their solutions are posted on the Quizzes/Exams page on the course website)</li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Read Sections 2.1, 2.2, and 2.5 of The Statistical Sleuth 3rd Edition</li>
<li>Do optional Homework 0; I won’t be checking for completion but you should do this if you’re less comfortable with R.</li>
<li>Start on Homework 1; due Fri, Sep 13</li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week2" aria-expanded="true" aria-controls="collapseOne"> Week 2: Sep 09 – Sep 13</a>
</h5>
</div>
<div id="week2" class="collapse">
<div class="panel-body">
<h4 id="mon-sep-09">Mon, Sep 09</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz on material from Chapter 1</li>
<li>Review of t-based tests and confidence intervals:
<ul>
<li>Concepts overview: <a href="materials/20190909_t/t_summary.pdf">pdf</a></li>
<li>Examples (corrected version): <a href="materials/20190909_t/t.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Work on Homework 1; due Fri, Sep 13</li>
<li>Read Sections 2.3, 5.2, and 6.2 of The Statistical Sleuth 3rd Edition</li>
</ul></li>
</ul>
<h4 id="wed-sep-11">Wed, Sep 11</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz on material from Chapter 1</li>
<li>Lab about t-based inference</li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Work on Homework 1; due Fri, Sep 13</li>
<li>Read Sections 2.3, 5.2, and 6.2 of The Statistical Sleuth 3rd Edition</li>
</ul></li>
</ul>
<h4 id="fri-sep-13">Fri, Sep 13</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Overview of degrees of freedom: <a href="materials/20190913_anova/degrees_of_freedom.pdf">pdf</a>
<ul>
<li>All you really need to know is that the degrees of freedom is the sample size minus the number of parameters for means.</li>
</ul></li>
<li>ANOVA: <a href="materials/20190913_anova/anova_pairwise.pdf">pdf</a>
<ul>
<li>We only talked about the set up and plots</li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Work on Homework 2; due Fri, Sep 20</li>
<li>Read Sections 2.3, 5.2, and 6.2 of The Statistical Sleuth 3rd Edition</li>
<li>Review quizzes on material from Chapter 2 (possible quizzes and their solutions are posted on the Quizzes/Exams page on the course website)</li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week3" aria-expanded="true" aria-controls="collapseOne"> Week 3: Sep 16 – Sep 20</a>
</h5>
</div>
<div id="week3" class="collapse">
<div class="panel-body">
<h4 id="mon-sep-16">Mon, Sep 16</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz on material from Chapter 2</li>
<li>Continue ANOVA:
<ul>
<li>Based on the handout from Fri, Sep 13:
<ul>
<li>Discuss formulating hypothesis tests in terms of the means <span class="math inline">\(\mu_1, \mu_2, \ldots, \mu_I\)</span> for each group.</li>
<li>Discuss using <code>fit.contrasts</code> to conduct the test or find a confidence interval</li>
</ul></li>
<li>Discuss another way of setting up the ANOVA model in terms of <span class="math inline">\(\beta\)</span>’s: <a href="materials/20190916_lm_summary/lm_summary.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Work on Homework 2; due Fri, Sep 20</li>
<li>Read Sections 2.3, 5.2, and 6.2 of The Statistical Sleuth 3rd Edition</li>
</ul></li>
</ul>
<h4 id="wed-sep-18">Wed, Sep 18</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz on material from Chapter 1 or Chapter 2</li>
<li>More on <span class="math inline">\(t\)</span> tests for ANOVA. No new handouts.</li>
<li>We developed a set of solutions to all the questions we asked related to stuff in Lab 2: <a href="https://github.com/mhc-stat242-f2019/Lab2-solutions.git">https://github.com/mhc-stat242-f2019/Lab2-solutions.git</a></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Work on Homework 2; due Fri, Sep 20</li>
<li>Read Sections 2.3, 5.2, and 6.2 of The Statistical Sleuth 3rd Edition</li>
</ul></li>
</ul>
<h4 id="fri-sep-20">Fri, Sep 20</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Concepts behind t-based inference and F tests for ANOVA: <a href="materials/20190920_anova_t_F/20190920_anova_t_F.pdf">pdf</a></li>
<li>R code for F tests for ANOVA: <a href="materials/20190920_anova_t_F/anova_F_R_code.pdf">pdf</a> (note: this is a first look at this that we will expand on next class)</li>
<li>Lab 3: <a href="https://github.com/mhc-stat242-f2019/Lab3.git">https://github.com/mhc-stat242-f2019/Lab3.git</a></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Review all quizzes!</li>
<li>Work on Homework 3; due Fri, Sep 27. Will be assigned by Saturday.</li>
<li>Read Sections 5.3 and 5.4 of The Statistical Sleuth 3rd Edition</li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week4" aria-expanded="true" aria-controls="collapseOne"> Week 4: Sep 23 – Sep 27</a>
</h5>
</div>
<div id="week4" class="collapse">
<div class="panel-body">
<h4 id="mon-sep-23">Mon, Sep 23</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz on Sections 5.2 and 6.2</li>
<li>More on F tests for ANOVA models.
<ul>
<li>slides illustrating how p-value calculations for F tests work: <a href="materials/20190923_F/F_Test_p-values.pdf">pdf</a></li>
<li>p-values for nested models: <a href="materials/20190923_F/anova_F.pdf">pdf</a></li>
<li>Finish Lab 3</li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Read Sections 6.3, 6.4.3, and the paragraph headed “Bonferroni” in 6.4.4.</li>
</ul></li>
</ul>
<h4 id="wed-sep-25">Wed, Sep 25</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz on any material up through Sections 5.2 and 6.2</li>
<li>Multiple comparisons.
<ul>
<li>Concepts: <a href="materials/20190925_multiple_comparisons/Concepts_multiple_comparisons.pdf">pdf</a></li>
<li>R: <a href="materials/20190925_multiple_comparisons/R_multiple_comparisons.pdf">pdf</a></li>
</ul></li>
<li>Lab 4: <a href="https://github.com/mhc-stat242-f2019/Lab4.git" class="uri">https://github.com/mhc-stat242-f2019/Lab4.git</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-sep-27">Fri, Sep 27</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Multiple Comparisons:
<ul>
<li>Lab 5: <a href="https://github.com/mhc-stat242-f2019/Lab5.git" class="uri">https://github.com/mhc-stat242-f2019/Lab5.git</a> (does not need to be submitted)</li>
<li>Finish Lab 4</li>
</ul></li>
<li>Review quizzes on F tests and multiple comparisons.</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week5" aria-expanded="true" aria-controls="collapseOne"> Week 5: Sep 30 – Oct 04</a>
</h5>
</div>
<div id="week5" class="collapse">
<div class="panel-body">
<h4 id="mon-sep-30">Mon, Sep 30</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Conditions for t and F based inference with the ANOVA model. <a href="materials/20190930_conditions/anova_conditions.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-oct-02">Wed, Oct 02</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Transformations for ANOVA models.
<ul>
<li>Concepts: <a href="materials/20190930_conditions/concepts_anova_transformations.pdf">pdf</a></li>
<li>Examples with R code: <a href="materials/20190930_conditions/example_anova_transformations.pdf">pdf</a></li>
<li>If time, Lab 6: <a href="https://github.com/mhc-stat242-f2019/Lab6.git" class="uri">https://github.com/mhc-stat242-f2019/Lab6.git</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-oct-04">Fri, Oct 04</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Time to work on Lab 6</li>
<li>Review quizzes on conditions for ANOVA</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week6" aria-expanded="true" aria-controls="collapseOne"> Week 6: Oct 07 – Oct 11</a>
</h5>
</div>
<div id="week6" class="collapse">
<div class="panel-body">
<h4 id="mon-oct-07">Mon, Oct 07</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Simple Linear Regression:
<ul>
<li>Concepts: <a href="materials/20191004_SLR/20191004_slr.pdf">pdf</a></li>
<li>R code and examples: <a href="materials/20191004_SLR/20191004_slr_examples.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-oct-09">Wed, Oct 09</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Midterm!</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-oct-11">Fri, Oct 11</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Alternative approaches to inference; bootstrap</li>
<li>Confidence intervals for the mean for simple linear regression:
<ul>
<li>Lecture notes: <a href="materials/20191011_mean_CI/lecture_notes.pdf">pdf</a></li>
<li>R code and examples: <a href="materials/20191011_mean_CI/20191011_mean_CI.pdf">pdf</a></li>
<li>Lab 7: <a href="https://github.com/mhc-stat242-f2019/Lab7.git" class="uri">https://github.com/mhc-stat242-f2019/Lab7.git</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:
<ul>
<li>Have a great break!</li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week7" aria-expanded="true" aria-controls="collapseOne"> Week 7: Oct 14 – Oct 18</a>
</h5>
</div>
<div id="week7" class="collapse">
<div class="panel-body">
<h4 id="mon-oct-14">Mon, Oct 14</h4>
<ul>
<li><strong>No Class</strong>: Midsemester Break. Safe travels!</li>
</ul>
<h4 id="wed-oct-16">Wed, Oct 16</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li><strong>No Quiz</strong></li>
<li>Residuals and Prediction Intervals for Simple Linear Regression: <a href="materials/20191016_SLR_residuals/20191016_residuals.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-oct-18">Fri, Oct 18</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Conditions and Transformations for Simple Linear Regression: <a href="materials/20191018_SLR_conditions_transformations/20181018_Transformations.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week8" aria-expanded="true" aria-controls="collapseOne"> Week 8: Oct 21 – Oct 25</a>
</h5>
</div>
<div id="week8" class="collapse">
<div class="panel-body">
<h4 id="mon-oct-21">Mon, Oct 21</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz</li>
<li>Miscellaneous topics from simple linear regression: <a href="materials/20191021_more_slr_conditions/slr_conditions_misc.pdf">pdf</a></li>
<li>Start Lab 9</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-oct-23">Wed, Oct 23</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz</li>
<li>Work on Lab 9</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-oct-25">Fri, Oct 25</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quadratic Regression: <a href="materials/20191025_quadratic_reg/20191025_quadratic_reg.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week9" aria-expanded="true" aria-controls="collapseOne"> Week 9: Oct 28 – Nov 01</a>
</h5>
</div>
<div id="week9" class="collapse in">
<div class="panel-body">
<h4 id="mon-oct-28">Mon, Oct 28</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz</li>
<li>Regression with both a quantitative and a categorical explanatory variable: <a href="materials/20191028_two_lines/20191028_two_lines.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-oct-30">Wed, Oct 30</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz</li>
<li>Regression with both a quantitative and a categorical explanatory variable: <a href="materials/20191030_gt2_categories/20191030_gt2_categories.pdf">pdf</a></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-nov-01">Fri, Nov 01</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Lab 11</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week10" aria-expanded="true" aria-controls="collapseOne"> Week 10: Nov 04 – Nov 08</a>
</h5>
</div>
<div id="week10" class="collapse in">
<div class="panel-body">
<h4 id="mon-nov-04">Mon, Nov 04</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Two-way ANOVA:
<ul>
<li>hand out: <a href="materials/20191104_2_way_anova/20191104_2_way_anova.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-nov-06">Wed, Nov 06</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Two-way ANOVA, continuing hand out from last class</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-nov-08">Fri, Nov 08</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Lab 12, on 2-way anova</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week11" aria-expanded="true" aria-controls="collapseOne"> Week 11: Nov 11 – Nov 15</a>
</h5>
</div>
<div id="week11" class="collapse in">
<div class="panel-body">
<h4 id="mon-nov-11">Mon, Nov 11</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Overview of Lab 12 solutions</li>
<li>Quiz</li>
<li>Diagnostics for outliers and high leverage observations: <a href="materials/20191111_regression_diagnostics/20191111_residual_diagnostics.pdf">pdf</a></li>
<li>Start on multiple regression: <a href="materials/20191111_regression_diagnostics/20191111_mult_reg.pdf">pdf</a></li>
<li>If time, worksheet on multiple regression and diagnostics? <a href="materials/20191111_regression_diagnostics/worksheet_multiple_reg.pdf">pdf</a></li>
<li>Overview of projects</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-nov-13">Wed, Nov 13</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Quiz</li>
<li>Multiple Regression, added variable plots:
<ul>
<li><a href="materials/20191113_multicollinearity_added_variables/20191115_multicollinearity_added_variables.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-nov-15">Fri, Nov 15</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Multiple Regression
<ul>
<li><a href="materials/20191113_multicollinearity_added_variables/20191115_variable_selection.pdf">pdf</a></li>
<li>The original article in case you’re curious: <a href="materials/20191113_multicollinearity_added_variables/Ericksen.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week12" aria-expanded="true" aria-controls="collapseOne"> Week 12: Nov 18 – Nov 22</a>
</h5>
</div>
<div id="week12" class="collapse in">
<div class="panel-body">
<h4 id="mon-nov-18">Mon, Nov 18</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Multiple Regression
<ul>
<li>worksheet: <a href="materials/20191118_var_selection/worksheet_multiple_reg_var_selection.pdf">pdf</a></li>
<li>See also lab on variable selection</li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-nov-20">Wed, Nov 20</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Review</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-nov-22">Fri, Nov 22</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Logistic Regression
<ul>
<li>lecture notes: <a href="materials/20191122_logistic/lecture_notes.pdf">pdf</a></li>
<li>hand out: <a href="materials/20191122_logistic/20191122_logistic_reg.pdf">pdf</a></li>
</ul></li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week13" aria-expanded="true" aria-controls="collapseOne"> Week 13: Nov 25 – Nov 29</a>
</h5>
</div>
<div id="week13" class="collapse in">
<div class="panel-body">
<h4 id="mon-nov-25">Mon, Nov 25</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Midterm 2</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-nov-27">Wed, Nov 27</h4>
<ul>
<li><strong>No Class</strong>: Thanksgiving Break. Safe travels!</li>
</ul>
<h4 id="fri-nov-29">Fri, Nov 29</h4>
<ul>
<li><strong>No Class</strong>: Thanksgiving Break. Safe travels!</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week14" aria-expanded="true" aria-controls="collapseOne"> Week 14: Dec 02 – Dec 06</a>
</h5>
</div>
<div id="week14" class="collapse in">
<div class="panel-body">
<h4 id="mon-dec-02">Mon, Dec 02</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Logistic regression</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="wed-dec-04">Wed, Dec 04</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li><strong>Evan is away at a conference.</strong></li>
<li>Time to work on your projects in groups.</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
<h4 id="fri-dec-06">Fri, Dec 06</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li><strong>Evan is away at a conference.</strong></li>
<li>Time to work on your projects in groups.</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#week15" aria-expanded="true" aria-controls="collapseOne"> Week 15: Dec 09 – Dec 13</a>
</h5>
</div>
<div id="week15" class="collapse in">
<div class="panel-body">
<h4 id="mon-dec-09">Mon, Dec 09</h4>
<ul>
<li><strong>In class</strong>, we will work on:
<ul>
<li>Something?</li>
</ul></li>
<li><strong>After class</strong>, please:</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div id="headingOne" class="panel-heading" role="tab">
<h5 class="mb-0">
<a data-toggle="collapse" href="#finals" aria-expanded="true" aria-controls="collapseOne"> Final Exams: Dec 16 – Dec 20</a>
</h5>
</div>
<div id="finals" class="collapse in">
<div class="panel-body">
<p>We will have a cumulative final exam.</p>
</div>
</div>
</div>
</div>
<script>
// add bootstrap table styles to pandoc tables
function bootstrapStylePandocTables() {
$('tr.header').parent('thead').parent('table').addClass('table table-condensed');
}
$(document).ready(function () {
bootstrapStylePandocTables();
});
</script>
<!-- tabsets -->
<script>
$(document).ready(function () {
window.buildTabsets("TOC");
});
$(document).ready(function () {
$('.tabset-dropdown > .nav-tabs > li').click(function () {
$(this).parent().toggleClass('nav-tabs-open')
});
});
</script>
<!-- code folding -->
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
</body>
</html>