We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e84c5 commit 682b39eCopy full SHA for 682b39e
pandas/tests/test_graphics.py
@@ -395,6 +395,11 @@ def test_bar_center(self):
395
ax = df.plot(kind='bar', grid=True)
396
self.assertEqual(ax.xaxis.get_ticklocs()[0],
397
ax.patches[0].get_x() + ax.patches[0].get_width())
398
+ @slow
399
+ def test_bar_log(self):
400
+ df = DataFrame({'A': [3] * 5, 'B': range(5)}, index=range(5))
401
+ ax = df.plot(kind='bar', grid=True,log=True)
402
+ self.assertEqual(ax.yaxis.get_ticklocs()[0],0.1)
403
404
@slow
405
def test_boxplot(self):
0 commit comments