-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
1586 lines (1554 loc) · 78.3 KB
/
index.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 lang="en">
<head>
<title>Data 8</title>
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="./theme/css/main.css" />
</head>
<body id="index" class="home">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./">
Data 8 Summer 2018
</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="./faq.html">FAQ</a></li>
<li><a href="./office-hours.html">Office Hours</a></li>
<li><a href="./policies.html">Policies</a></li>
<li><a href="./schedule.html">Schedule</a></li>
<li><a href="./staff.html">Staff</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Resources <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./materials.html">Materials</a></li>
<li><a href="./python-reference.html">Python Reference</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Links <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="http://data8.org/connector/">Connectors</a></li>
<li><a href="http://datahub.berkeley.edu/">DataHub</a></li>
<li><a href="http://data8.org/datascience/">Datascience Docs</a></li>
<li><a href="">Feedback</a></li>
<li><a href="https://piazza.com/berkeley/summer2018/data8">Piazza</a></li>
<li><a href="http://data.berkeley.edu">Berkeley Division of Data Sciences</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<section id="content">
<h2>Announcements</h2>
<div id="announcements">
<div class="announcement" id='announcement-0'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Fri 03 August 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 3 and Homework 12 are out! Please work on them. They are your last assignments for this course due tomorrow.</li>
<li>Final exam information and next weeks schedule out on piazza soon.</li>
</ul>
<p>Other logistics:</p>
<ul>
<li>Our course tutors have released a worksheet on exam-level programming practice problems on Piazza. Feel free to use this as a way to refine your programming skills in time for the final.</li>
<li>Grades for more assignments are out -- check Piazza for more details. </li>
<li>Remember to submit regrade requests for your homeworks. We will be closing regrades before the final exam.</li>
<li>Final exam details will come out in a Piazza post on Friday -- past exams are already available on the course website and are your best resource to prepare!</li>
</ul>
</div>
<div class="announcement" id='announcement-1'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Thu 02 August 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 3 and Homework 12 are out! Please work on them. They are your last assignments for this course due Saturday</li>
<li>Final exam information and next weeks schedule out tomorrow.</li>
<li>Come to tomorrow's lecture! Will be given by both instructors. </li>
</ul>
<p>Other logistics:</p>
<ul>
<li>Our course tutors have released a worksheet on exam-level programming practice problems on Piazza. Feel free to use this as a way to refine your programming skills in time for the final.</li>
<li>Grades for more assignments are out -- check Piazza for more details. </li>
<li>Remember to submit regrade requests for your homeworks. We will be closing regrades before the final exam.</li>
<li>Final exam details will come out in a Piazza post on Friday -- past exams are already available on the course website and are your best resource to prepare!</li>
</ul>
</div>
<div class="announcement" id='announcement-2'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Wed 01 August 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 3 and Homework 12 are out! Please work on them. They are your last assignments for this course.</li>
<li>Most of Vinitra's lecture today on Machine Learning is optional material -- please look through the lecture for the specifics of what you need to know.</li>
<li>Lecture 32 now includes the slides from the presentation from the Division of Data Sciences.</li>
</ul>
<p>Other logistics:</p>
<ul>
<li>Our course tutors have released a worksheet on exam-level programming practice problems on Piazza. Feel free to use this as a way to refine your programming skills in time for the final.</li>
<li>Grades for more assignments are out -- check Piazza for more details. </li>
<li>Remember to submit regrade requests for your homeworks. We will be closing regrades before the final exam.</li>
<li>Final exam details will come out in a Piazza post on Friday -- past exams are already available on the course website and are your best resource to prepare!</li>
</ul>
</div>
<div class="announcement" id='announcement-3'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 31 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 3 is out and HW 11 is due today! Please work on them.</li>
<li>Our course tutors have released a worksheet on exam-level programming practice problems on Piazza. Feel free to use this as a way to refine your programming skills in time for the final.</li>
<li>Grades for more assignments are out -- check Piazza for more details. </li>
<li>Remember to submit regrade requests for your homeworks. We will be closing regrades before the final exam.</li>
<li>Go to lab! There will be an important regression inference worksheet. Today's lecture will also help with the project.</li>
<li>Final exam details will come out in a Piazza post on Friday -- past exams are already available on the course website.</li>
</ul>
</div>
<div class="announcement" id='announcement-4'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 30 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 3 and Homework 11 are out! Please work on them.</li>
<li>Our course tutors have released a worksheet on exam-level programming practice problems on Piazza. Feel free to use this as a way to refine your programming skills in time for the final.</li>
<li>Grades for more assignments are out -- check Piazza for more details. </li>
</ul>
</div>
<div class="announcement" id='announcement-5'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Fri 27 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 10 out and due tonight. </li>
<li>Project 3 and Homework 11 out after lecture. </li>
<li>Concepual Office Hours: The worksheet from the Hypothesis Testing / AB Testing / Confidence Intervals conceptual office hour last weekend has been posted on Piazza.<ul>
<li>There will be another session this Saturday from 2 - 5 PM in 531 Cory Hall on this weeks topics.</li>
</ul>
</li>
<li>Our course tutors will be releasing a worksheet on exam-level programming practice problems early next week. Feel free to use this as a way to refine your programming skills in time for the final.</li>
<li>Grades for more assignments out -- check Piazza for more details. </li>
</ul>
</div>
<div class="announcement" id='announcement-6'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Thu 26 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 10 out and due tomorrow night. </li>
<li>Project 3 and Homework 11 out tomorrow after lecture. </li>
<li>Concepual Office Hours: The worksheet from the Hypothesis Testing / AB Testing / Confidence Intervals conceptual office hour last weekend has been posted on Piazza.<ul>
<li>There will be another session this Saturday from 2 - 5 PM in 531 Cory Hall on this weeks topics.</li>
</ul>
</li>
<li>Our course tutors will be releasing a worksheet on exam-level programming practice problems later this week / early next week. Feel free to use this as a way to refine your programming skills in time for the final.</li>
</ul>
</div>
<div class="announcement" id='announcement-7'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Wed 25 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 10 out and due Friday night. </li>
<li>The Data 8 final exam will take place on August 9th from 5 PM - 8 PM. If you cannot make it during this time slot due to an official final exam course conflict, email your lab GSI immediately. The final deadline for final exam conflicts is at midnight on Wednesday, July 25, 2018.</li>
</ul>
<p>Useful Data 8 Resources:</p>
<ul>
<li>Instructors Fahad and Vinitra have released a post clarifying some points regarding the Central Limit Theorem, Sample Means, and Designing Experiments. <ul>
<li>Please read this explanation on Piazza if you have any doubts, and post your conceptual questions there so other students can benefit from our answers as well. </li>
<li>This is a hard topic, and we would love to help answer your questions.</li>
</ul>
</li>
<li>Concepual Office Hours: The worksheet from the Hypothesis Testing / AB Testing / Confidence Intervals conceptual office hour last weekend has been posted on Piazza. <ul>
<li>There will be another session this Saturday from 2 - 5 PM in 531 Cory Hall on this weeks topics</li>
</ul>
</li>
<li>Our course tutors will be releasing a worksheet on exam-level programming practice problems later this week / early next week. Feel free to use this as a way to refine your programming skills in time for the final.</li>
</ul>
</div>
<div class="announcement" id='announcement-8'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 24 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 2 and Homework 09 are due tonight!</li>
<li>Homework 10 will come out after lecture. </li>
<li>The Data 8 final exam will take place on August 9th from 5 PM - 8 PM. If you cannot make it during this time slot due to an official final exam course conflict, email your lab GSI immediately. The final deadline for final exam conflicts is at midnight on Wednesday, July 25, 2018.</li>
</ul>
<p>Useful Data 8 Resources:</p>
<ul>
<li>Instructors Fahad and Vinitra have released a post clarifying some points regarding the Central Limit Theorem, Sample Means, and Designing Experiments. <ul>
<li>Please read this explanation on Piazza if you have any doubts, and post your conceptual questions there so other students can benefit from our answers as well. </li>
<li>This is a hard topic, and we would love to help answer your questions.</li>
</ul>
</li>
<li>Concepual Office Hours: The worksheet from the Hypothesis Testing / AB Testing / Confidence Intervals conceptual office hour last weekend has been posted on Piazza. <ul>
<li>There will be another session this Saturday from 2 - 5 PM in 531 Cory Hall on this weeks topics</li>
</ul>
</li>
<li>Our course tutors will be releasing a worksheet on exam-level programming practice problems later this week / early next week. Feel free to use this as a way to refine your programming skills in time for the final.</li>
</ul>
</div>
<div class="announcement" id='announcement-9'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 23 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 2 and Homework 09 have been released! Please work on them -- office hours are available throughout the week if you have questions!</li>
<li>The Data 8 final exam will take place on August 9th from 5 PM - 8 PM. If you cannot make it during this time slot due to an official final exam course conflict, email your lab GSI immediately. The final deadline for final exam conflicts is at midnight on Wednesday, August 25, 2018.</li>
</ul>
<p>Useful Data 8 Resources:</p>
<ul>
<li>Instructors Fahad and Vinitra have released a post clarifying some points regarding the Central Limit Theorem, Sample Means, and Designing Experiments. <ul>
<li>Please read this explanation on Piazza if you have any doubts, and post your conceptual questions there so other students can benefit from our answers as well. </li>
<li>This is a hard topic, and we would love to help answer your questions.</li>
</ul>
</li>
<li>Concepual Office Hours: The worksheet from the Hypothesis Testing / AB Testing / Confidence Intervals conceptual office hour last weekend has been posted on Piazza. <ul>
<li>There will be another session this Saturday from 2 - 5 PM in 531 Cory Hall.</li>
</ul>
</li>
<li>Today's lab worksheet on Correlation is conceptually fundamental. Make sure to attend lab section to practice these important skills!</li>
<li>Our course tutors will be releasing a worksheet on exam-level programming practice problems later this week / early next week. Feel free to use this as a way to refine your programming skills in time for the final.</li>
</ul>
</div>
<div class="announcement" id='announcement-10'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Fri 20 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 08 is due today, Homework 09 will be released after lecture.</li>
<li>Project 2 partners must be from your lab section. Fill out the partner form on Piazza. Project 2 is due next Tuesday.</li>
<li>Conceptual office hours about Hypothesis Testing, A/B Testing, and Confidence Intervals will be taking place on Saturday. This will be from 2-5 PM in Cory Hall. Check the Conceptual office hours post on Piazza for details.</li>
</ul>
</div>
<div class="announcement" id='announcement-11'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Thu 19 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 2 and Homework 08 have been released, Homework 09 will be released on Friday.</li>
<li>Project 2 partners must be from your lab section.</li>
<li>Instructors/GSIs are holding one-on-one midsemester advising sessions! Hari still has a few spots open this afternoon. Check Midterm Grades post on Piazza for details.</li>
<li>Conceptual office hours about Hypothesis Testing, A/B Testing, and Confidence Intervals will be taking place on Saturday. Check Conceptual office hours post on Piazza for details.</li>
</ul>
</div>
<div class="announcement" id='announcement-12'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Wed 18 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Midterm scores released on Gradescope. Regrades are due tonight. </li>
<li>Project 2 and Homework 08 have been released. Please start working on them.</li>
<li>Project 2 partners must be from your lab section.</li>
<li>Instructors/GSIs are holding one-on-one midsemester advising sessions! Vinitra still has a few spots open this afternoon.</li>
<li>Conceptual office hours about Hypothesis Testing, A/B Testing, and Confidence Intervals will be taking place on Saturday.</li>
</ul>
</div>
<div class="announcement" id='announcement-13'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 17 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Midterm scores released on Gradescope. Regrades due by Wednesday night. </li>
<li>Project 2 and Homework 08 up today.</li>
<li>Project 2 partners must be from your lab section. </li>
</ul>
</div>
<div class="announcement" id='announcement-14'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 16 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Midterm scores released on Gradescope. Regrades due by Wednesday night. </li>
<li>Midterm Advising (One on Ones with Staff) up on Piazza, running from today until Thursday. </li>
<li>Project 2 and Homework 08 will be up tomorrow. </li>
</ul>
</div>
<div class="announcement" id='announcement-15'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Wed 11 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 07 is due Thursday night.</li>
<li>Midterm is this Friday in lecture (7/13). Make sure to send in your DSP accomodation letters if you haven't already. Midterm logistics has been released, assignment solutions are already up! You should have been sent your seat assignments in Dwinelle 155. If not, post on the piazza thread "Midterm Seat Assignments Released" with your berkeley email. </li>
<li>Midterm Review Session is this Wednesday (7/11) from 7pm to 10pm in The Woz (Soda 430). Slides will be posted if you can't make it. </li>
<li>Grades for Homeworks 1-3 and Labs 1-4 will be up soon. Read the whole post explaining details. </li>
<li>Check website for this weeks's office hours. </li>
<li>Today is the last day of official midterm new content. Tomorrow is review. </li>
</ul>
</div>
<div class="announcement" id='announcement-16'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 10 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 06 is tonight.</li>
<li>Homework 07 is due Thursday night.</li>
<li>Midterm is this Friday in lecture (7/13). Make sure to send in your DSP accomodation letters if you haven't already. Midterm logistics has been released, assignment solutions are already up! </li>
<li>Midterm Review Session is this Wednesday (7/11) from 7pm to 10pm in The Woz (Soda 430). Slides will be posted if you can't make it. </li>
<li>Grades for Homeworks 1-3 and Labs 1-4 will be up soon. Read the whole post explaining details. </li>
<li>Check website for this weeks's office hours. </li>
</ul>
</div>
<div class="announcement" id='announcement-17'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 09 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 06 is due Tuesday night. </li>
<li>Homework 07 will be out tonight, due Thursday night.</li>
<li>Lab 05 due tonight. </li>
<li>Midterm is this Friday in lecture (7/13). Make sure to send in your DSP accomodation letters if you haven't already. Midterm logistics has been released, assignment solutions are already up! Keep Wednesday evening open for a review session. </li>
<li>Grades for Homeworks 1-3 and Labs 1-4 will be up soon. Read the whole post explaining details. </li>
<li>Fahad's Wednesday OH moved to Thursday, Vinitra's Monday OH moved to Tuesday. Check website for more information. </li>
</ul>
</div>
<div class="announcement" id='announcement-18'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Fri 06 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Project 1 is due tomorrow night (7/7). </li>
<li>Homework 05 is also due tomorrow night(7/7).</li>
<li>HW06 will be out today after lecture.</li>
<li>Midterm is next Friday in lecture (7/13). Make sure to send in your DSP accomodation letters if you haven't already. Midterm logistics has been released, assignment solutions are already up!</li>
<li>Lab 05 is due on Monday (7/9).</li>
</ul>
</div>
<div class="announcement" id='announcement-19'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Thu 05 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Vinitra is holding office hours today from 10 AM - 11 AM today in 155 Dwinelle. Fahad is hosting office hours from 11 AM - 12 PM and 4 PM - 5 PM today in 416 Evans as well!</li>
<li>Project 1 is due this Friday (7/6). Fill out the project partner form on Piazza if you have not already.</li>
<li>Homework 05 is also due on Friday (7/6).</li>
<li>Midterm is next Friday in lecture (7/13). Make sure to send in your DSP accomodation letters if you haven't already. Midterm logistics will be released shortly, assignment solutions are already up!</li>
<li>Lab 05 is due on Monday (7/9).</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
</ul>
</div>
<div class="announcement" id='announcement-20'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 03 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Vinitra is holding office hours from 10 AM - 11 AM today in 155 Dwinelle.</li>
<li>Project 1 is due this Friday (7/6). Fill out the project partner form on Piazza if you have not already.</li>
<li>Homework 04 is due today. Homework 05 will be released today.</li>
<li>Midterm is next Friday (7/13).</li>
<li>No lecture or office hours tomorrow -- Happy Independence Day!</li>
<li>Lab 05 will be due next Monday evening, worksheet will be released soon.</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
</ul>
</div>
<div class="announcement" id='announcement-21'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 02 July 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Vinitra is back and holding extra office hours later this week in 416 Evans.</li>
<li>Project 1 is due this Friday (7/6). You'll be working on the project in lab today! Fill out the project partner form on Piazza if you have not already.</li>
<li>Homework 04 is due tomorrow. Homework 05 will be released tomorrow.</li>
<li>Midterm is next Friday (7/13).</li>
<li>No lecture on Wednesday -- Happy Independence Day!</li>
<li>Lab 05 will be due next Monday evening, worksheet will be released soon.</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
</ul>
</div>
<div class="announcement" id='announcement-22'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Fri 29 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 03 is due tonight. </li>
<li>Homework 04 and Project 1 will be released after lecture. </li>
<li>Expect a form soon asking about who your partner is for Project 1 (if you have one). There, you can let us know if you're still looking for one. </li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
</ul>
</div>
<div class="announcement" id='announcement-23'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Thu 28 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 03 is due tomorrow night. </li>
<li>Homework 04 and Project 1 will be released tomorrow after lecture</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
<li>Project 1 will be released this Friday, so start looking for partners from your assigned lab section. </li>
<li>Vinitra's OH this week are cancelled.</li>
</ul>
</div>
<div class="announcement" id='announcement-24'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Wed 27 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 03 is due Friday night </li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
<li>Project 1 will be released this Friday, so start looking for partners from your assigned lab section. </li>
<li>Vinitra's OH this week are cancelled.</li>
</ul>
</div>
<div class="announcement" id='announcement-25'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 26 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 02 is due tonight </li>
<li>Homework 03 will be released sometime soon after lecture</li>
<li>We will have two forms of demos from now on. Live is the one with no code filled in that you can work on during lecture, while Demos will be the completed version after lecture. </li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
<li>Project 1 will be released this Friday, so start looking for partners from your assigned lab section. </li>
<li>Vinitra's OH this week are cancelled.</li>
</ul>
</div>
<div class="announcement" id='announcement-26'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 25 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 02 is due tomorrow night. </li>
<li>Please make sure you submit Lab 01 if you haven't already.</li>
<li>Visit <a href="http://okpy.org">http://okpy.org</a> to make sure your HW1 submitted correctly. If it did not, please email your Lab TA. </li>
<li>Project 1 will be released this Friday, so start looking for partners from your assigned lab section. </li>
<li>Vinitra's OH this week are cancelled.</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
</ul>
</div>
<div class="announcement" id='announcement-27'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Fri 22 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 01 is due today (6/22) at midnight.</li>
<li>Homework 02 will be released after lecture.</li>
<li>Please make sure you submit Lab 01 if you haven't already.</li>
<li>Lab 109: 3 - 5 PM in 458 Evans with GSI Hari has 6 students. Please join!</li>
<li>There will be conceptual office hours on Saturday (more details on Piazza).</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
<li>If you're joining this class late, talk to your Lab GSI!</li>
</ul>
</div>
<div class="announcement" id='announcement-28'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Thu 21 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Homework 01 is due tomorrow (6/22) at midnight.</li>
<li>Homework 02 will be released tomorrow after lecture.</li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
<li>All your assignments will be completed on <a href="https://summer.datahub.berkeley.edu">summer.datahub.berkeley.edu</a>. If you have any problems, there's a Jupyter post on Piazza where you can ask questions!</li>
</ul>
</div>
<div class="announcement" id='announcement-29'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Wed 20 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Welcome to the start of the summer term! </li>
<li>Lab 02 has been released. Work on it in lab today. </li>
<li>Remember to run the submit cell on Lab 01 if you haven't already.</li>
<li>Homework 01 is due this Friday (6/22) at midnight. </li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
</ul>
</div>
<div class="announcement" id='announcement-30'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Tue 19 June 2018</span>
</li>
<li class='announcement-btn-newer'>
<a>
newer
<span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span>
</a>
</li>
</ul>
<ul>
<li>Welcome to the start of the summer term! </li>
<li>Lab 02 has been released. Work on it in lab on Wednesday (highly recommended) or accurately answer all the questions by tonight (6/19) for full credit.</li>
<li>Homework 01 will be released right after lecture and is due this Friday (6/22) at midnight. </li>
</ul>
<p>A few reminders:</p>
<ul>
<li><a href="http://data8.org/su18/policies.html">Policies Page</a> is important, read through it.</li>
<li>Please sign up for the Data 8 <a href="https://piazza.com/class/jgk0rvi1y5xyn">Piazza</a>. We'll use this discussion forum to answer questions, post announcements, and more.</li>
</ul>
</div>
<div class="announcement" id='announcement-31'>
<ul class="pager">
<li class='announcement-btn-older'>
<a>
<span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span>
older
</a>
</li>
<li>
<span class="announcement-date">Mon 18 June 2018</span>
</li>