This message was deleted.
# help
s
This message was deleted.
z
It seems to be working for the example
penguins
dataset. Is there something in your data that might be causing a limited export option?
f
The CSV option is not available if your data contains anything but scalar values (strings, numbers, bools) and dates.
1
a
@Fabian Iwand I see, I have a column with arrays. I've been searching for notebook that implements "csv downloader", but haven't had any luck. Any chance you know of any?
f
Are you looking for one in general, or as a means to work around this limitation?
m
how would you expect arrays to show up in a CSV?
a
Thank you, @Fabian Iwand!
@Michael Cooper, since the person I'm sending the .csv file to is an excel user, as comma separated values within a cell:
f
I think those are thousands separators, not comma separated values?
a
Sorry I'm not able to share the notebook because of the data source (work-related), but they are not thousand separators:
👍 1
m
My question was actually sort of leading: What I mean to say is that the format of a cell that contains an array is not defined by CSV, and so we can't have a generic export to CSV-with-arrays. You'd have to know your expected consumer, and work towards that.
In this case, you could have a calculated field that is
after_values.map(d => d.toString()).join(",")
which would be a string value that could be serialized to CSV