easyplot
easyplot copied to clipboard
Easy Plot - A thin matplotlib wrapper for generating fast, easy and reusable plots in Python
Summary of changes: 1. Used matplotlib.gridpec to create a gridspec object that keeps track of the desired layout. Can call a layout creation by calling the method make_subplots with arguments...
comment ax.ticklabel_format in order to work
Hi. I've tried installing the package with `easy_install-3.4` (for some reason I prefer `easy_install` over `pip`), but it has reported me the following error: ``` text $ sudo easy_install-3.4 easyplot...
Results in following error: ``` C:\Anaconda\lib\site-packages\easyplot\easyplot.pyc in add_plot(self, *args, **kwargs) 177 line, = ppl.plot(ax, *self.args, **plot_kwargs) 178 else: --> 179 line, = ax.plot(*self.args, **plot_kwargs) 180 181 self.line_list.append(line) ValueError: too many...
Currently, `ax` and `fig` kwargs have to be passed in together for EasyPlot to plot in the correct axes. This should not be the case. If only `fig` is supplied...
`x` value(s) are optional for `pytplot.plot()` as well as `EasyPlot.add_plot()`. These should also be optional for the `iter_plot()` method. Currently, it is a compulsory argument.
`new_plot()` should not mutate existing EasyPlot instance. Instead, create duplicate EasyPlot object
In EasyPlot 1.0.0, the `new_plot()` instance method mutates the `EasyPlot` instance on which it is called to create a new plot while retaining plot parameters that were previously set on...
Reference: http://matplotlib.org/examples/api/two_scales.html