ilhamap commited on
Commit
9d108e6
·
verified ·
1 Parent(s): 3ff9764

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -4
app.py CHANGED
@@ -9,10 +9,6 @@ x = df['year']
9
  y = df['number']
10
 
11
  fig = plt.figure(figsize=(5, 5))
12
- plt.subplot(121)
13
  plt.plot(x,y)
14
  plt.title('line plot', fontweight='bold')
15
- plt.subplot(122)
16
- plt.plot(x,y,'.')
17
- plt.title('dot plot', fontweight='bold')
18
  st.pyplot(fig)
 
9
  y = df['number']
10
 
11
  fig = plt.figure(figsize=(5, 5))
 
12
  plt.plot(x,y)
13
  plt.title('line plot', fontweight='bold')
 
 
 
14
  st.pyplot(fig)