lpnguyen commited on
Commit
8e9c140
1 Parent(s): c9e08af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -175,12 +175,11 @@ st.write(r"""
175
  Notice that when $\beta < 1$, the population goes extint at the singular strategy
176
  """
177
  )
 
178
 
179
  col7, col8, col9 = st.columns(3, gap="large")
180
 
181
  with col7:
182
- zm2 = st.slider("Mutant trait value", 0.0, 1.0, value=0.1, step=0.01)
183
-
184
  st.plotly_chart(
185
  plot_invasionfitness(zm2, zlist2, invasion_fitness2,
186
  (alpha, beta), [-0.2, 0.2])
@@ -277,9 +276,11 @@ st.write(
277
 
278
  """
279
  )
 
 
280
  col10, col11, col12 = st.columns(3, gap="large")
 
281
  with col10:
282
- zm3 = st.slider("Mutant trait value", 0.0, 10.0, 0.1)
283
  st.plotly_chart(plot_invasionfitness(
284
  zm3, zlist3, invasion_fitness3, (z0, k), (-1, 1)))
285
  with col11:
 
175
  Notice that when $\beta < 1$, the population goes extint at the singular strategy
176
  """
177
  )
178
+ zm2 = st.slider("Mutant trait value", 0.0, 1.0, value=0.1, step=0.01)
179
 
180
  col7, col8, col9 = st.columns(3, gap="large")
181
 
182
  with col7:
 
 
183
  st.plotly_chart(
184
  plot_invasionfitness(zm2, zlist2, invasion_fitness2,
185
  (alpha, beta), [-0.2, 0.2])
 
276
 
277
  """
278
  )
279
+ zm3 = st.slider("Mutant trait value", 0.0, 10.0, 0.1)
280
+
281
  col10, col11, col12 = st.columns(3, gap="large")
282
+
283
  with col10:
 
284
  st.plotly_chart(plot_invasionfitness(
285
  zm3, zlist3, invasion_fitness3, (z0, k), (-1, 1)))
286
  with col11: