Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -235,7 +235,7 @@ def main():
|
|
| 235 |
# Add a button to export data to CSV
|
| 236 |
if st.button("Export to CSV"):
|
| 237 |
# Export the DataFrame to CSV
|
| 238 |
-
csv_data =
|
| 239 |
|
| 240 |
# Create a link to download the CSV file
|
| 241 |
st.download_button(
|
|
|
|
| 235 |
# Add a button to export data to CSV
|
| 236 |
if st.button("Export to CSV"):
|
| 237 |
# Export the DataFrame to CSV
|
| 238 |
+
csv_data = full_df.to_csv(index=False)
|
| 239 |
|
| 240 |
# Create a link to download the CSV file
|
| 241 |
st.download_button(
|