{% macro display_iterations(ilist) %}
{% for it in ilist %}
{{ display_single_iteration(it) }}
{% endfor %}
{% endmacro %}
{% macro display_single_iteration(idata) %}
Iteration {{ idata.count }}
{% for pp in idata.rel_plot_paths %}
{% endfor %}
{{ idata.xl|length - 1 }} samples were excluded from the PCA
{% for x in idata.xl %}
{% if loop.first %}
{% for cell in x %}
{{ cell }} |
{% endfor %}
{% else %}
{% for cell in x %}
{{ cell }} |
{% endfor %}
{% endif %}
{% endfor %}
Detected {{ idata.ol|length - 1}} outliers
{% for x in idata.ol %}
{% if loop.first %}
{% for cell in x %}
{{ cell }} |
{% endfor %}
{% else %}
{% for cell in x %}
{{ cell }} |
{% endfor %}
{% endif %}
{% endfor %}
{% endmacro %}
PCA Report
PCA Report
Date: {{ date }}
Input data file: {{ dfname }}
Log File: {{ lfname }}
{{ logcontent }}
Standard Deviation Multiplier: {{ sd_cutoff }}
Clustering Method: {{ cmethod }}
Cluster Trimming: {{ tmethod }}
Iteration data
{{ display_iterations(iteration_data) }}