今天给大家讲解R画图时如何控制坐标轴范围。
语法:plot(data,xlim=范围,ylim=范围)
看下面例子:
plot(1:10,xlim=c(-3,10),ylim=c(-10,10))
表示 x 轴坐标范围是-3到10,y 轴坐标范围就-10到10.
绘图结果如下: