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

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

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

                                        Plot Length at Age
                                         图长度在年龄

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

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

Plot scape model fit to length-at-age data.
图scape模型适合长度在年龄数据。


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


plotLA(model, together=FALSE, sex=NULL, axes=TRUE, same.limits=TRUE,
       between=list(x=axes,y=axes), ylim=NULL, bands=1, main="",
       xlab="", ylab="", cex.main=1.2, cex.lab=1, cex.axis=0.8,
       cex.strip=0.8, col.strip="gray95",
       strip=strip.custom(bg=col.strip), las=1, tck=0, tick.number=5,
       lty.grid=3, col.grid="gray", pch=16, cex.points=0.5,
       col.points="black", lty.lines=1, lwd.lines=4,
       col.lines=c("red","blue"), lty.bands=2*(!together), lwd.bands=1,
       col.bands="black", plot=TRUE, ...)



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

参数:model
fitted scape model containing element LA.
装scape模型包含的元素LA。


参数:together
whether to plot both sexes in one panel.
是否绘制在一个面板中的男女。


参数:sex
string indicating which sex to plot (both by default).
字符串,表示绘制的性别(包括默认情况下)。


参数:axes
whether to plot axis values.
是否绘制轴的值。


参数:same.limits
whether panels should have same y-axis limits.
板是否应该有相同的Y轴范围。


参数:between
list with x and y indicating panel spacing.
列表x和y显示面板的间距。


参数:ylim
vector with lower and upper y-axis limits.
向量的下部和上部的y轴的限制。


参数:bands
extent of error bands relative to standard error.
相对标准误差的误差带范围内。


参数:main
main title.
主标题。


参数:xlab
x-axis label.
X轴标签。


参数:ylab
y-axis label.
y轴的标签。


参数:cex.main
size of main title.
主标题的大小。


参数:cex.lab
size of axis labels.
轴标签的大小。


参数:cex.axis
size of tick labels.
大小的刻度标记。


参数:cex.strip
size of strip labels.
条标签的大小。


参数:col.strip
color of strip labels.
条标签的颜色。


参数:strip
logical flag (whether to plot strip labels), or a function passed to xyplot.
逻辑标志(是否绘制条标签),或者一个函数传递给xyplot。


参数:las
orientation of tick labels: 0=parallel, 1=horizontal, 2=perpendicular, 3=vertical.
0 =并行,1 =水平,垂直,2 = 3 =垂直方向的刻度标签:。


参数:tck
tick mark length.
刻度线的长度。


参数:tick.number
number of tick marks.
的刻度数。


参数:lty.grid
line type of gridlines.
线类型的网格线。


参数:col.grid
color of gridlines.
网格线的颜色。


参数:pch
symbol for points, possibly a vector where element 2 refers to males.
点符号,可能是一个向量,其中元素是指男性。


参数:cex.points
size of points, possibly a vector where element 2 refers to males.
大小之分,可能是一个矢量元素是指男性。


参数:col.points
color of points, possibly a vector where element 2 refers to males.
颜色的点,可能是一个向量,其中元素是指男性。


参数:lty.lines
line type of main lines, possibly a vector where element 2 refers to males.
线式的线条为主,可能是一个矢量元素是指男性。


参数:lwd.lines
line width of main lines, possibly a vector where element 2 refers to males.
线宽度的主线,这可能一个矢量元素是指男性的。


参数:col.lines
color of main lines, possibly a vector where element 2 refers to males.
的主线,这可能一个矢量元素是指男性的颜色。


参数:lty.bands
line type of error bands.
误差带线类型。


参数:lwd.bands
line width of error bands.
误差带线宽度。


参数:col.bands
color of error bands, possibly a vector where element 2 refers to males.
误差带颜色的,可能是一个向量,其中元素是指男性。


参数:plot
whether to draw plot.
是否绘制的图。


参数:...
passed to xyplot and panel.superpose.2.
传递xyplot和panel.superpose.2。


值----------Value----------

When plot=TRUE, a trellis plot is drawn and a data frame is returned, containing the data used for plotting. When plot=FALSE, a trellis object is returned.
当plot=TRUE,一个网格图的绘制,并返回一个数据框,包含的数据用于绘制。当plot=FALSE,返回一个网格对象。


注意----------Note----------

The Args function from the gdata package is recommended for reviewing the arguments, instead of args.
建议审查的论点,而不是Argsgdata功能args包。


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

xyplot, panel.xyplot, and panel.superpose are the underlying drawing functions.
xyplot,panel.xyplot和panel.superpose是基本的绘图功能。

plotCA, plotCL, plotIndex, and plotLA plot model fit and data.
plotCA,plotCL,plotIndex和plotLA积模型的拟合和数据。

plotB, plotN, and plotSel plot derived quantities.
plotB,plotN和plotSel图导出量。

scape-package gives an overview of the package.
scape-package给出了一个概述的包。


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


plotLA(x.oreo, xlab="Age", ylab="Length (cm)")

mykey <- list(text=list(lab=c("Female","Male")), space="right",
              lines=list(lwd=4,col=c("red","blue")))
plotLA(x.oreo, together=TRUE, xlab="Age", ylab="Length (cm)", pch=NA,
       key=mykey)

mykey <- list(text=list(lab=c("Female","Male")), space="right",
              points=list(pch=16,cex=0.5,col=c("red","blue")))
plotLA(x.oreo, together=TRUE, xlab="Age", ylab="Length (cm)",
       col.points=c("red","blue"), lty.lines=0, key=mykey)

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


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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-29 20:53 , Processed in 0.023273 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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