QuantumLearner commited on
Commit
43280b4
·
verified ·
1 Parent(s): 346fa36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -224,7 +224,14 @@ if st.sidebar.button("Run Analysis"):
224
  zaxis_title='Yield (%)',
225
  yaxis=dict(type='category'), # Ensure that y-axis is treated as categorical
226
  xaxis=dict(type='date') # Ensure that x-axis is treated as date
227
- )
 
 
 
 
 
 
 
228
  )
229
 
230
  st.plotly_chart(fig4)
 
224
  zaxis_title='Yield (%)',
225
  yaxis=dict(type='category'), # Ensure that y-axis is treated as categorical
226
  xaxis=dict(type='date') # Ensure that x-axis is treated as date
227
+ ),
228
+ scene_camera=dict(
229
+ eye=dict(x=-1.5, y=-1.5, z=1)
230
+ ),
231
+ margin=dict(l=0, r=0, b=0, t=50),
232
+ autosize=False,
233
+ width=1000,
234
+ height=700
235
  )
236
 
237
  st.plotly_chart(fig4)