-
Notifications
You must be signed in to change notification settings - Fork 0
/
charts.js
163 lines (127 loc) · 4.79 KB
/
charts.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
function init() {
// Grab a reference to the dropdown select element
var selector = d3.select("#selDataset");
// Use the list of sample names to populate the select options
d3.json("samples.json").then((data) => {
var sampleNames = data.names;
sampleNames.forEach((sample) => {
selector.append("option").text(sample).property("value", sample);
});
// Use the first sample from the list to build the initial plots
var firstSample = sampleNames[0];
buildCharts(firstSample);
buildMetadata(firstSample);
});
}
// Initialize the dashboard
init();
function optionChanged(newSample) {
// Fetch new data each time a new sample is selected
buildMetadata(newSample);
buildCharts(newSample);
}
// Demographics Panel
function buildMetadata(sample) {
d3.json("samples.json").then((data) => {
var metadata = data.metadata;
// Filter the data for the object with the desired sample number
var resultArray = metadata.filter(sampleObj => sampleObj.id == sample);
var result = resultArray[0];
var washingFrequency = parseFloat(result.wfreq);
// Use d3 to select the panel with id of `#sample-metadata`
var PANEL = d3.select("#sample-metadata");
// Use `.html("") to clear any existing metadata
PANEL.html("");
// Use `Object.entries` to add each key and value pair to the panel
// Hint: Inside the loop, you will need to use d3 to append new
// tags for each key-value in the metadata.
Object.entries(result).forEach(([key, value]) => {
PANEL.append("h6").text(`${key.toUpperCase()}: ${value}`);
});
//Create the trace for the gauge chart.
var gaugeData = [{
type: "indicator",
mode: "gauge+number",
value: washingFrequency,
title: {text: "Scrubs per Week"},
gauge: {
axis: {range: [null,10], tickvals: [0,2,4,6,8,10], tickwidth: 1, tickcolor: "black"},
bar: {color: "black"},
steps: [
{range: [0,2], color: "red"},
{range: [2,4], color: "orange"},
{range: [4,6], color: "yellow"},
{range: [6,8], color: "lightgreen"},
{range: [8,10], color: "green"}
]
}
}
];
// 5. Create the layout for the gauge chart.
var gaugeLayout = {
title: "Belly Button Washing Frequency"
};
// 6. Use Plotly to plot the gauge data and layout.
Plotly.newPlot("gauge", gaugeData, gaugeLayout);
});
}
// 1. Create the buildCharts function.
function buildCharts(sample) {
// 2. Use d3.json to load and retrieve the samples.json file
d3.json("samples.json").then((data) => {
// 3. Create a variable that holds the samples array.
var samples = data.samples;
// 4. Create a variable that filters the samples for the object with the desired sample number.
var samplesArray = samples.filter(sampleObj => sampleObj.id == sample);
// 5. Create a variable that holds the first sample in the array.
var firstSample = samplesArray[0];
// 6. Create variables that hold the otu_ids, otu_labels, and sample_values.
var otuIds = firstSample.otu_ids;
var otuLabels = firstSample.otu_labels;
var sampleValues = firstSample.sample_values;
// 7. Create the yticks for the bar chart.
// Hint: Get the the top 10 otu_ids and map them in descending order
// so the otu_ids with the most bacteria are last.
var sortedSampleValues = sampleValues.slice(0,10).reverse();
var topTenIds = otuIds.slice(0,10).reverse();
var topTenLabels = otuLabels.slice(0,10).reverse();
var yticks = topTenIds.map(tick => "OTU " + tick);
// 8. Create the trace for the bar chart.
var barData = [{
type: "bar",
x: sortedSampleValues,
y: yticks,
orientation: 'h',
text: topTenLabels
}];
// 9. Create the layout for the bar chart.
var barLayout = {
title: "Top 10 Bacteria Cultures Found",
xaxis: {title: ""},
yaxis: {title: ""}
};
// 10. Use Plotly to plot the data with the layout.
Plotly.newPlot("bar", barData, barLayout);
// 1. Create the trace for the bubble chart.
var bubbleData = [{
x: otuIds,
y: sampleValues,
text: otuLabels,
mode: 'markers',
marker: {
size: sampleValues,
color: otuIds,
colorscale: 'Earth'
},
}
];
// 2. Create the layout for the bubble chart.
var bubbleLayout = {
title: "Bacteria Cultures Per Sample",
xaxis: {title: "OTU ID"},
yaxis: {title: ""}
};
// 3. Use Plotly to plot the data with the layout.
Plotly.newPlot("bubble", bubbleData, bubbleLayout);
});
}