Spaces:
Runtime error
Runtime error
fix: add wide mode
Browse files
app.py
CHANGED
|
@@ -3,6 +3,7 @@ import pathlib
|
|
| 3 |
import json
|
| 4 |
import pandas as pd
|
| 5 |
|
|
|
|
| 6 |
st.header("Time Series Preprocessing Pipeline")
|
| 7 |
st.markdown("Users can load their time-series data and select a set of transformations to prepare a training set for univariate or multivariate time-series classification.\
|
| 8 |
Go ahead and use the sidebar on the left to upload your data files in *.json* format and start exploring and transforming it!")
|
|
@@ -104,4 +105,5 @@ with col2:
|
|
| 104 |
st.info("Your data has been downloaded, you can visualize and detect outliers in the 'Plotting' and 'Detect Outliers' pages on the sidebar.")
|
| 105 |
|
| 106 |
if not df_base.empty:
|
| 107 |
-
|
|
|
|
|
|
| 3 |
import json
|
| 4 |
import pandas as pd
|
| 5 |
|
| 6 |
+
st. set_page_config(layout="wide")
|
| 7 |
st.header("Time Series Preprocessing Pipeline")
|
| 8 |
st.markdown("Users can load their time-series data and select a set of transformations to prepare a training set for univariate or multivariate time-series classification.\
|
| 9 |
Go ahead and use the sidebar on the left to upload your data files in *.json* format and start exploring and transforming it!")
|
|
|
|
| 105 |
st.info("Your data has been downloaded, you can visualize and detect outliers in the 'Plotting' and 'Detect Outliers' pages on the sidebar.")
|
| 106 |
|
| 107 |
if not df_base.empty:
|
| 108 |
+
with col1:
|
| 109 |
+
st.warning("Consider running outlier detection to clean your data!", icon="⚠️")
|