matplotlib作点线图技巧 - 学习记录

1. 图表的legend()的位置:

 

https://www.cnblogs.com/IvyWong/p/9916791.html

matplotlib作点线图技巧 - 学习记录_第1张图片

plt.legend(loc=8)

改变legend的尺寸。

plt.legend(loc = 0, prop = {'size':8})

2. matplot的坐标轴刻度尺寸。

 

plt.tick_params(labelsize=15)

3. matplotlib的横纵轴label的尺寸。

 

    font1 = {'family': 'Times New Roman',
             'weight': 'normal',
             'size': 18,
             }
    plt.xlabel('Imbalance Ratio', font1)
    plt.ylabel('R', font1)

4. 横纵坐标的刻度值 + 刻度值倾斜。

 

plt.xticks([]) #除去数值

plt.xticks(x, x, rotation=30)

5. plot图像画点线图。

 

    x = ['1:1', '10:1', '50:1']
    plt.plot(x, new, 'o-.', label='Proposed method', ms=8)

5. 做点图时,点线的颜色设置。

 

参考链接: https://zhuanlan.zhihu.com/p/65220518

你可能感兴趣的:(调错记录)