pv.bar(webvis)
pv.bar()所属R语言包:webvis
Add a bar to the visualization.
条形的可视化。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add a bar to the visualization.
条形的可视化。
用法----------Usage----------
pv.bar(height.name="y", left.name="x", height.scale="linear.y.y", left.scale="linear.x.x", bottom=0, width, width.name, xmax, scale.min=0, ...)
参数----------Arguments----------
参数:height.name
The name of the field in the supplied data frame or vector.
的名称字段中提供的数据框或矢量。
参数:left.name
The name of the field in the supplied data frame or vector.
的名称字段中提供的数据框或矢量。
参数:height.scale
The scale of the field in the supplied data frame or vector.
提供的数据框或矢量领域的规模。
参数:left.scale
The scale of the field in the supplied data frame or vector.
提供的数据框或矢量领域的规模。
参数:bottom
The bottom of the bar, with respect to the panel.
条形的底部,相对于面板。
参数:width
The width of each bar.
每个栏的宽度。
参数:width.name
The name of the field in the data for the width.
的名称字段中的数据的宽度。
参数:xmax
The max scale for the x-axis.
最大规模的x轴。
参数:scale.min
The minimum y-value for scaling.
的最小Y值进行缩放。
参数:...
The parameters from pv.chart</table>
参数pv.chart </ TABLE>
Details
详细信息----------Details----------
pv.bar Adds a bar plot to the visualization
pv.bar添加一个条形图的可视化
值----------Value----------
A wv object.
甲西弗吉尼亚州的对象。
(作者)----------Author(s)----------
Shane Conway <a href="mailto:shane.conway@gmail.com">shane.conway@gmail.com</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
pv.bar(data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), height.name="y", left.name="x", height.scale="linear.y.y", left.scale="linear.x.x", bottom=0, width=25, render=TRUE)
pv.bar(data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), width=20, render=TRUE)
pv.bar(data=data.frame(z=c(1, 1.2, 1.7, 1.5, .7, .5, .2)), height.name="z", height.scale="linear.z.y", width=20, render=TRUE)
pv.bar(data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), height.name="y", left.name="x", height.scale=NULL, left.scale="linear.x.x", render=TRUE)
# bar example 1 [禁止示例1]
wv <- pv.panel(width=150, height=150)
render.webvis(wv + pv.bar(wv=wv, data=c(1, 1.2, 1.7, 1.5, .7), height.name="y", left.name="x", height.scale="linear.y.y", left.scale="linear.x.x"))
# bar example 2 (doesn't work properly)[条形例2(不能正常工作)]
d <- data.frame(y=c(1, 1.2, 1.7, 1.5, .7), z=c(0, 0.5, 0.9, 0.2, 0.7))
d <- cbind(d, k=d$y-d$z)
wv <- pv.panel(width=150, height=150)
render.webvis(wv + pv.bar(wv=wv, data=d, height=20, height.name=NULL, bottom=NULL, bottom.name="x", width=NULL, width.name="k", left.name="z", left.scale="linear.z.y", bottom.scale="linear.x.x", width.scale="linear.k.x"))
# bar example 3[禁止示例3]
wv <- pv.panel(width=150, height=150)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|