plot.slidWin(spider)
plot.slidWin()所属R语言包:spider
Plot a 'slidWin' object
绘制对象“slidWin”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Graphical representation of the summary statistics derived from slideAnalyses and slideBoxplots
图形表示的汇总统计数据来自slideAnalyses和slideBoxplots
用法----------Usage----------
## S3 method for class 'slidWin'
plot(x, outliers = FALSE, ...)
参数----------Arguments----------
参数:x
An object of class "slidWin".
对象类的slidWin。
参数:outliers
Logical. When the results of slideBoxplots are being called, should the outliers be plotted? Default of FALSE.
逻辑。当slideBoxplots被调用的离群值,应被绘制呢?默认值false。
参数:...
Other arguments to be passed to plot.
其他参数传递给plot。
Details
详细信息----------Details----------
When boxplots of methods nonCon and interAll, the y-axis limits are constrained to the midpoint of the range covered by the boxplots, so that the intra-specific variation can be seen.
当盒状图的方法nonCon和interAll,y轴的限制的限制的盒形图所涵盖的范围的中点,所以可以看出,特定帧内变化。
值----------Value----------
Plots graphs depending on the options given to slideAnalyses or slideBoxplots.
绘图图形根据slideAnalyses或slideBoxplots的选项。
(作者)----------Author(s)----------
Samuel Brown <s_d_j_brown@hotmail.com>
参见----------See Also----------
slideAnalyses, slideBoxplots.
slideAnalyses,slideBoxplots。
实例----------Examples----------
data(dolomedes)
doloSpp <- substr(dimnames(dolomedes)[[1]], 1, 5)
doloSlide <- slideAnalyses(dolomedes, doloSpp, 200, interval=10, treeMeasures=TRUE)
plot(doloSlide)
doloBox <- slideBoxplots(dolomedes, doloSpp, 200, interval=10, method="overall")
plot(doloBox)
data(anoteropsis)
anoSpp <- sapply(strsplit(dimnames(anoteropsis)[[1]], split="_"),
function(x) paste(x[1], x[2], sep="_"))
anoBox <- slideBoxplots(anoteropsis, anoSpp, 200, interval=10, method="interAll")
plot(anoBox)
plot(anoBox, outliers=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|