R语言——plot()函数画图

    plot()函数在R语言画图中位置十分重要,现在就对其具体用法做一个总结。
    基本用法:

plot(x=x轴数据,y=y轴数据,main="标题",sub="子标题",type="线型",xlab="x轴名称",ylab="y轴名称",xlim = c(x轴范围,x轴范围),ylim = c(y轴范围,y轴范围))

    示例代码为:

plot(c(1:6),c(1:6),main="test",type=" ",xlim = c(0,7),ylim = c(0,7))

    其中,线型分为:
type="p"#点:
R语言——plot()函数画图_第1张图片
type="l"#线:
R语言——plot()函数画图_第2张图片
type="b"#点线:
R语言——plot()函数画图_第3张图片
type="c"#点线图去掉点:
R语言——plot()函数画图_第4张图片
type="o"#覆盖式点和线:
R语言——plot()函数画图_第5张图片
type="h"#类似直方图的线:
R语言——plot()函数画图_第6张图片
type="s"#楼梯状:
R语言——plot()函数画图_第7张图片
type="S"#另一种楼梯状:
R语言——plot()函数画图_第8张图片
type="n"#什么都没有:
R语言——plot()函数画图_第9张图片
    债见!
R语言——plot()函数画图_第10张图片

你可能感兴趣的:(R)