1

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)

enter image description here

I need to change the caption which is fixed at 'Feature-correlation (pearson)'

mozway
  • 194,879
  • 13
  • 39
  • 75

1 Answers1

1

Catch the axes object and use the set_title method:

ax = klib.corr_plot(df)
ax.set_title('new title')
mozway
  • 194,879
  • 13
  • 39
  • 75