I plotted a graph and would like to change the title but I don't see any parameter for this:
code:
klib.corr_plot(df)
I need to change the caption which is fixed at 'Feature-correlation (pearson)'
I plotted a graph and would like to change the title but I don't see any parameter for this:
code:
klib.corr_plot(df)
I need to change the caption which is fixed at 'Feature-correlation (pearson)'
Catch the axes object and use the set_title
method:
ax = klib.corr_plot(df)
ax.set_title('new title')