-
Notifications
You must be signed in to change notification settings - Fork 8
/
sample_doc_map.json
2198 lines (2195 loc) · 65.2 KB
/
sample_doc_map.json
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
{
"sample_docs": [
{
"title": "Markov",
"description": "Save Madeline the dog by playing Roshambo against the evil Dr. Markov. Improve you odds by analyzing Markov's moves. ",
"path": "SampleDocs/Mathematics/Probability/markov/Markov_Sample.json",
"visible": true,
"image_path": "./resources/images/markov_banner.png",
"tag": [
"markov chains",
"markov",
"chain",
"game",
"data science games",
"conditional probability",
"probability"
],
"categories": [
"math",
"miscellaneous"
]
},
{
"title": "Census 2020",
"description": "Investigate data from the 2010 U.S. Census to predict possible impacts of proposed changes to the 2020 Census.",
"path": "SampleDocs/US_PUMAS_2010.codap",
"image_path": "resources/images/US_PUMAS_2010.png",
"visible": true,
"tag": [
"united states",
"puma",
"nativity",
"births",
"census",
"2020"
],
"categories": [
"miscellaneous",
"socsci",
"demographics"
]
},
{
"title": "BART Pressure",
"description": "Miguel and Bill took a PocketLab sensor onto BART to SF and back. They began recording pressure just before the train went into the tunnel under the bay.",
"path": "SampleDocs/Science/PhysChem/BART_Pressure/BART_pressure.codap",
"visible": true,
"tag": [
"physics",
"san francisco",
"Pocketlab",
"pressure changes"
],
"image_path": "./resources/images/BartPressure.jpg",
"categories": [
"miscellaneous",
"science"
]
},
{
"title": "Birthdays",
"description": "How popular is your birthday? Is the distribution of birthdays uniform?",
"path": "SampleDocs/Mathematics/Probability/Birthdays/Birthdays.codap",
"visible": true,
"tag": [
"birthdays",
"birth",
"birth rates",
"probability"
],
"image_path": "./resources/images/Birthdays.jpg",
"categories": [
"math"
]
},
{
"title": "Fibonacci",
"description": "Explore the Fibonacci numbers in CODAP.",
"path": "SampleDocs/Mathematics/Number_Theory/Fibonacci/Fibonacci.codap",
"visible": true,
"tag": [
"number theory",
"fibonacci",
"numbers"
],
"image_path": "./resources/images/fibonacci.png",
"categories": [
"math"
]
},
{
"title": "The Monty Hall Problem",
"description": "A classic statistical problem from the TV game show \"Let's Make a Deal\"",
"path": "SampleDocs/The_Monty_Hall_Problem.codap",
"image_path": "./resources/images/Monty_open_door.svg",
"visible": true,
"tag": [
"conditional probability",
"probability"
],
"categories": [
"math",
"miscellaneous"
]
},
{
"title": "Climate Change",
"description": "Explore models of climate change over time.",
"path": "SampleDocs/Science/E_Sciences/Climate_Change/Climate-Change-A.codap",
"visible": true,
"tag": [
"climate",
"change",
"simulation",
"games",
"earth science",
"earth"
],
"image_path": "./resources/images/ClimateChange.jpg",
"categories": [
"science"
]
},
{
"title": "Future Climate Changes",
"description": "How can we better understand and project future climate changes?",
"path": "SampleDocs/Science/E_Sciences/EPA_Future_of_Climate_Change/EPA_Future_of_Climate_Change.codap",
"visible": true,
"tag": [
"climate",
"change",
"simulation",
"games",
"earth science",
"earth",
"projection",
"global warming",
"greenhouse"
],
"image_path": "./resources/images/TheFutureofClimateChange.jpg",
"categories": [
"science"
]
},
{
"title": "Hurricanes 2005-2015",
"description": "Explore NOAA data of hurricanes from 2005-2015.",
"path": "SampleDocs/Science/E_Sciences/Hurricanes/Hurricanes.codap",
"visible": true,
"tag": [
"climate",
"change",
"hurricanes",
"typhoon",
"earth science",
"earth",
"tropical storm"
],
"image_path": "./resources/images/hurricane.jpg",
"categories": [
"science"
]
},
{
"title": "California Earthquakes",
"description": "This dataset explores 491 earthquakes that took place in California in 2012.",
"path": "SampleDocs/Science/E_Sciences/CA_earthquakes/CA_earthquakes.codap",
"visible": true,
"tag": [
"earthquakes",
"california",
"earth science",
"earth"
],
"image_path": "./resources/images/CaliforniaEarthquakes.jpg",
"categories": [
"science"
]
},
{
"title": "Fast Plants",
"description": "An example document for CODAP beginners. Make graphs and use selection to look for patterns in fast plant growth.",
"path": "SampleDocs/Science/Biology/fast_plants/fast_plants.codap",
"visible": true,
"tag": [
"fast plants",
"plants",
"beginner",
"biology"
],
"image_path": "./resources/images/FastPlants.jpg",
"categories": [
"miscellaneous",
"science"
]
},
{
"title": "Domestic Cats",
"description": "This data set explores 24 domestic house cats. This is the same data set from the TinkerPlots example data set.",
"path": "SampleDocs/Science/Biology/24cats/24cats.codap",
"visible": true,
"tag": [
"cats",
"biology",
"animals"
],
"image_path": "./resources/images/DomesticCats.jpg",
"categories": [
"science"
]
},
{
"title": "Birgit the Giant Tortoise",
"description": "This data set looks at the activity of Birgit the Giant Tortoise, located in the Galapagos Islands. ",
"path": "SampleDocs/Science/Biology/Birgit_the_Giant_Tortoise/Birgit_the_Giant_Tortoise.codap",
"visible": true,
"tag": [
"tortoise",
"biology",
"animals"
],
"image_path": "./resources/images/BirgittheGiantTortoise.png",
"categories": [
"science"
]
},
{
"title": "Four Seals",
"description": "Display the tracks of four elephant seals in the Pacific on a map. Make graphs and use selection to help determine what is going on.",
"path": "SampleDocs/Science/Biology/four-seals/Four_Seals.codap",
"visible": true,
"tag": [
"seals",
"biology",
"animals"
],
"image_path": "./resources/images/FourSeals.jpg",
"categories": [
"miscellaneous",
"science"
]
},
{
"title": "Mammal",
"description": "There are 27 mammals, each with eight attributes. What relationships can you find?",
"path": "SampleDocs/Science/Biology/27mammals/Mammals_Sample.codap",
"visible": true,
"tag": [
"mammals",
"biology",
"animals"
],
"image_path": "./resources/images/Mammal.jpg",
"categories": [
"science"
]
},
{
"title": "Parachute Model",
"description": "Experiment dropping a parachute to see how changing the parachute's size and mass of its cargo changes the terminal velocity of the drop.",
"path": "SampleDocs/Science/PhysChem/parachute/Parachute_Model_Sample.codap",
"visible": true,
"image_path": "./resources/images/parachute.png",
"tag": [
"parachute",
"physics",
"mass",
"size",
"velocity",
"freefall",
"gravity",
"model"
],
"categories": [
"miscellaneous",
"science"
]
},
{
"title": "States and Education",
"description": "Explore this data gathered from the Minnesota Population Center about the United States. What do you notice about the education levels within each state?",
"path": "SampleDocs/Social_Science/United_States/statesnpeople/States_and_Education.codap",
"visible": true,
"tag": [
"education",
"states",
"maps",
"USA",
"model"
],
"image_path": "./resources/images/StatesandEducation.png",
"categories": [
"miscellaneous",
"socsci"
]
},
{
"title": "1999 API for all California High Schools",
"description": "Has 1999 APIs for all California High Schools.",
"path": "SampleDocs/Education/API_All_CA_HS_1999/API_All_CA_HS_1999.json",
"visible": false,
"tag": [
"education",
"states",
"maps"
],
"categories": [
"miscellaneous"
]
},
{
"title": "Calculus Grades",
"description": "Grades recorded during several years for a Calculus 2 course at the Instituto Tecnológico de Costa Rica.",
"path": "SampleDocs/Education/Calc_Grades/Grades_Calc.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Faculty Salaries",
"description": "This data includes salaries of College faculty, in the 2002-2003 academic year.",
"path": "SampleDocs/Education/Faculty_Salaries/Faculty_Salaries.json",
"visible": true,
"tag": [
"educaton"
],
"image_path": "./resources/images/FacultySalaries.jpg",
"categories": [
"miscellaneous"
]
},
{
"title": "ITCR Students Info",
"description": "Results from polls taken in 1993, 1994, 2000 and 2003 among students of the Instituto Tecnológico de Costa Rica.",
"path": "SampleDocs/Education/ITCR_Students.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "School Children Info",
"description": "Age (months), height (inches), and weight (pounds) were recorded for a group of school children.",
"path": "SampleDocs/Education/School_Children/School_Children.json",
"visible": true,
"tag": [
"children",
"growth",
"grow",
"age",
"height",
"weight"
],
"image_path": "./resources/images/SchoolChildrenInfo.jpg",
"categories": [
"socsci",
"math"
]
},
{
"title": "Six Tests",
"description": "Do students who take standardized tests multiple times have an advantage over those who just take them once or twice?",
"path": "SampleDocs/Education/Six_Tests/Six_Tests.json",
"visible": true,
"tag": [
"children",
"growth",
"grow",
"age",
"height",
"weight"
],
"image_path": "./resources/images/SixTests.png",
"categories": [
"miscellaneous"
]
},
{
"title": "State Public School Enrollments",
"description": "Enrollment in public elementary and secondary schools, by state or jurisdiction: Fall 1988 to Fall 2010.",
"path": "SampleDocs/Education/State_Public_School_Enrollments/Public_School_Enrollments.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Education Spending by State",
"description": "How much money each state spent on education from 1969 to 2000?",
"path": "SampleDocs/Education/States_EdSpending/States_EdSpending.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Stats Grades",
"description": "Grades recorded during several years for a Statistics course at the Instituto Tecnológico de Costa Rica, with one case per student.",
"path": "SampleDocs/Education/Stats_Grades/Stats_Grades.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Students' Grades",
"description": "Grades obtained by students in the author's classes at the Instituto Tecnológico de Costa Rica.",
"path": "SampleDocs/Education/Students_Grades/Students_Grades.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Texas A and M Univ Business Students' Grades",
"description": "Grades obtained by Business students at Texas A and M University during the years 1989-1992.",
"path": "SampleDocs/Education/TAMU_Business/TAMU_Business.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Visits",
"description": "Visits of students to author's office hours.",
"path": "SampleDocs/Education/Visits/Visits.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "2000 Words",
"description": "2000 words randomly chosen from the YAWL (yet another word list) that comes with the Unix operating system.",
"path": "SampleDocs/LanguageArts/2000_Words/2000_Words.json",
"visible": false,
"tag": [],
"categories": [
"language"
]
},
{
"title": "Movie Characters",
"description": "A collection of movies from the Internet Movie Database",
"path": "SampleDocs/LanguageArts/Movie_Characters/Movie_Characters.codap",
"visible": true,
"tag": [
"movie",
"character",
"imdb"
],
"image_path": "./resources/images/MovieCharacters.png",
"categories": [
"miscellaneous"
]
},
{
"title": "Art Paintings",
"description": "This catalog of paintings is supplied by the National Gallery of Art.",
"path": "SampleDocs/LanguageArts/Art_Paintings/Art_Paintings.json",
"visible": false,
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Artists",
"description": "List of art by artists.",
"path": "SampleDocs/LanguageArts/Artists/Artists.json",
"visible": true,
"image_path": "./resources/images/artists.jpg",
"tag": [],
"categories": [
"miscellaneous"
]
},
{
"title": "Googlewhacks",
"description": "The collection at left contains the most recent 500 of the more than 450,000 Googlewhacks that were listed on November 11, 2004.",
"path": "SampleDocs/LanguageArts/Googlewhacks/Googlewhacks.json",
"visible": true,
"image_path": "./resources/images/GoogleWhack.png",
"tag": [
"Google",
"Internet"
],
"categories": [
"language"
]
},
{
"title": "Bush 1989 Inaugural Speech",
"description": "Analyze the letter count of five paragraphs of George H. W. Bush's Inaugural Address, January 20, 1989.",
"path": "SampleDocs/LanguageArts/TextPassages/Bush89/Bush89.json",
"visible": false,
"tag": [
"speech"
],
"categories": [
"language"
]
},
{
"title": "Declaration of Independence",
"description": "Analyze the letter count of the first two paragraphs of the United States Declaration of Independence.",
"path": "SampleDocs/LanguageArts/TextPassages/Declaration/Declaration.json",
"visible": false,
"tag": [
"indpendence"
],
"categories": [
"language"
]
},
{
"title": "Don Juan",
"description": "Analyze the letter count of of the first two paragraphs of Don Quixote de la Mancha.",
"path": "SampleDocs/LanguageArts/TextPassages/Don/Don.json",
"visible": false,
"tag": [],
"categories": [
"language"
]
},
{
"title": "Faust",
"description": "Analyze the letter count of Goethe's Faust.",
"path": "SampleDocs/LanguageArts/TextPassages/Faust/Faust.json",
"visible": false,
"tag": [],
"categories": [
"language"
]
},
{
"title": "Gettysburg Address",
"description": "Analyze the letter count in three paragraphs of the Gettysburg Address.",
"path": "SampleDocs/LanguageArts/TextPassages/Gettysburg/Gettysburg.json",
"visible": false,
"tag": [],
"categories": [
"language"
]
},
{
"title": "The Old Man and The Sea",
"description": "Analyze the letter count in a passage from The Old Man and The Sea.",
"path": "SampleDocs/LanguageArts/TextPassages/OldMan/OldMan.json",
"visible": false,
"tag": [],
"categories": [
"language"
]
},
{
"title": "Building Heights",
"description": "Explore the 300 tallest buildings in the world.",
"path": "SampleDocs/Mathematics/Algebra/Buildings/Buildings.codap",
"visible": true,
"image_path": "./resources/images/BuildingHeights.jpg",
"tag": [
"building",
"algebra"
],
"categories": [
"math"
]
},
{
"title": "Compound Interest",
"description": "Case table shows a model of a savings account.",
"path": "SampleDocs/Mathematics/Algebra/Compound/Compound.json",
"visible": true,
"image_path": "./resources/images/CompoundInterest.jpg",
"tag": [
"compound interest",
"interest",
"money"
],
"categories": [
"math"
]
},
{
"title": "Cost Adjustment by Year",
"description": "How much is your money worth based on the consumer price index.",
"path": "SampleDocs/Mathematics/Algebra/Cost/Cost.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Font Size",
"description": "Measurements of the length of a column and notice how that changes with the number of words and the font size.",
"path": "SampleDocs/Mathematics/Algebra/Font_Size/Font_Size.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Guess and Check",
"description": "A 'guess and check' method for finding the correct answer to an Algebra problem.",
"path": "SampleDocs/Mathematics/Algebra/Guess/Guess.codap",
"visible": true,
"tag": [
"algebra",
"guess"
],
"image_path": "./resources/images/GuessAndcheck.png",
"categories": [
"math"
]
},
{
"title": "Pi Scale",
"description": "A scale marked in units of pi",
"path": "SampleDocs/Mathematics/Calculus/Pi/Pi.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Quadratic Relationship",
"description": "Figure out a method to find the best curve through the points.",
"path": "SampleDocs/Mathematics/Algebra/Quad/Quad.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Integrals and Derivatives",
"description": "Demonstrates the visualization or integrals and derivatives.",
"path": "SampleDocs/Mathematics/Calculus/Integral/Integral.codap",
"visible": true,
"tag": [
"calculus",
"integral",
"derivative"
],
"image_path": "./resources/images/IntegralsAndDerivatives.png",
"categories": [
"math"
]
},
{
"title": "Integration",
"description": "This document illustrates how to do numerical integration of an arbitrary function.",
"path": "SampleDocs/Mathematics/Calculus/Integration/Integration.codap",
"visible": true,
"tag": [
"calculus",
"integral",
"integraton"
],
"image_path": "./resources/images/Integration.png",
"categories": [
"math"
]
},
{
"title": "Logistics",
"description": "Investigate the effect of changing x and k in the logistics function f(x)=kx(1-x).",
"path": "SampleDocs/Mathematics/Calculus/Logistics/Logistics.codap",
"visible": true,
"image_path": "./resources/images/Logistics.png",
"tag": [
"calculus",
"logistics"
],
"categories": [
"math"
]
},
{
"title": "Minimization",
"description": "Find the minimum of a plotted function.",
"path": "SampleDocs/Mathematics/Calculus/Minimization/Minimization.codap",
"visible": true,
"image_path": "./resources/images/Minimization.png",
"tag": [
"calculus",
"minimize"
],
"categories": [
"math"
]
},
{
"title": "Unit Pi",
"description": "Plotting a graph that uses pi as a unit.",
"path": "SampleDocs/Mathematics/Calculus/Pi/Pi.codap",
"visible": true,
"image_path": "./resources/images/Unit_Pi.png",
"tag": [
"calculus"
],
"categories": [
"math"
]
},
{
"title": "Johnson Solids",
"description": "Explore the Johnson solids.",
"path": "SampleDocs/Mathematics/Geometry/Solids/Solids.codap",
"visible": true,
"image_path": "./resources/images/JohnsonSolids.png",
"tag": [
"geometry"
],
"categories": [
"math"
]
},
{
"title": "Digits of Pi",
"description": "Explore the digits of pi.",
"path": "SampleDocs/Mathematics/Number_Theory/Digits_of_Pi/Digits_of_Pi.codap",
"image_path": "./resources/images/DigitsOfPi.png",
"visible": true,
"tag": [
"number theory"
],
"categories": [
"math"
]
},
{
"title": "Integer Ring",
"description": "Explore the patterns of addition and multiplication of integers.",
"path": "SampleDocs/Mathematics/Number_Theory/Integer_Ring/Integer_Ring.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Number of Factors",
"description": "Investigate the spacing between numbers and their factors.",
"path": "SampleDocs/Mathematics/Number_Theory/Number_of_Factors/Number_of_Factors.codap",
"visible": true,
"image_path": "./resources/images/NumberOfFactors.png",
"tag": [],
"categories": [
"math"
]
},
{
"title": "Prime Density",
"description": "Investigate the spacing between prime numbers.",
"path": "SampleDocs/Mathematics/Number_Theory/Prime_Density/Prime_Density.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Growth",
"description": "Investigate the theory of chaotic growth.",
"path": "SampleDocs/Mathematics/Other_Mathematics/Growth/Growth.codap",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Number Theory Pi",
"description": "Similar to Digits of Pi in Number Theory.",
"path": "SampleDocs/Mathematics/Other_Mathematics/Number_Theory/Digits_of_Pi/Digits_of_Pi.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Fourier Series",
"description": "Explore the Fourier Series.",
"path": "SampleDocs/Mathematics/Other_Mathematics/Series/Series.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Chaos Game Simulation",
"description": "Explore the Chaos Game!",
"path": "SampleDocs/Mathematics/Probability/Chaos_Game/Chaos_Game.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Estimating Pi",
"description": "How to use the graph to estimate pi.",
"path": "SampleDocs/Mathematics/Probability/Estimating_Pi/Estimating_Pi.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Geometric Cards",
"description": "How many cards do you have to draw until you get a club?",
"path": "SampleDocs/Mathematics/Probability/Geometric_Cards/Geometric_Cards.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Life Expectancy",
"description": "What is the average life expectancy today?",
"path": "SampleDocs/Mathematics/Probability/Life_Expectancy/Life_Expectancy.json",
"image_path": "./resources/images/LifeExpectancy.png",
"visible": true,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Lotto",
"description": "Does Lotto pay?",
"path": "SampleDocs/Mathematics/Probability/Lotto/Lotto.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Brownian Motion",
"description": "Explore the motion of a molecule.",
"path": "SampleDocs/Mathematics/Probability/Motion/Motion.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Shooting Match",
"description": "Which strategy is best when each person has different shooting abilities?",
"path": "SampleDocs/Mathematics/Probability/Shooting_Match/Shooting_Match.json",
"visible": false,
"tag": [],
"categories": [
"math"
]
},
{
"title": "Spinner Game",
"description": "What is the best largest value for Player 1 in the Showcase Showdown?",
"path": "SampleDocs/Mathematics/Probability/Spinner_Game/Spinner_Game.json",
"visible": true,
"tag": [],
"image_path": "./resources/images/SpinnerGame.png",
"categories": [
"math"
]
},
{
"title": "Planets",
"description": "Investigate data about the 8 planets in our solar system.",
"path": "SampleDocs/Science/Astronomy/Planets/Planets.codap",
"visible": true,
"image_path": "./resources/images/Planets.png",
"tag": [
"planets",
"astronomy",
"sky",
"solar system"
],
"categories": [
"science",
"astronomy",
"solar system"
]
},
{
"title": "Bright Star Catalog",
"description": "Explore 400 stars from a rectangular area of the sky.",
"path": "SampleDocs/Science/Astronomy/yale_bright/yale_bright.codap",
"visible": true,
"image_path": "./resources/images/BrightStarCatalog.jpg",
"tag": [
"star",
"astronomy",
"sky"
],
"categories": [
"science",
"astronomy"
]
},
{
"title": "Extra Solar",
"description": "Explore 111 extrasolar masses and orbital characteristics of known extrasolar planets.",
"path": "SampleDocs/Science/Astronomy/Extra_Solar/Extra_Solar.json",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Jupiter Moons",
"description": "A case table about four moons of Jupiter: Io, Europa, Ganymede, and Callisto.",
"path": "SampleDocs/Science/Astronomy/Jupiter_Moons/Jupiter_Moons.json",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Jupiter Radius",
"description": "Explain the plot of radius versus mean Julian date.",
"path": "SampleDocs/Science/Astronomy/Jupiter_Radius/Jupiter_Radius.json",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Space Data",
"description": "Explore a study about how to grow plants in space.",
"path": "SampleDocs/Science/Astronomy/Space_Data/Space_Data.json",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Sunspots",
"description": "A case table gives the sunspot number for a random sample of 2000 days since 1951.",
"path": "SampleDocs/Science/Astronomy/Sunspots/Sunspots.json",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Bears",
"description": "How can you use other measurements to measure the weight of a bear?",
"path": "SampleDocs/Science/Biology/Bears/Bears.codap",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Bird Observations",
"description": "Explore raw data about what bird species were seen and when, per year.",
"path": "SampleDocs/Science/Biology/Bird_Observations/Bird_Observations.json",
"visible": false,
"tag": [],
"categories": [
"science"
]
},
{
"title": "Heights",
"description": "What is the difference in heights at different times of the day?",
"path": "SampleDocs/Science/Biology/Height/Height.json",
"visible": false,
"tag": [],
"categories": [
"science"