Spaces:
Runtime error
Runtime error
jcmachicao
commited on
Commit
•
90374b9
1
Parent(s):
89500a9
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import pandas as pd
|
|
3 |
|
4 |
# Load dataframe
|
5 |
file = st.file_uploader('Seleccione un archivo: ')
|
6 |
-
df = file
|
7 |
|
8 |
if file is None:
|
9 |
pass
|
|
|
3 |
|
4 |
# Load dataframe
|
5 |
file = st.file_uploader('Seleccione un archivo: ')
|
6 |
+
df = pd.DataFrame(file)
|
7 |
|
8 |
if file is None:
|
9 |
pass
|