耿秀华
摘 要:本文介紹了R中最经常被用到的一个绘图函数-plot()函数,主要描述了如何改变plot()函数所绘图形中图形符号的形状、颜色和尺寸,并举例说明。
关键词:R语言;plot()函数;图形符号
中图分类号:TP39 文献标识码:A 文章编号:1007-9416(2018)10-0000-00
1引言
R语言拥有强大的绘图功能,在R中经常被用到的一个绘图函数是plot()函数,本文主要介绍如何改变plot()函数中绘图符号的形状、颜色和尺寸。
2 plot()函数中图形符号形状的设置
绘图符号缺省情况下为空心圆,通过设置参数pch的值可以更改图形符号的形状。比如,当pch=9时,图形符号的形状为钻石形,默认为pch=1, 即空心圆。
所绘图形如图1所示。
设pch=16(实心圆)
输入命令
>plot(Speed,Dist,main="刹车距离与车速关系图",xlab="车速",ylab="刹车距离",pch=16)
所绘图形如图2所示。
3 plot()函数中图形符号颜色的设置
绘图符号颜色缺省情况下为黑色,通过设置参数col的值可以更改图形符号的颜色。比如,当col=2时,图形符号的颜色为红色。
设pch=16,col=2
输入命令
>plot(Speed,Dist,main="刹车距离与车速关系图",xlab="车速",ylab="刹车距离",pch=16,col=2)
所绘图形如图3所示。
4 plot()函数中图形符号尺寸的设置
绘图符号颜色缺省情况下为黑色,通过设置参数col的值可以更改图形符号的颜色。比如,当col=2时,图形符号的颜色为红色。
设pch=16,col=4,cex=2
输入命令
>plot(Speed,Dist,main=“刹车距离与车速关系图”,xlab=“车速”,ylab=“刹车距离”,pch=16,col=2,cex=2)
所绘图形如图4所示。
参考文献
[1] Emmanuel Paradis.R语言初学者指南[M]. Institut des Sciences de lEvolution Universit?e Montpellier II F-34095 Montpellier c?edex 2005.
[2] R Development Core Team.R语言简介[M].2006.
[3] 张金龙.R语言初步-数据处理、绘图与编程[R].2010.
The Symbol, color and Size of Plot() Function in R Language
GENG Xiu-hua
(School of Software and Information of Beijing Information Technical College, Beijing 100018, China)
Abstract: This paper introduces the plot() function, which is the most frequently used drawing function in R. It mainly describes how to change the shape, color and size of the graphic symbol in the plot() function, and illustrate with examples.
Keywords: R language; plot() function; graphic symbol