Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我绘制了一个图表并想更改标题,但我没有看到任何参数:
代码:
klib.corr_plot(df)
我需要更改固定在“特征相关性(皮尔森)”的标题
捕捉坐标轴对象并使用set_title方法:
set_title
ax = klib.corr_plot(df) ax.set_title('new title')