Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from sklearn.ensemble import RandomForestRegressor
|
|
8 |
import plotly.express as px
|
9 |
|
10 |
# Data Ingestion
|
11 |
-
uploaded_file = st.file_uploader("Upload your dataset:", type=["csv",
|
12 |
if uploaded_file:
|
13 |
df = pd.read_csv(uploaded_file)
|
14 |
st.write("Data Preview:")
|
|
|
8 |
import plotly.express as px
|
9 |
|
10 |
# Data Ingestion
|
11 |
+
uploaded_file = st.file_uploader("Upload your dataset:", type=["csv", "xlsx", "json"])
|
12 |
if uploaded_file:
|
13 |
df = pd.read_csv(uploaded_file)
|
14 |
st.write("Data Preview:")
|