Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Plotting fails when using subplot grid + manual axis #11556
Comments
|
I think this is a duplicate of #11520 (or at least related to), i.e. we assume in the code that the |
jorisvandenbossche
added Bug Visualization
labels
Nov 9, 2015
|
In this case the fig, ax = plt.subplots()
# fig.add_axes([0.2, 0.2, 0.2, 0.2])
pd.Series(np.random.rand(100)).plot(ax=ax)then there is no error. |
|
Ah, yes, I missed the fact that it was not the But in any case, the underlying issue is still the same, that in |
|
@sinhrks @TomAugspurger @janschulz (you did quite a lot of work on this in #9740) Maybe the easiest fix for this problem and of #11520 is that we only apply all the specific handling in |
jorisvandenbossche
referenced
this issue
Nov 9, 2015
Closed
VIS: only apply shared axes handling on actual SubplotAxes #11561
jorisvandenbossche
added this to the
0.17.1
milestone
Nov 9, 2015
jorisvandenbossche
added a commit
that referenced
this issue
Nov 15, 2015
|
|
jorisvandenbossche + jreback |
9ee2139
|
|
closed by #11561 |
jakevdp commentedNov 9, 2015
The following code raises an error (tested on pandas 0.17.0, matplotlib 1.4.3, and Python 3.4.2)