xts icon indicating copy to clipboard operation
xts copied to clipboard

Extensible time series class that provides uniform handling of many R time series classes by extending zoo.

Results 108 xts issues
Sort by recently updated
recently updated
newest added

Are there any examples of `plot.xts` with custom panels? It appears in the comments that this is still experimental, but I'd like to try it nevertheless. I'll play with a...

plot

This is not really an issue, but I thought this might be the best place to demonstrate how someone might inspect a plot `object`. I remember struggling a lot with...

plot

I was not able to post a comment on your blog so posting here. Can be treated as FR. Better integration with interactive charting libraries would be nice, the two...

plot

Although line `type='h'` gives a vertical line that can pass as a bar when there's enough data, sometimes you need a `barplot` style rectangle instead. The closest example is `PerformanceAnalytics::chart.StackedBar`....

enhancement
plot

We can get really close to doing stacked/unstacked bar charts by replacing `chart.lines` within `plot.xts` with the following: ``` r chart.bars

enhancement
plot

Having the legend in the image can be messy if your underlying image gets in the way. ![legend_in_image](https://cloud.githubusercontent.com/assets/2151940/10637639/5b08c740-77cc-11e5-9441-69ad36f2a7eb.png) A cleaner option is to have it along the title: ![legend_in_title](https://cloud.githubusercontent.com/assets/2151940/10637752/e663f328-77cc-11e5-9144-15114c1d7452.png)

enhancement
plot

Allow for log scale of the y axis. This is supported by `base::plot` and `PerformanceAnalytics::Chart.TimeSeries` so we should support it in `plot.xts` as well. Thanks to Gei Lin for the...

feature request
plot

Invoking the "small multiples" behavior in `plot.xts()` could open many devices. This isn't an issue in RStudio, because they will all be opened in the plotting pane. On most consoles,...

feature request
plot

As documented in `?DateTimeClasses`: > `"POSIXlt"` objects will often have an attribute `"tzone"`, a character vector of length 3 giving the time zone name from the `TZ` environment variable and...

bug
plot

The plot object created by plot.xts throws "Error in xy.coords(x, y) : 'x' and 'y' lengths differ" if I call `plot_object$subset` to get the subset series and it returns an...

plot