Spaces:
Runtime error
Runtime error
jcmachicao
commited on
Commit
•
ddd4a16
1
Parent(s):
e48b6c8
Update app.py
Browse files
app.py
CHANGED
@@ -29,8 +29,8 @@ if file is not None:
|
|
29 |
st.write('Cantidad de afirmaciones: ', len(group))
|
30 |
texto_tot = ''
|
31 |
for index, row in group.iterrows():
|
32 |
-
text = 'En el rubro sobre ' + row.Pregunta + ' la categoría ' + row.Categoria + ' responde ' + \
|
33 |
-
row.Respuesta + ' un ' + str(row.dif2) + '% más que la categoría ' + row.Cat_Comparada
|
34 |
texto_tot = texto_tot + '\n' + text
|
35 |
st.write(texto_tot)
|
36 |
|
|
|
29 |
st.write('Cantidad de afirmaciones: ', len(group))
|
30 |
texto_tot = ''
|
31 |
for index, row in group.iterrows():
|
32 |
+
text = '* En el rubro sobre ' + row.Pregunta + ' la categoría ' + row.Categoria + ' responde ' + \
|
33 |
+
row.Respuesta + ' un ' + str(row.dif2) + '% más que la categoría ' + row.Cat_Comparada + '\n'
|
34 |
texto_tot = texto_tot + '\n' + text
|
35 |
st.write(texto_tot)
|
36 |
|