Update app.py
Browse files
app.py
CHANGED
@@ -177,6 +177,8 @@ if st.button("Sentiment Analysis", type="secondary"):
|
|
177 |
plt.axis('off')
|
178 |
st.pyplot(fig)
|
179 |
|
|
|
|
|
180 |
|
181 |
csv = result.to_csv(index=False)
|
182 |
st.download_button(
|
|
|
177 |
plt.axis('off')
|
178 |
st.pyplot(fig)
|
179 |
|
180 |
+
result = pd.concat([df, sentiment_df], axis=1)
|
181 |
+
|
182 |
|
183 |
csv = result.to_csv(index=False)
|
184 |
st.download_button(
|