ResidentMario/missingno

Add title option

TomerAntman opened this issue · 2 comments

Adding a title parameter to the various figures should be rather easy and will help to make sense if many figures are created for multiple datasets

TBH I don't think a title parameter is necessary because it's so easy to do using matplotlib:

ax = msno.matrix(df)
ax.set_title("My Title")