Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5dd383 commit 06e1b07Copy full SHA for 06e1b07
lib/matplotlib/tests/test_axes.py
@@ -1524,6 +1524,21 @@ def test_bar_timedelta():
1524
(10, 20))
1525
1526
1527
+def test_bar_pandas(pd):
1528
+ # Smoke test for pandas
1529
+ fig = plt.figure()
1530
+ ax = fig.gca()
1531
+
1532
+ df = pd.DataFrame(
1533
+ {'year': [2018, 2018, 2018],
1534
+ 'month': [1, 1, 1],
1535
+ 'day': [1, 2, 3],
1536
+ 'value': [1, 2, 3]})
1537
+ df['date'] = pd.to_datetime(df[['year', 'month', 'day']])
1538
1539
+ ax.bar(df['date'], df['value'])
1540
1541
1542
@image_comparison(baseline_images=['hist_log'],
1543
remove_text=True)
1544
def test_hist_log():
0 commit comments