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