Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Writing to CSV #3

Closed
eloualiche opened this issue Sep 11, 2020 · 1 comment
Closed

Writing to CSV #3

eloualiche opened this issue Sep 11, 2020 · 1 comment

Comments

@eloualiche
Copy link

I am trying to save a dataset with monthly dates. It seems that I am not able to at this stage.

It seems that everything is ok for Dates:

using DataFrames, MonthlyDates, Dates
using CSV
df = DataFrame(x = DateTime(1983, 12, 1), y = "a", z=1)
CSV.write("test.csv", df)

Monthly dates would probably have to be translated into dates?

df = DataFrame(x = MonthlyDate(1983, 12), y = "a", z=1)
CSV.write("test.csv", df)

Probably would make sense to crosspost on CSV.jl

@matthieugomez
Copy link
Owner

Done with the last commit. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants