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 dceb32dCopy full SHA for dceb32d
1 file changed
lib/matplotlib/tests/test_axes.py
@@ -1524,6 +1524,26 @@ def test_bar_timedelta():
1524
(10, 20))
1525
1526
1527
+def test_bar_pandas(pd):
1528
+ # Smoke test for pandas
1529
+
1530
+ fig, ax = plt.subplots()
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
+ monthly = df[['date', 'value']].groupby(['date']).sum()
1540
+ dates = monthly.index
1541
+ forecast = monthly['value']
1542
+ baseline = monthly['value']
1543
+ ax.bar(dates, forecast, width=10, align='center')
1544
+ ax.plot(dates, baseline, color='orange', lw=4)
1545
1546
1547
@image_comparison(baseline_images=['hist_log'],
1548
remove_text=True)
1549
def test_hist_log():
0 commit comments