{% extends 'miner/base.html' %}
{% comment %}
{% load nvd3_tags %}
{% endcomment %}
{% block extra_head %}
{% comment %}
{% include_nvd3jscss %}
{% if chart.charttype == 'pieChart' %}
{% load_chart chart.charttype chart.chartdata "nv_chart_container" %}
{% else %}
{% load_chart "lineWithFocusChart" chart.chartdata "nv_chart_container" chart.date_tag %}
{% endif %}
{% endcomment %}
{% endblock %}
{% block content %}
{#
{{ chart|safe }}
#}
{{ stats.heading }}
Covariance
|
{% for field in stats.fields %}
{{ field }} |
{% endfor %}
{% for row in stats.cov %}
{% with forloop.counter|cut:" " as index %}
{{ row|slice:":1"|last }} |
{% for val in row|last %}
{{ val|stringformat:".3e" }} |
{% endfor %}
{% endwith %}
{% endfor %}
Pierson Linear Correlation
|
{% for field in stats.fields %}
{{ field }} |
{% endfor %}
{% for row in stats.R %}
{% with forloop.counter|cut:" " as index %}
{{ row|slice:":1"|last }} |
{% for val in row|last %}
{{ val|floatformat:"-3" }} |
{% endfor %}
{% endwith %}
{% endfor %}
{{ chart.chart_title }}
{% comment %}
{% include_container "nv_chart_container" 400 800 %}
{% endcomment %}
{% endblock %}