pv.line(webvis)
pv.line()所属R语言包:webvis
Add a line to the visualization.
添加一条线的可视化。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add a line to the visualization.
添加一条线的可视化。
用法----------Usage----------
pv.line(bottom.name="y", left.name="x", bottom.scale=paste("linear", bottom.name, "y", sep = "."), left.scale="linear.x.x", ...)
参数----------Arguments----------
参数:bottom.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.
的名称字段中提供的数据框或矢量。
参数:bottom.scale
The name of the field in the supplied data frame or vector.
的名称字段中提供的数据框或矢量。
参数:left.scale
The name of the field in the supplied data frame or vector.
的名称字段中提供的数据框或矢量。
参数:...
The parameters from pv.chart</table>
参数pv.chart </ TABLE>
Details
详细信息----------Details----------
pv.line Adds a line plot to the visualization
pv.line添加线图的可视化
值----------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.line(anchor="top") [pv.line(锚“顶”)]
#pv.line(data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), bottom.name="y", left.name="x", bottom.scale="linear.y.y", left.scale="linear.x.x", line.width=5, render=TRUE)[pv.line(数据= C(1,1.2,1.7,1.5,0.7,0.5,0.2),bottom.name均=“y”,left.name =“x”的,bottom.scale =“linear.yy “left.scale =”linear.xx“,line.width = 5,渲染= TRUE)]
# line example 1[行示例1]
pv.line(data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), render=FALSE)
pv.line(data=data.frame(z=c(1, 1.2, 1.7, 1.5, .7, .5, .2)), bottom.name="z", render=TRUE)
pv.line(data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), bottom.name="y", left.name="x", bottom.scale=NULL, left.scale="linear.x.x", render=TRUE)
# line example 1 (using layers)[例1(使用层)]
wv <- pv.panel(width=150, height=150)
render.webvis(wv + pv.line(wv=wv, data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), bottom.name="y", left.name="x", bottom.scale="linear.y.y", left.scale="linear.x.x"))
# line example 2 (need to make sure that it doesn't go over the edge[例2(需要确保它不走的边缘]
wv <- pv.panel(width=150, height=150)
wv <- wv + (pv.line(wv=wv, data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), bottom.name="y", left.name="x", bottom.scale="linear.y.y", left.scale="linear.x.x")
+ pv.dot())
render.webvis(wv)
# line example 4[行示例4]
wv <- pv.panel(width=150, height=150)
render.webvis(wv + pv.line(wv=wv, data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), top.name="y", left.name="x", top.scale="linear.y.y", left.scale="linear.x.x"))
# line example 5[例如5行]
wv <- pv.panel(width=150, height=150)
render.webvis(wv + pv.line(wv=wv, data=c(1, 1.2, 1.7, 1.5, .7, .5, .2), top.name="y", right.name="x", top.scale="linear.y.y", right.scale="linear.x.x"))
# line example 7[例如7行]
wv <- pv.panel(width=150, height=150)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|