-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathchart.js
More file actions
171 lines (146 loc) · 5.54 KB
/
chart.js
File metadata and controls
171 lines (146 loc) · 5.54 KB
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
function init() {
// Grab a reference to the dropdown select element
let selector = d3.select("#selDataset");
// Use the list of sample names to populate the select options
d3.json("samples.json").then((data) => {
let 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) => {
let metadata = data.metadata;
// Filter the data for the object with the desired sample number
let resultArray = metadata.filter(sampleObj => sampleObj.id == sample);
let result = resultArray[0];
// Use d3 to select the panel with id of `#sample-metadata`
let 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}`);
});
});
}
// 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.
let samples = data.samples;
// 4. Create a variable that filters the samples for the object with the desired sample number.
let sampleResults = samples.filter(samplesObject => samplesObject.id == sample);
// 5. Create a variable that holds the first sample in the array.
let results = sampleResults[0];
// 6. Create variables that hold the otu_ids, otu_labels, and sample_values.
let otuIDs = results.otu_ids;
let otuLabels = results.otu_labels.slice(0,10).reverse();
let sampleValues = results.sample_values.slice(0,10).reverse();
let bubbleOtuLabels = results.otu_labels;
let bubbleSampleValues = results.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.
let yticks = otuIDs.map(obj => "OTU: " + obj).slice(0,10).reverse()
// let yticksresults = sampleResults.map((a,b) => a.sample_values - b.sample_values).reverse();
// let yticks = yticksresults.slice(0,10);
console.log(yticks)
// 8. Create the trace for the bar chart.
let barData = [{
x: sampleValues,
y: yticks,
type:"bar",
orientation: 'h',
text:otuLabels
}];
// 9. Create the layout for the bar chart.
let barLayout = {
title: "Top 10 Bacteria Found in Sample",
xaxis: {title: "Sample Values"},
yaxis: {title: "OTU ID"},
//making the chart background transparent to fit HTML page modifications later
paper_bgcolor:'rgba(0,0,0,0)',
plot_bgcolor:'rgba(0,0,0,0)'
};
// 10. Use Plotly to plot the data with the layout.
Plotly.newPlot("bar", barData, barLayout);
// 1. Create the trace for the bubble chart.
let bubbleData = [{
x: otuIDs,
y: bubbleSampleValues,
text: bubbleOtuLabels,
mode: "markers",
marker: {
size: bubbleSampleValues,
color: otuIDs,
colorscale: "Earth"
}
}];
// 2. Create the layout for the bubble chart.
let bubbleLayout = {
title: "Top 10 Bactera Found in Sample",
xaxis: {title: "OTU ID"},
yaxis: {title: "Sample Values"}
};
// 3. Use Plotly to plot the data with the layout.
Plotly.newPlot("bubble", bubbleData, bubbleLayout);
//create a data.metadata so that you can access washing
//freq bc its in metadata not samples
let metadata = data.metadata;
// Filter the data for the object with the desired sample number
let resultArray = metadata.filter(sampleObj => sampleObj.id == sample);
let wfreqResults = resultArray[0];
// 3. Create a variable that holds the washing frequency.
let wfreq = parseFloat(wfreqResults.wfreq);
console.log(wfreq)
// 4. Create the trace for the gauge chart.
let gaugeData = [{
domain: { x: [0, 1], y: [0, 1] },
title: {text: "<b>Belly Button Washing Frequency </b> <br></br>Scrubs per Week"},
value: wfreq,
type: "indicator",
mode: "gauge+number",
gauge: {
axis: {range: [null, 10], dtick: "2"},
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" }
],
dtick:2
},
}];
// 5. Create the layout for the gauge chart.
let gaugeLayout = {
automargin: true,
//making the chart background transparent to fit HTML page modifications later
paper_bgcolor:'rgba(0,0,0,0)',
plot_bgcolor:'rgba(0,0,0,0)'
};
// // 6. Use Plotly to plot the gauge data and layout.
Plotly.newPlot("gauge", gaugeData, gaugeLayout);
});
};