We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1569838 commit 6e74f8aCopy full SHA for 6e74f8a
pandas/tests/test_graphics.py
@@ -404,6 +404,11 @@ def test_bar_center(self):
404
ax = df.plot(kind='bar', grid=True)
405
self.assertEqual(ax.xaxis.get_ticklocs()[0],
406
ax.patches[0].get_x() + ax.patches[0].get_width())
407
+ @slow
408
+ def test_bar_log(self):
409
+ df = DataFrame({'A': [3] * 5, 'B': range(5)}, index=range(5))
410
+ ax = df.plot(kind='bar', grid=True,log=True)
411
+ self.assertEqual(ax.yaxis.get_ticklocs()[0],0.1)
412
413
@slow
414
def test_boxplot(self):
0 commit comments