plot.generic_spct {ggspectra} | R Documentation |
Deprecated plot methods
Description
These plot()
methods return a ggplot object with an annotated plot of
an object of a class derived from generic_spct
, of a class derived
from generic_mspct
or of an object of class waveband
for which
an autoplot()
method exists. They are implemented as wrappers of
autoplot()
. The generic for plot()
is defined by base R and
specializations for objects of diverse classes are provided various packages
and R itself. The generic for autoplot()
is defined by package
'ggplot2'.
Usage
## S3 method for class 'generic_spct'
plot(x, ...)
## S3 method for class 'generic_mspct'
plot(x, ...)
## S3 method for class 'waveband'
plot(x, ...)
Arguments
x |
An R object derived from class |
... |
Named arguments passed to |
Value
a ggplot
object.
Deprecation warning!
These plot()
specializatioms are provided for backwards
compatibility, but all new or updated code should call autoplot()
instead of plot()
on objects of spectral and waveband classes defined
in package 'photobiology'.
These methods add support for plot()
specializations as these
specialization were provided by package 'ggspectra' years ago, before
'ggplot2' had an autoplot()
generic. As these methods return ggplots
autoplot is a more suitable name for them.
See Also
autoplot.calibration_spct
, autoplot.cps_spct
,
autoplot.filter_spct
, autoplot.raw_spct
,
autoplot.response_spct
, autoplot.source_spct
and
autoplot.waveband
.
Examples
plot(sun.spct) # deprecated syntax, to be avoided
autoplot(sun.spct) # current syntax, to be used