We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef8ae7 commit 255fa04Copy full SHA for 255fa04
pandas/tests/test_graphics.py
@@ -462,6 +462,9 @@ def is_grid_on():
462
463
spndx=1
464
for kind in kinds:
465
+ if not _ok_for_gaussian_kde(kind):
466
+ continue
467
+
468
self.plt.subplot(1,4*len(kinds),spndx); spndx+=1
469
mpl.rc('axes',grid=False)
470
obj.plot(kind=kind, **kws)
@@ -3430,6 +3433,8 @@ def test_memory_leak(self):
3430
3433
3431
3434
results = {}
3432
3435
for kind in plotting._plot_klass.keys():
3436
3437
3438
args = {}
3439
if kind in ['hexbin', 'scatter', 'pie']:
3440
df = self.hexbin_df
0 commit comments