Update modules/ui.py
Browse files- modules/ui.py +5 -4
modules/ui.py
CHANGED
@@ -191,12 +191,13 @@ def display_student_progress(username, lang_code='es'):
|
|
191 |
print("colors:", colors)
|
192 |
print("labels:", df['label'].tolist())
|
193 |
|
194 |
-
#
|
195 |
-
squarify.plot(sizes=df['count'], label=df['label'], color=colors, alpha=0.8, ax=ax)
|
196 |
|
197 |
# A帽adir etiquetas manualmente
|
198 |
-
for
|
199 |
-
|
|
|
200 |
|
201 |
plt.title('Treemap del total de palabras por categoria gram谩tical')
|
202 |
plt.axis('off')
|
|
|
191 |
print("colors:", colors)
|
192 |
print("labels:", df['label'].tolist())
|
193 |
|
194 |
+
# Generar el treemap
|
195 |
+
rects = squarify.plot(sizes=df['count'], label=df['label'], color=colors, alpha=0.8, ax=ax)
|
196 |
|
197 |
# A帽adir etiquetas manualmente
|
198 |
+
for r, label in zip(rects, df['label']):
|
199 |
+
x, y, dx, dy = r['x'], r['y'], r['dx'], r['dy']
|
200 |
+
ax.text(x + dx/2, y + dy/2, label, ha='center', va='center', wrap=True)
|
201 |
|
202 |
plt.title('Treemap del total de palabras por categoria gram谩tical')
|
203 |
plt.axis('off')
|