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
I'm using matplotlib/iruby in a project that involves plotting a large number of data points. I'm looking for the ability to add custom ticks to the x-axis so that my plot does not attempt to include every 5 minute timestamp over the course of the month in axes.
Would it be difficult to include the matplotlib.ticker library as a module? If you'd like, I could open a PR with the below code:
module Matplotlib
Ticker = PyCall.import_module('matplotlib.ticker').Ticker
Ticker.__send__ :register_python_type_mapping
end
The text was updated successfully, but these errors were encountered:
I'm using
matplotlib/iruby
in a project that involves plotting a large number of data points. I'm looking for the ability to add custom ticks to the x-axis so that my plot does not attempt to include every 5 minute timestamp over the course of the month in axes.Would it be difficult to include the
matplotlib.ticker
library as a module? If you'd like, I could open a PR with the below code:The text was updated successfully, but these errors were encountered: