{% extends "base.html" %} {% from "_macros.html" import nav_page_title_span %} {% block title %} {% if kind == "z3" %}3D latent space visualizer · cryoDRGN{% else %}Pair grid · cryoDRGN{% endif %} {% endblock %} {% block nav_page_title %} {% if kind == "z3" %} {{ nav_page_title_span("3d latent space visualizer") }} {% else %} {{ nav_page_title_span("Pairwise plot generator") }} {% endif %} {% endblock %} {% block content %}
{% if kind == "zdim" %}

The pairwise grid needs at least two latent coordinates. This reconstruction has {{ n }}.

{% elif kind == "z3" %}

The 3D latent space visualizer needs at least three latent coordinates. This reconstruction has {{ n }}.

{% elif kind == "pca" %}

The diagonal embedding needs PCA components in the analysis table for this epoch.

{% else %}

There is no numeric column available to color the lower panels.

{% endif %}
{% endblock %}