Skip to content
Snippets Groups Projects
Commit d71655ba authored by Brian Moe's avatar Brian Moe
Browse files

Took out all but total submission rates. (performance reasons)

parent f55cc42f
No related branches found
No related tags found
No related merge requests found
......@@ -55,12 +55,15 @@ def rate_data(request):
window_size = day
types = [
("LM", Q(analysisType="LM")),
("Omega", Q(analysisType="Omega")),
("CWB", Q(analysisType="CWB")),
("MBTA", Q(analysisType="MBTA")),
("total", Q()),
]
# types = [
# ("LM", Q(analysisType="LM")),
# ("Omega", Q(analysisType="Omega")),
# ("CWB", Q(analysisType="CWB")),
# ("MBTA", Q(analysisType="MBTA")),
# ("total", Q()),
# ]
ts = ts_min
n = 1
......
......@@ -62,11 +62,11 @@ function toggle(id) {
chart.addAxis("x", {labelFunc:xlabel});
chart.addAxis("y", { vertical: true });
chart.addSeries("Total", timeData['total']);
chart.addSeries("Low Mass", timeData['LM']);
chart.addSeries("Omega", timeData['Omega']);
chart.addSeries("MBTA", timeData['MBTA']);
chart.addSeries("cWB", timeData['CWB']);
chart.addSeries("Total / Day", timeData['total']);
// chart.addSeries("Low Mass", timeData['LM']);
// chart.addSeries("Omega", timeData['Omega']);
// chart.addSeries("MBTA", timeData['MBTA']);
// chart.addSeries("cWB", timeData['CWB']);
chart.render();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment