()
| 5070 | |
| 5071 | |
| 5072 | def test_stem_dates(): |
| 5073 | fig, ax = plt.subplots(1, 1) |
| 5074 | xs = [dateutil.parser.parse("2013-9-28 11:00:00"), |
| 5075 | dateutil.parser.parse("2013-9-28 12:00:00")] |
| 5076 | ys = [100, 200] |
| 5077 | ax.stem(xs, ys) |
| 5078 | |
| 5079 | |
| 5080 | @image_comparison(['stem_orientation.png'], style='mpl20', remove_text=True) |