matplotlib 坐标轴定制

注意事项见注释

import matplotlib.pyplot as plt
import matplotlib.patches as p
plt.rcParams["font.sans-serif"]=["SimHei"]
plt.rcParams["axes.unicode_minus"]=0
['坐标轴',["轴脊"],['刻度',['刻度线'],['刻度标签']]]
'向任意位置添加坐标轴'
ax=plt.axes((0.31,0.42,0.3,0.4))#该坐标轴距离左侧0.31,距离底部0.42 该坐标轴高0.4,长0.3
'使用刻度定位器与刻度格式器'
loc=plt.LinearLocator(numticks=4)#先定义格式器或定位器将坐标轴三等分,
ax.xaxis.set_major_locator(loc)#对坐标轴进行调用
'定制刻度的样式'
plt.tick_params(axis="both",color='m',length=7,width=2.3,direction='out')
#对所有坐标轴上的刻度设置颜色为洋红色,长7宽5,方向向外
'隐藏轴脊'
# plt.axis("off")#隐藏全部轴脊
x=p.RegularPolygon((0.3,0.4),numVertices=17,color='g',alpha=0.2,radius=0.2)
ax.add_patch(x)
ax.spines['right'].set_color("none")#隐藏右轴脊,上下左方的坐标轴同理隐藏
'移动轴脊'
ax.spines["left"].set_position(('data',0.6))
plt.show()

你可能感兴趣的:(人黑话不多,python,数据可视化)