Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2025 05:41 AM - edited 09-06-2025 05:44 AM
@pop_smoke you also have the option to just literally write it out as a single CSV as such:
This does involve converting it to a pandas dataframe though.
Just depends on your usecase ☺️.
Syntax
# Convert to Pandas and save locally (good for small DataFrames)
df.toPandas().to_csv("/Volumes/workspace/default/volume_files/media_customer_reviews_single.csv", index=False)
All the best,
BS