markushhh

Results 13 comments of markushhh

I really liked your approach. Just now, I was improving your solution for the third time, and IMO the best solution is following: ``` library("xts") library("data.table") data(sample_matrix) samplexts

The following code provides a solution for `xts` (`print.xts`) and `zoo` (`print.zoo`) objects. The methods do not change the general behaviour of the existing `print` methods. They just trim the...

that was misleading. I did not. Setting `options("xts.max.print" = Inf)` for a transition should be enough.

@joshuaulrich Thanks for talking to them! @zeileis Thanks for joining in! 1. Is there any existing code that tests for the compatibility between the classes? 2. truncation of vectors is...

@ggrothendieck for `xts` a vector display is useless since there are no vectors in `xts`. Plain display would be possible though, I don't need it. If it's desired I can...

I think following style is a good example where vectors could be mixed up with matrices ``` ## 2000-01-01 2000-01-02 2000-01-03 2000-01-04 2000-01-05 ## 0.8414710 0.9092974 0.1411200 -0.7568025 -0.9589243 ##...

@ggrothendieck Thanks. When do you need the plain style?

In Julia they don't care about `...` being in the middle. ``` julia> [collect(1000000:10000000)] 1-element Array{Array{Int64,1},1}: [1000000, 1000001, 1000002, 1000003, 1000004, 1000005, 1000006, 1000007, 1000008, 1000009 … 9999991, 9999992, 9999993,...

@zeileis for zero-length series, plain style is in xts already implemented. No need for the extra argument. It's open to discuess whether there's a need for it in zoo. I...

Hey @EvaMaeRey you can try my solution on following [SO question](https://stackoverflow.com/questions/49797227/table-of-contents-on-xaringan-slides/57190718#57190718).