plot.webvis(webvis)
plot.webvis()所属R语言包:webvis
Simplified plot function for web vis plots.
简化网络相图的绘图功能。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simplified plot function for web vis plots.
简化网络相图的绘图功能。
用法----------Usage----------
plot.webvis(x, y, type="dot", width=300, height=200, add.grid=TRUE, add.axes=TRUE, scale.min, ...)
参数----------Arguments----------
参数:x
Either the "x" axis data or all the data for the visualization (can be vector or dataset).
要么的“x”轴的数据或所有的数据的可视化(可以是矢量或数据集)。
参数:y
Optional, can specify the "y" axis data.
可选的,可以指定“Y”轴数据。
参数:type
The type of plot. Can be "bar", "line", "area", "pie", "dot", or "shape"
图的类型。可以“条形”,“行”,“面积”,“馅饼”,“点”,或“形似”
参数:width
The width of the panel in pixels.
面板的宽度(以像素为单位)。
参数:height
The width of the panel in pixels.
面板的宽度(以像素为单位)。
参数:add.grid
Logical value for whether to add a grid.
逻辑值是否添加一个网格。
参数:add.axes
Whether to add x-y axes.
是否添加X-Y轴。
参数:scale.min
Whether the y-axis should be scaled to zero or the minimum value in the data
y-轴是否应缩放为零或最小值中的数据
参数:...
Other parmaeters for pv.chart.</table>
的其他parmaeters的pv.chart。</ TABLE>
Details
详细信息----------Details----------
plot.webvis Simplified plot function for web vis plots
plot.webvis简化网络相图的绘图功能
值----------Value----------
Opens a plot in a browser window.
打开一个浏览器窗口中的一个图。
(作者)----------Author(s)----------
Shane Conway <a href="mailto:shane.conway@gmail.com">shane.conway@gmail.com</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
plot.webvis(x=c(1, 2, 1.5, 3, 1.2), type="area")
plot.webvis(c(1, 2, 1.5, 3, 1.2, 1.7, 2.5, 6, 5), add.grid=FALSE)
plot.webvis(c(1, 2, 1.5, 3, 1.2, 1.7, 2.5, 6, 5), type="area")
plot.webvis(c(1, 2, 1.5, 3, 1.2, 1.7, 2.5, 6, 5), type="line", scale.min=0)
plot.webvis(c(1, 2, 1.5, 3, 1.2, 1.7, 2.5, 6, 5), type="line", scale.min=NULL)
plot.webvis(x=10*rnorm(20), width=500, height=500, type="line")
plot.webvis(x=100*rnorm(20), y=100*rnorm(20), width=500, height=500, type="dot")
plot.webvis(x=c(1, 2, 1.5, 3, 1.2), type="pie")
plot.webvis(x=c(1, 2, 1.5, 3, 1.2), type="pie", inner.radius=80)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|