{% macro featureDistributionReport(item) -%}

Feature Distribution Plots

Plots of observed feature distributions. Where reference ranges are available, they are indicated on the plot as a grey box. Distributions that sit within the reference range are shaded green, those that sit outside red, and if no reference range is available distributions are shaded blue.

{% for key, value in item|dictsort %}

{{ key }}

{% for key2, value2 in value|dictsort %}
Observed distribution of {{ key2 }}.

Observed distribution of {{ key2 }}.

{% endfor %}
{% endfor %}
{%- endmacro %}