Cluster Details (node id: {{ node_id }})
{% include 'histogram.html' %}
{% if projection_stats %}
Projection Statistics
Lens | Mean |
Max |
Min |
{% for projection in projection_stats %}
{{ projection['name'] }} |
{{ projection['mean'] }} |
{{ projection['max'] }} |
{{ projection['min'] }} |
{% endfor %}
{% endif %}
{% if cluster_stats %}
{% if cluster_stats['above']|length > 0 %}
Above Average
Feature |
Mean |
STD |
{% for stat in cluster_stats['above'] %}
{{ stat['feature'] }} | {{ stat['mean'] }} |
{{ stat['std'] }}x |
{% endfor %}
{% endif %}
{% if cluster_stats['below']|length > 0 %}
Below Average
Feature |
Mean |
STD |
{% for stat in cluster_stats['below'] %}
{{ stat['feature'] }} | {{ stat['mean'] }} |
{{ stat['std'] }}x |
{% endfor %}
{% endif %}
Size
{{ cluster_stats['size'] }}
{% endif %}
Members
{% for tooltip in custom_tooltips %}
{{ tooltip }}
{% endfor %}