You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xts exports axTicksByTime, but the new plot.xts uses axTicksByTime2 that came from the port of chart_Series to plot.xts. For simplicity's sake, these two functions should be combined... once we understand their differences.
We need to ensure not to break anything that currently uses axTicksByTime (e.g. many of the charting functions in PerformanceAnalytics).
The text was updated successfully, but these errors were encountered:
Consider how graphics::axis.POSIXct() determines points and labels. periodicity() might be useful here, since it does something similar and provides the start, end, and frequency of the series.
axTicksByTime() has long been exported from xts, so its behavior is
maintained as closely as possible. axTicksByTime2() came from the port
of quantmod::chart_Series() to plot.xts().
Add millisecond and microsecond tick.opts, both with tick.k.opts of 1.
Also avoid calls to strsplit() to get the arguments for the endpoints()
call, and when calculating 'cl' and 'ck'. Move tick.k.opts definition
closer to its use. Make sure 'lt' is less than or equal to the number
of observations.
Fixes#74.
axTicksByTime() has long been exported from xts, so its behavior is
maintained as closely as possible. axTicksByTime2() came from the port
of quantmod::chart_Series() to plot.xts().
Add millisecond and microsecond tick.opts, both with tick.k.opts of 1.
Also avoid calls to strsplit() to get the arguments for the endpoints()
call, and when calculating 'cl' and 'ck'. Move tick.k.opts definition
closer to its use. Make sure 'lt' is less than or equal to the number
of observations.
Fixes#74.
xts exports
axTicksByTime
, but the newplot.xts
usesaxTicksByTime2
that came from the port ofchart_Series
toplot.xts
. For simplicity's sake, these two functions should be combined... once we understand their differences.We need to ensure not to break anything that currently uses
axTicksByTime
(e.g. many of the charting functions in PerformanceAnalytics).The text was updated successfully, but these errors were encountered: