plt.matshow(da.corr(method='spearman'), vmax=1, vmin=-1, cmap='PRGn')
时间: 2023-06-09 20:06:08 浏览: 94
matplotilb中fig,ax = plt.subplots()的使用
这是一个Matplotlib库中的函数调用,用于绘制矩阵的颜色图,其中参数da.corr(method='spearman')是用于计算Spearman秩相关系数的数据。利用该函数,可以直观地展示数据之间的相关性和趋势。
阅读全文