{{ statistic.name|capitalize }} |
{% if statistic.data_type == 'datetime' %}
{{ statistic.result|datetimeformat }} |
{% elif statistic.data_type == 'histogram' %}
{% if metadata %}
Lower limit |
{{ metadata.limit_low }} |
Upper limit |
{{ metadata.limit_high }} |
{% endif %}
{{ series_name }} sample values |
Bin start |
Bin end |
Percentage of samples |
{% for value in statistic.result.hist|normalizevalues %}
{{ statistic.result.bin_edges[loop.index0]|numberformat }} - {{ statistic.result.bin_edges[loop.index]|numberformat }} |
{{ statistic.result.bin_edges[loop.index0] }} |
{{ statistic.result.bin_edges[loop.index] }} |
{{ (100 * value)|round|int }} |
{% endfor %}
|
{% elif statistic.data_type == 'correlation' %}
|
{% for series in statistic.result.series %}
{% endfor %}
{% for series in statistic.result.series %}
{% set outer_loop = loop %}
{{ series.name }} ({{ series.source }}) |
{% for column in statistic.result.columns %}
{{ column[outer_loop.index0] }} |
{% endfor %}
{% endfor %}
|
{% elif statistic.data_type == 'timedelta' %}
{{ statistic.result|numberformat }}s |
{% elif statistic.data_type == 'pct' %}
{{ statistic.result|numberformat }}% |
{% else %}
{{ statistic.result|numberformat }} |
{% endif %}
{% endif %}
{% endfor %}