change plot limit
Browse files
app.py
CHANGED
@@ -281,7 +281,7 @@ if "result" in st.session_state:
|
|
281 |
st.write(df_numeric)
|
282 |
|
283 |
fig = px.line(df, y=df_numeric.columns, title="Mean NDVI", markers=True)
|
284 |
-
fig.update_yaxes(range=[-
|
285 |
st.plotly_chart(fig)
|
286 |
|
287 |
st.subheader("Visual Inspection")
|
|
|
281 |
st.write(df_numeric)
|
282 |
|
283 |
fig = px.line(df, y=df_numeric.columns, title="Mean NDVI", markers=True)
|
284 |
+
fig.update_yaxes(range=[-0.2, 1])
|
285 |
st.plotly_chart(fig)
|
286 |
|
287 |
st.subheader("Visual Inspection")
|