-
Notifications
You must be signed in to change notification settings - Fork 9
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
Convert DataFrames.DataFrame <-> TimeSeries.TimeArray #46
Comments
Ah, this is a bug! Should be fixed in #47 and I'll tag a new release asap. Thanks for reporting! |
Thanks @davidanthoff |
Yes, that would be very useful: now tracked in #48. |
That's why I opened JuliaStats/TimeSeries.jl#297 |
There is probably a way to achieve this via the new CSVFiles.jl stuff. Essentially the idea would be that it would be enough to accept an iterable table in a constructor and use the stuff from CSVFiles.jl to convert a stream in CSV format into an iterable table. I'm tracking this in queryverse/CSVFiles.jl#5. |
Once queryverse/CSVFiles.jl#6 lands, one should be able to do this: using FileIO, CSVFiles, DataFrame
dat = """Date,Open,High,Low,Close,Volume
2012-01-03,11.0,11.25,10.99,11.13,45709900
2012-01-04,11.15,11.53,11.07,11.3,79725200
2012-01-05,11.33,11.63,11.24,11.59,67877500
2012-01-06,11.74,11.8,11.52,11.71,59840700
2012-01-09,11.83,11.95,11.7,11.8,53981500
2012-01-10,12.0,12.05,11.63,11.8,121750600
2012-01-11,11.74,12.18,11.65,12.07,63806000"""
io = IOBuffer(dat)
df = DataFrame(load(Stream(format"CSV", io)))
# Or using pipe syntax, once I merge one more thing
df = Stream(format"CSV", io) |> load() |> DataFrame You should be able to substitute any of the IterableTables.jl sinks in for |
Alright, bug fix is released and tagged, so a |
All right! julia> TimeArray(df[[:Date, :Open, :High, :Low, :Close]], timestamp_column=:Date)
(WARNINGS)
7x4 TimeSeries.TimeArray{Float64,2,Date,Array{Float64,2}} 2012-01-03 to 2012-01-11
Open High Low Close
2012-01-03 | 11.0 11.25 10.99 11.13
2012-01-04 | 11.15 11.53 11.07 11.3
2012-01-05 | 11.33 11.63 11.24 11.59
2012-01-06 | 11.74 11.8 11.52 11.71
2012-01-09 | 11.83 11.95 11.7 11.8
2012-01-10 | 12.0 12.05 11.63 11.8
2012-01-11 | 11.74 12.18 11.65 12.07 Thanks @davidanthoff |
Hello,
I'm looking for a way to convert
DataFrames.DataFrame
to (and from)TimeSeries.TimeArray
using IterableTables.jl.but it doesn't seems to work as I was expecting
TimeSeries.TimeArray
->DataFrames.DataFrame
Create
TimeSeries.TimeArray
Convert to DataFrame
works fine but...
DataFrames.DataFrame
->TimeSeries.TimeArray
Create
DataFrames.DataFrame
Convert to
TimeSeries.TimeArray
Any idea?
Kind regards
PS:
Following JuliaStats/TimeSeries.jl#290
and femtotrader/TimeSeriesIO.jl#19
The text was updated successfully, but these errors were encountered: