plot.slidWin {spider} | R Documentation |
Plot a 'slidWin' object
Description
Graphical representation of the summary statistics derived from
slideAnalyses
and slideBoxplots
Usage
## S3 method for class 'slidWin'
plot(x, outliers = FALSE, ...)
Arguments
x |
An object of class ‘slidWin’. |
outliers |
Logical. When the results of |
... |
Other arguments to be passed to |
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.
Value
Plots graphs depending on the options given to
slideAnalyses
or slideBoxplots
.
Author(s)
Samuel Brown <s_d_j_brown@hotmail.com>
See Also
Examples
data(dolomedes)
doloSpp <- substr(dimnames(dolomedes)[[1]], 1, 5)
doloSlide <- slideAnalyses(dolomedes, doloSpp, 200, interval=10, treeMeasures=TRUE)
graphics::plot(doloSlide)
doloBox <- slideBoxplots(dolomedes, doloSpp, 200, interval=10, method="overall")
graphics::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")
graphics::plot(anoBox)
graphics::plot(anoBox, outliers=TRUE)
[Package spider version 1.5.0 Index]