Zeel commited on
Commit
91f56fd
·
1 Parent(s): c13b321
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -268,7 +268,8 @@ if "result" in st.session_state:
268
  df[column] = pd.to_numeric(df[column], errors="ignore")
269
 
270
  df_numeric = df.select_dtypes(include=["float64"])
271
-
 
272
  fig = px.line(df, y=df_numeric.columns, title="Mean NDVI", markers=True)
273
  fig.update_yaxes(range=[-1, 1])
274
  st.plotly_chart(fig)
 
268
  df[column] = pd.to_numeric(df[column], errors="ignore")
269
 
270
  df_numeric = df.select_dtypes(include=["float64"])
271
+ st.write(df_numeric)
272
+
273
  fig = px.line(df, y=df_numeric.columns, title="Mean NDVI", markers=True)
274
  fig.update_yaxes(range=[-1, 1])
275
  st.plotly_chart(fig)