Spaces:
Runtime error
Runtime error
Update templates/index.html
Browse files- templates/index.html +20 -6
templates/index.html
CHANGED
|
@@ -117,15 +117,29 @@
|
|
| 117 |
<div id="sankey-graph">
|
| 118 |
{% if sankey_graph %}
|
| 119 |
<h2>Gráfico de Sankey</h2>
|
| 120 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
<img src="{{ url_for('static', filename='bidirectional_arrows.png') }}"
|
| 122 |
alt="Flechas Bidireccionales"
|
| 123 |
-
style="
|
| 124 |
-
<div style="position: relative; z-index: 0;">
|
| 125 |
-
{{ sankey_graph | safe }}
|
| 126 |
-
</div>
|
| 127 |
</div>
|
| 128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 129 |
</div>
|
| 130 |
</div>
|
| 131 |
</body>
|
|
|
|
| 117 |
<div id="sankey-graph">
|
| 118 |
{% if sankey_graph %}
|
| 119 |
<h2>Gráfico de Sankey</h2>
|
| 120 |
+
|
| 121 |
+
<!-- Contenedor para la descripción y las flechas -->
|
| 122 |
+
<div style="text-align: center; margin-bottom: 20px;">
|
| 123 |
+
<!-- Texto descriptivo -->
|
| 124 |
+
<p style="font-size: 16px; color: #e0e0e0; max-width: 80%; margin: auto;">
|
| 125 |
+
Este gráfico muestra cómo los datos se agrupan y se combinan.
|
| 126 |
+
En el lado izquierdo, están los grupos más pequeños y específicos,
|
| 127 |
+
formados con datos que están muy relacionados entre sí.
|
| 128 |
+
A medida que avanzamos hacia la derecha, los grupos se hacen más grandes y generales,
|
| 129 |
+
combinando varios de los grupos más pequeños en categorías amplias.
|
| 130 |
+
</p>
|
| 131 |
+
|
| 132 |
+
<!-- Imagen de flechas bidireccionales -->
|
| 133 |
<img src="{{ url_for('static', filename='bidirectional_arrows.png') }}"
|
| 134 |
alt="Flechas Bidireccionales"
|
| 135 |
+
style="width: 70%; max-width: 600px;">
|
|
|
|
|
|
|
|
|
|
| 136 |
</div>
|
| 137 |
+
|
| 138 |
+
<!-- Gráfico de Sankey -->
|
| 139 |
+
<div>
|
| 140 |
+
{{ sankey_graph | safe }}
|
| 141 |
+
</div>
|
| 142 |
+
{% endif %}
|
| 143 |
</div>
|
| 144 |
</div>
|
| 145 |
</body>
|