Update app.py
Browse files
app.py
CHANGED
@@ -156,7 +156,7 @@ if st.button("Sentiment Analysis", type="secondary"):
|
|
156 |
plt.axis('off')
|
157 |
st.pyplot(fig)
|
158 |
|
159 |
-
result1 = result.drop(result.columns[
|
160 |
csv = result1.to_csv(index=False)
|
161 |
st.download_button(
|
162 |
label="Download data as CSV",
|
|
|
156 |
plt.axis('off')
|
157 |
st.pyplot(fig)
|
158 |
|
159 |
+
result1 = result.drop(result.columns['Review Number'], axis=1)
|
160 |
csv = result1.to_csv(index=False)
|
161 |
st.download_button(
|
162 |
label="Download data as CSV",
|