如何移动 matplotlib 中 axis 坐标轴的位置.
设置名字和位置
1 | import matplotlib.pyplot as plt |
使用 np.linspace
定义 x
:范围是(-3,3);个数是50.
仿真一维数据组(x
,y1
)表示曲线1. 仿真一维数据组(x
,y2
)表示曲线2.
1 | x = np.linspace(-3, 3, 50) |
使用plt.figure
定义一个图像窗口.
使用plt.plot
画(x
,y2
)曲线. 使用plt.plot
画(x
,y1
)曲线,曲线的颜色属性(color
)为红色; 曲线的宽度(linewidth
) 为 1.0; 曲线的类型(linestyle
)为虚线.
使用plt.xlim
设置x
坐标轴范围: (-1, 2); 使用plt.ylim
设置y
坐标轴范围: (-2, 3);
1 | plt.figure() |
(-2, 3)
使用np.linspace
定义范围以及个数:范围是(-1,2);个数是5.
使用plt.xticks
设置x
轴刻度:范围是(-1,2);个数是5.
使用plt.yticks
设置y
轴刻度以及名称: 刻度为[-2, -1.8, -1, 1.22, 3]; 对应刻度的名称为[‘really bad’,’bad’,’normal’,’good’, ‘really good’].
1 | new_ticks = np.linspace(-1, 2, 5) |
function | desc | 设置效果 |
---|---|---|
plt.gca |
获取当前坐标轴信息 | - |
.spines |
设置边框 | 右侧边框 & 上边框 |
.set_color |
设置边框颜色 | 默认白色 |
1 | ax = plt.gca() |
调整坐标轴
使用 .xaxis.set_ticks_position
设置x
坐标刻度数字或名称的位置:bottom
.(所有位置:top
,bottom
,both
,default
,none
)
使用 .spines
设置边框:x
轴;
使用 .set_position
设置边框位置:y=0
的位置;(位置所有属性:outward
,axes
,data
)
1 | ax.xaxis.set_ticks_position('bottom') |
使用.yaxis.set_ticks_position
设置y
坐标刻度数字或名称的位置:left
.(所有位置:left
,right
,both
,default
,none
)
1 | ax.yaxis.set_ticks_position('left') |
使用.spines
设置边框:y
轴;
使用.set_position
设置边框位置:x=0
的位置;(位置所有属性:outward
,axes
,data
)
使用plt.show
显示图像.
1 | ax.spines['left'].set_position(('data',0)) |
Checking if Disqus is accessible...