-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMajorRequirements.html
161 lines (161 loc) · 5.95 KB
/
MajorRequirements.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
<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load("current", {packages:["corechart"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Major', 'Number of Classes to Major Requirements'],
['Aerospace and Engineering', 8],
['African American Studies', 5],
['African and Middle Eastern Studies', 21],
['American Indian Studies', 5],
['American Literature and Culture', 2],
['Ancient Near East and Egyptology', 27],
['Anthropology', 7],
['Business Economics', 10],
['Economics', 10],
['Applied Linguistics', 35],
['Applied Mathematics', 15],
['Statistics', 2],
['Arabic', 27],
['Architectural Studies', 2],
['Art', 3],
['Art History', 3],
['Asian American Studies', 1],
['Asian Humanities', 15],
['Asian Languages and Linguistics', 18],
['Asian Religions', 15],
['Asian Studies', 18],
['Astrophysics', 15],
['Biophysics', 5],
['Physics', 8],
['Atmospheric and Oceanic Sciences', 9],
['Atmospheric and Oceanic Sciences/Mathematics', 10],
['Climate Science', 16],
['Biochemistry', 12],
['Chemistry', 6],
['Chemistry/Materials Science', 15],
['General Chemistry', 9],
['Bioengineering', 9],
['Biology', 5],
['Biophysics', 10],
['Central and East European Languages and Cultures', 20],
['Chemical Engineering', 10],
['Chicana and Chicano Studies', 2],
['Civil Engineering', 13],
['Classical Civilization', 6],
['Greek', 3],
['Greek and Latin', 4],
['Latin', 3],
['Cognitive Science', 20],
['Communication Studies', 9],
['Comparative Literature', 2],
['Computational and Systems Biology', 11],
['Computer Engineering', 24],
['Computer Science', 8],
['Computer Science and Engineering', 8],
['Dance', 6],
['World Arts and Cultures', 9],
['Design/Media Arts', 2],
['Earth and Environmental Science', 18],
['Ecology, Behavior, and Evolution', 5],
['Electrical Engineering', 12],
['Engineering Geology', 21],
['English', 2],
['Environmental Science', 42],
['Ethnomusicology', 2],
['European Studies', 29],
['Film and Television', 2],
['Financial Actuarial Mathematics', 10],
['French', 2],
['French and Linguistics', 4],
['Gender Studies', 1],
['Geology', 15],
['Geophysics', 12],
['Geography/Environmental Studies', 4],
['German', 2],
['Global Jazz Studies', 3],
['Global Studies', 29],
['Greek', 3],
['Greek and Latin', 4],
['Portuguese', 2],
['Spanish', 1],
['Spanish and Community Culture', 3],
['Spanish and Linguistics', 4],
['History', 2],
['Human Biology and Scoiety', 3],
['International Development Studies', 17],
['Iranian Studies', 18],
['Jewish Studies', 42],
['Middle Eastern Studies', 16],
['Italian', 1],
['Italian and Special Fields', 42],
['Latin', 3],
['Latin American Studies', 14],
['Applied Linguistics', 15],
['Linguistics and Anthropology', 10],
['Linguistics and Asian Languages and Cultures', 2],
['Linguistics and Computer Science', 8],
['Linguistics and English', 6],
['Linguistics and French', 4],
['Linguistics and Italian', 6],
['Linguistics and Philosophy', 7],
['Linguistics and Scandinavian Languages', 4],
['Linguistics and Spanish', 4],
['Linguistics and Psychology', 5],
['Aerospace Engineering', 16],
['Mechanical Engineering', 16],
['Marine Biology', 7],
['Materials Engineering', 24],
['Mathematics', 8],
['Mathematics/Applied Science', 14],
['Mathematics for Teaching', 5],
['Mathematics of Computation', 10],
['Mathematics/Applied Science', 14],
['Mathematics for Teaching', 5],
['Mathematics/Economics', 4],
['Microbiology, Immunology, and Molecular Genetics', 14],
['Middle Eastern Studies', 32],
['Molecular, Cell, and Developmental Biology', 7],
['Music', 1],
['Music Education', 10],
['Musicology', 5],
['Neuroscience', 7],
['Mordic Studies', 8],
['Nursing Prelicensure', 16],
['Philosophy', 1],
['Phsyics', 8],
['Physiological Sciences', 6],
['Political Science', 2],
['Spanish', 2],
['Spanish and Community and Culture', 9],
['Spanish and Linguistics', 8],
['Spanish and Portuguese', 8],
['Psychobiology', 22],
['Psychology', 1],
['Public Affairs', 1],
['Russian Language and Literature', 4],
['Russian Studies', 8],
['Scandinavian Languages and Cultures', 2],
['Portuguese', 1],
['Sociology', 3],
['Statistics', 2],
['Study of Religion', 15],
['Theater', 2]
]);
var options = {
title: 'Major Requirements',
sliceVisibilityThreshold: 0,
pieHole: 0.4,
};
var chart = new google.visualization.PieChart(document.getElementById('donutchart'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="donutchart" style="width: 1600px; height: 800px;"></div>
</body>
</html>