找回密码
 注册
查看: 264|回复: 0

R语言 rockchalk包 plotSeq()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 22:43:54 | 显示全部楼层 |阅读模式
plotSeq(rockchalk)
plotSeq()所属R语言包:rockchalk

                                        Create sequences for plotting
                                         创建序列的图

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

plotSeq is a convenience for the creation of sequence that can be used for plotting example values and calculating predicted values. By default, the length of the plotting sequence will be equal to the length of the original sequence. In that case, the only effect is to create an evenly-spaced set of values. If length.out is specified, the user determines the number of elements in plotSeq.
plotSeq为创建用于绘制示例值和计算的预测值的序列,可以是一个方便的。缺省情况下,绘图序列的长度将是原始序列的长度相等。在这种情况下,唯一的影响是创建一个均匀间隔的一组值。如果length.out指定,用户确定的数目元素plotSeq。


用法----------Usage----------


  plotSeq(x, length.out = length(x))



参数----------Arguments----------

参数:x
an R vector variable
R矢量变量


参数:length.out
the number of elements in the desired plotting sequence.
所需的绘图序列中的元素数目。


Details

详细信息----------Details----------

The primary intended usage is for the creation of plotting sequences of numeric variables.  It takes a variable's range and the fills in evenly spaced steps. If x is a factor variable, the levels will be returned. Uses of this functionality are planned in the future.
的主要使用目的,是为绘制的数字变量序列的创造。这需要一个变量的范围和的填充均匀分布的步骤。如果x是一个因素变量,该水平将被退回。利用此功能计划在未来。


参见----------See Also----------

pretty
pretty


实例----------Examples----------


#Create a quadratic regression[二次回归]

stde <- 14
x <- rnorm(100, m=50, s=10)
y <- 0.2 - 02*x + 0.2*x^2 + stde*rnorm(100)
mod1 <- lm (y ~ poly(x, 2))

plot(x, y, main="The Quadratic Regression")
seqx <- plotSeq(x, length.out=10)
seqy <- predict(mod1, newdata=data.frame(x=seqx))
lines(seqx, seqy, col="red")

# Notice the bad result when a plotting sequence is[请注意绘图顺序是坏的结果时,]
# not used.[不被使用。]
plot(x, y, main="Bad Plot Result")
seqy <- predict(mod1)
lines(x, seqy, col="green")

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-25 12:29 , Processed in 0.029567 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表