Ross Bennett

Results 13 comments of Ross Bennett

I don't think that we should work on dynamic graphs until all the core functionality has been implemented. When we do begin work on html charting frameworks, we have to...

The geometry for the plot is set based on the index of the xts object (or optionally the subsetted object) when `plot` is initially called. The example you gave is...

cloudcello, thank you for the reproducible example. From the `?plot.xts` and the `multi.panel` argument, `For example, if multi.panel = 2, then the data will be plotted in groups of 2...

The panel functionality does work. I have a few examples of working with custom panels in the sandbox folder in xtsExtra, but I am currently working on more that will...

Examples added to http://joshuaulrich.github.io/xts/plotting_panels.html. Please take a look and feel free to ask questions about the panel functionality or request examples

Here is a quick example that demonstrates the functionality. The function allows one to answer the question, "For each observation, what is the value k seconds in the future?" ```...

I don't like the inconsistency with `lag.xts` my initial prototype introduces. Note the negative `k` in `lag.xts` and positive `k` in `timeshift`. ``` # lagging by time and lagging by...

I agree that we should probably roll this into `lag.xts` with e.g. `lag.xts(x, k = "5 seconds")`. For now, I'll just implement it as a separate function while I think...

This may be an interesting feature to add to a later release so we have some more time to think about and test. It **should** just work with a basic...

Found the [small multiples specification](https://mule.braverock.com/trac/foss/wiki/GSoC2014/PlotXtsSpec#small-multiples-behavior) from the 2014 GSoC proposal.