18 lines
398 B
HTML
18 lines
398 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<h2>Predictions and Classifcations based on Historical Data</h2>
|
|
<div style = "height:10px"></div>
|
|
<p>
|
|
<div id='chart' class='chart'”></div>
|
|
</p>
|
|
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
|
|
<script type='text/javascript'>
|
|
var graphs = {{ plot | safe }};
|
|
Plotly.plot('chart',graphs,{});
|
|
</script>
|
|
|
|
|
|
|
|
{% endblock %}
|