addGrid(WGCNA)
addGrid()所属R语言包:WGCNA
Add grid lines to an existing plot.
将网格线添加到现有的图。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function adds horizontal and/or vertical grid lines to an existing plot. The grid lines are aligned with tick marks.
此功能添加到现有的图水平和/或垂直网格线。这些网格线与刻度线对齐。
用法----------Usage----------
addGrid(linesPerTick = NULL, horiz = TRUE, vert = FALSE, col = "grey30", lty = 3)
参数----------Arguments----------
参数:linesPerTick
Number of lines between successive tick marks (including the line on the tickmarks themselves)
数连续的刻度之间的线(包括直线上的刻度线本身)
参数:horiz
Draw horizontal grid lines?
绘制水平的网格线?
参数:vert
Draw vertical tick lines?
绘制垂直点时钟线?
参数:col
Specifies color of the grid lines
指定色的网格线
参数:lty
Specifies line type of grid lines. See par.
指定的网格线的行类型。见par。
Details
详细信息----------Details----------
If linesPerTick is not specified, it is set to 5 if number of tick s is 5 or less, and it is set to 2 if number of ticks is greater than 5.
如果linesPerTick没有被指定,它被设置为5,如果刻度线s数量是5个或更少,并且它被设置为2,如果刻度数是大于5。
注意----------Note----------
The function does not work whenever logarithmic scales are in use.
对数刻度时,都在使用该功能无法正常工作。
(作者)----------Author(s)----------
Peter Langfelder
实例----------Examples----------
plot(c(1:10), c(1:10))
addGrid();
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|