msl.screenplot {TrendSLR} | R Documentation |
Plotting to filescreen options.
Description
Plotting to filescreen options.
Usage
msl.screenplot(x, type = 1, ci = 1)
Arguments
x |
object of class “msl.trend” (see |
type |
numeric, enables a user defined input to select the type of chart to be plotted. 5 seperate options are available:
|
ci |
numeric, enables a user defined input to select the type of confidence interval to be displayed on the plots. The default setting (ci = 1) corresponds to a 95% confidence interval whilst ci = 2 provides a 99% confidence interval. |
Details
This function provides summary plots direct to the screen for both
“msl.trend” (see msl.trend
) and “custom.trend”
(see custom.trend
) objects. The same range of alternative plotting
to file options (in JPEG format) are available via msl.fileplot
.
See Also
msl.trend
, custom.trend
,
msl.fileplot
Examples
# Plot to screen from "msl.trend" object
data(s) # "msl.trend" object
str(s) # check object
msl.screenplot(s) # default screen plot output, 3 panels, 95% confidence intervals
msl.screenplot(s, type=2) # plot time series, 95% confidence intervals
msl.screenplot(s, type=3) # plot velocity, 95% confidence intervals
msl.screenplot(s, type=4, ci=2) # plot acceleration, 99% confidence intervals
msl.screenplot(s, type=5, ci=2) # 2 panels, 99% confidence intervals