Commit
·
f2126db
1
Parent(s):
cc9850e
Update app.py
Browse files
app.py
CHANGED
|
@@ -17,8 +17,8 @@ file = st.file_uploader('Upload a csv file here')
|
|
| 17 |
if file is not None:
|
| 18 |
query = st.text_input('Query')
|
| 19 |
data = pd.read_csv(file)
|
| 20 |
-
|
| 21 |
-
print(data)
|
| 22 |
'''
|
| 23 |
st.subheader('Data')
|
| 24 |
st.table(data.head())
|
|
|
|
| 17 |
if file is not None:
|
| 18 |
query = st.text_input('Query')
|
| 19 |
data = pd.read_csv(file)
|
| 20 |
+
st.write(pipe(table=data))
|
| 21 |
+
#print(data)
|
| 22 |
'''
|
| 23 |
st.subheader('Data')
|
| 24 |
st.table(data.head())
|