Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ if uploaded_file is not None:
|
|
| 13 |
dataframe = pd.read_csv(uploaded_file)
|
| 14 |
if query:
|
| 15 |
query_result = execute_query(query.split(','), dataframe)
|
| 16 |
-
st.markdown('**'Prediction'**')
|
| 17 |
st.markdown('_'+query_result+'_')
|
| 18 |
st.dataframe(dataframe)
|
| 19 |
|
|
|
|
| 13 |
dataframe = pd.read_csv(uploaded_file)
|
| 14 |
if query:
|
| 15 |
query_result = execute_query(query.split(','), dataframe)
|
| 16 |
+
st.markdown('**'+Prediction+'**')
|
| 17 |
st.markdown('_'+query_result+'_')
|
| 18 |
st.dataframe(dataframe)
|
| 19 |
|