Minor issue, but some of the plotting functions work when there's no data and some don't. ``` python # These work plot([]) scatter([], []) bar([], []) # These raise a ValueError hexbin([], []) hist([]) hist2d([]) ```