ilhamap commited on
Commit
1106544
1 Parent(s): 9d108e6

Update app.py

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