Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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)
|