-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart.js
278 lines (257 loc) · 6.38 KB
/
chart.js
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
export function buildCharts (data) {
buildChart1(data)
buildChart2(data)
buildChart3(data)
buildChart4(data)
}
function buildChart1 (data) {
const ctx = document.getElementById('chart-1')
let ageModel = [
{ age: '0 to 17', mortalities: 0, patients: 0 },
{ age: '18 to 29', mortalities: 0, patients: 0 },
{ age: '30 to 49', mortalities: 0, patients: 0 },
{ age: '50 to 69', mortalities: 0, patients: 0 },
{ age: '70 or Older', mortalities: 0, patients: 0 }
]
data.forEach(element => {
switch (element['age_group']) {
case '0 to 17':
ageModel[0].patients++
if (element['patient_disposition'] === 'Expired') {
ageModel[0].mortalities++
}
break
case '18 to 29':
ageModel[1].patients++
if (element['patient_disposition'] === 'Expired') {
ageModel[1].mortalities++
}
break
case '30 to 49':
ageModel[2].patients++
if (element['patient_disposition'] === 'Expired') {
ageModel[2].mortalities++
}
break
case '50 to 69':
ageModel[3].patients++
if (element['patient_disposition'] === 'Expired') {
ageModel[3].mortalities++
}
break
case '70 or Older':
ageModel[4].patients++
if (element['patient_disposition'] === 'Expired') {
ageModel[4].mortalities++
}
break
default:
break
}
})
new Chart(ctx, {
type: 'bar',
data: {
labels: ageModel.map(entry => entry.age),
datasets: [
{
label: 'Mortality Rate',
data: ageModel.map(entry => (entry.mortalities/entry.patients) * 100),
borderWidth: 1
}
]
},
options: {
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true
}
},
plugins: {
title: {
display: true,
text: 'Moralities (%) by Age Group (1000 Patient Sample)',
padding: {
top: 10,
bottom: 30
}
}
}
}
})
}
function buildChart2 (data) {
const ctx = document.getElementById('chart-2')
let raceModel = [
{ race: 'Black/African American', diagnoses: 0, patients: 0 },
{ race: 'Multi-racial', diagnoses: 0, patients: 0 },
{ race: 'White', diagnoses: 0, patients: 0 },
{ race: 'Other Race', diagnoses: 0, patients: 0 },
]
data.forEach(element => {
switch (element['race']) {
case 'Black/African American':
raceModel[0].patients++
if (element['ccs_diagnosis_description'].includes('lung')) {
raceModel[0].diagnoses++
}
break
case 'Multi-racial':
raceModel[1].patients++
if (element['ccs_diagnosis_description'].includes('lung')) {
raceModel[1].diagnoses++
}
break
case 'White':
raceModel[2].patients++
if (element['ccs_diagnosis_description'].includes('lung')) {
raceModel[2].diagnoses++
}
break
case 'Other Race':
raceModel[3].patients++
if (element['ccs_diagnosis_description'].includes('lung')) {
raceModel[3].diagnoses++
}
break
default:
break
}
})
new Chart(ctx, {
type: 'polarArea',
data: {
labels: raceModel.map(entry => entry.race),
datasets: [
{
label: 'Lung Cancer Diagnoses by Race',
data: raceModel.map(entry => (entry.diagnoses/entry.patients)),
borderWidth: 1
}
]
},
options: {
maintainAspectRatio: false,
plugins: {
title: {
display: true,
text: 'Lung Cancer Diagnoses by Race (1000 Patient Sample)',
padding: {
top: 30,
bottom: 30
}
}
}
}
})
}
function buildChart3 (data) {
const ctx = document.getElementById('chart-3')
let genderModel = [
{ gender: 'M', diagnoses: 0, patients: 0 },
{ gender: 'F', diagnoses: 0, patients: 0 },
]
data.forEach(element => {
switch (element['gender']) {
case 'M':
genderModel[0].patients++
if (element['ccs_diagnosis_description'].includes('pancreas')) {
genderModel[0].diagnoses++
}
break
case 'F':
genderModel[1].patients++
if (element['ccs_diagnosis_description'].includes('pancreas')) {
genderModel[1].diagnoses++
}
break
default:
break
}
})
new Chart(ctx, {
type: 'doughnut',
data: {
labels: genderModel.map(entry => entry.gender),
datasets: [
{
label: 'Pancreatic Cancer by Gender',
data: genderModel.map(entry => (entry.diagnoses/entry.patients)),
borderWidth: 1
}
]
},
options: {
maintainAspectRatio: false,
plugins: {
title: {
display: true,
text: 'Pancreatic Cancer Diagnoses by Gender (1000 Patient Sample)',
padding: {
top: 30,
bottom: 30
}
}
}
}
})
}
function buildChart4 (data) {
const ctx = document.getElementById('chart-4')
let severityModel = [
{ severity: 'Minor', patients: 0 },
{ severity: 'Moderate', patients: 0 },
{ severity: 'Major', patients: 0 },
{ severity: 'Extreme', patients: 0 },
]
data.forEach(element => {
switch (element['apr_severity_of_illness_description']) {
case 'Minor':
severityModel[0].patients++
break
case 'Moderate':
severityModel[1].patients++
break
case 'Major':
severityModel[2].patients++
break
case 'Extreme':
severityModel[3].patients++
break
default:
break
}
})
new Chart(ctx, {
type: 'bar',
data: {
labels: severityModel.map(entry => entry.severity),
datasets: [
{
label: 'Severity Distribution (per 1000 Patients)',
data: severityModel.map(entry => entry.patients),
borderWidth: 1
}
]
},
options: {
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true
}
},
plugins: {
title: {
display: true,
text: 'Severity distribution (1000 Patient Sample)',
padding: {
top: 30,
bottom: 30
}
}
}
}
})
}