Consider the following code:
col_indices = pd.MultiIndex.from_product([[1,2], ['a', 'b']])
row_indices = [1,2,3]
df = pd.DataFrame(index=row_indices, columns=col_indices)
When I plot this, I get five legend entries including one which says None, None:
Why is this, and how can I get rid of it?