Update app.py
Browse files
app.py
CHANGED
@@ -30,8 +30,8 @@ if text:
|
|
30 |
out = pipe(text)
|
31 |
df = get_sentiment(out[0])
|
32 |
fig, ax = plt.subplots()
|
33 |
-
c = ['
|
34 |
-
ax.bar(df.index, df[0], color=c)
|
35 |
|
36 |
st.pyplot(fig)
|
37 |
|
|
|
30 |
out = pipe(text)
|
31 |
df = get_sentiment(out[0])
|
32 |
fig, ax = plt.subplots()
|
33 |
+
c = ['#C34A36', '#FFC75F', '#008F7A']
|
34 |
+
ax.bar(df.index, df[0], color=c, width=0.4)
|
35 |
|
36 |
st.pyplot(fig)
|
37 |
|