box(graphics)
box()所属R语言包:graphics
Draw a Box around a Plot
绘制一箱周围的图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function draws a box around the current plot in the given color and linetype. The bty parameter determines the type of box drawn. See par for details.
此函数绘制一个框,围绕当前在给定的颜色和线型图。 bty参数决定画箱式。看到par详情。
用法----------Usage----------
box(which = "plot", lty = "solid", ...)
参数----------Arguments----------
参数:which
character, one of "plot", "figure", "inner" and "outer".
字符"plot","figure","inner"和"outer"。
参数:lty
line type of the box.
线路类型框。
参数:...
further graphical parameters, such as bty, col, or lwd, see par. Note that xpd is not accepted as clipping is always to the device region.
进一步的图形参数,如bty,col或lwd,看到par。注意xpd是不能接受的是作为剪报总是设备的区域。
Details
详情----------Details----------
The choice of colour is complicated. If col was supplied and is not NA, it is used. Otherwise, if fg was supplied and is not NA, it is used. The final default is par("col").
颜色的选择是复杂的。如果col提供,是不是NA,它是用来。否则,如果fg提供,是不是NA,它是用来。最后默认是par("col")。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
rect for drawing of arbitrary rectangles.
rect任意矩形的绘制。
举例----------Examples----------
plot(1:7, abs(stats::rnorm(7)), type = 'h', axes = FALSE)
axis(1, at = 1:7, labels = letters[1:7])
box(lty = '1373', col = 'red')
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|