()
| 2508 | |
| 2509 | @image_comparison(['hist_bar_empty.png'], remove_text=True, style='_classic_test') |
| 2510 | def test_hist_bar_empty(): |
| 2511 | # From #3886: creating hist from empty dataset raises ValueError |
| 2512 | ax = plt.gca() |
| 2513 | ax.hist([], histtype='bar') |
| 2514 | |
| 2515 | |
| 2516 | def test_hist_float16(): |