-
Notifications
You must be signed in to change notification settings - Fork 24
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
Concatenate TSFrames.TSFrame #199
Comments
Hi @femtotrader, using "join" instead of "vcat" will give you the result you're looking for. julia> join(tsla, nflx, msft)
13×3 TSFrame with Date Index
Index TSLA NFLX MSFT
Date Float64? Float64? Float64?
──────────────────────────────────────────
2020-12-31 235.22 540.73 222.42
2021-01-31 264.51 532.39 231.96
2021-02-28 225.16 538.85 232.38
2021-03-31 222.64 521.66 235.77
2021-04-30 236.48 513.47 252.18
2021-05-31 208.4 502.81 249.68
2021-06-30 226.56 528.21 270.9
2021-07-31 229.06 517.57 284.91
2021-08-31 245.24 569.19 301.88
2021-09-30 258.49 610.34 281.92
2021-10-31 371.33 690.31 331.62
2021-11-30 381.58 641.9 330.59
2021-12-31 352.26 602.44 336.32 |
Thanks @san-ath but I don't understand why type is now |
It is assumed that there could be missings in the arguments and the function needs to handle them. This is the DataFrames default behaviour but it does let the user suggest what to do with missings ( |
Hello,
I have 3 TSFrames.TSFrame defined like so
I don't understand why concatenation doesn't work (at least doesn't work as I'm expecting)
I was expecting to get something like
Any idea?
The text was updated successfully, but these errors were encountered: