plot.wp | R Documentation |
This function plots wavelet packet transform coefficients arising from a
wp.object
object.
## S3 method for class 'wp'
plot(x, nvwp = NULL, main = "Wavelet Packet Decomposition",
sub, first.level = 5, scaling = "compensated", dotted.turn.on = 5,
color.force = FALSE, WaveletColor = 2, NodeVecColor = 3,
fast = FALSE, SmoothedLines = TRUE, ...)
x |
The wp object whose coefficients you wish to plot. |
nvwp |
An optional associated wavelet packet node vector class object of
class |
main |
The main title of the plot. |
sub |
A subtitle for the plot. |
first.level |
The first resolution level to begin plotting at. This argument can be quite useful when you want to supress some of the coarser levels in the diagram. |
scaling |
How you want the coefficients to be scaled.
The options are: I don't know why compensated is the default option? That is probably silly! |
dotted.turn.on |
The plot usually includes some dotted vertical bars that separate wavelet packets to make it clearer which packets are which. This option controls the coarsest resolution level at which dotted lines appear. All levels equal to and finer than this level will receive the vertical dotted lines. |
color.force |
If FALSE then some "clever" code in CanUseMoreThanOneColor tries to figure out how many colours can be used (THIS HAS NOT BEEN MADE TO WORK
IN R) and hence whether colour can be used to pick out wavelet
packets or elements of a node vector.
This option was designed to work with S.
It doesn't work with R and so it is probably best to set
|
WaveletColor |
A colour specification for the colour for wavelet coefficients. Wavelet coefficients are a component of wavelet packet coefficients and this option allows them to be drawn in a different color. In R you can use names like "red", "blue" to select the colors. In R you'll also need to set the color.force option to TRUE. |
NodeVecColor |
If a nvwp object is supplied this option can force
coefficients that are part of that nvwp to be drawn in the specified
color. See the explanation for the |
fast |
This option no longer does anything. |
SmoothedLines |
If TRUE then the scaling function coefficients are
drawn using lines (and look like mini versions of the original).
If FALSE then the scaling function coefficients are drawn using
the |
... |
Other arguments to the plot command |
A wavelet packet object contains wavelet packet coefficients of a signal
(usually obtained by the wp
wavelet packet transform function).
Given a wavelet packet object wp it possesses nlevelsWT(wp)
resolution levels.
In WaveThresh the coarsest level is level 0 and the finest is level
nlevelsWT-1.
For wavelet packets the number of packets at level j is 2^(nlevelsWT-j).
This function plots the wavelet packet coefficients. At the bottom of the plot the original input function (if present) is plotted. Then levels above the original plot successively coarser wavelet packet coefficients. From the Mallat transform point of view smoothing goes up off the the left of the picture and detail to the right. The packets are indexed from 0 to the number of packets going from left to right within each resolution level.
The function has the ability to draw wavelet coefficients in a different color using the WaveletColor
argument.
Optionally, if a node vector wavelet packet object is also supplied, which
contains the specification of a basis selected from the packet table,
then packets in that node vector can be highlighted in a another colour determined by the
NodeVecColor
.
Packets are drawn on the plot and can be separated by vertical dotted lines.
The resolution levels at which this happens can be controlled by the
dotted.turn.on
option.
The coarsest resolution level to be drawn is controlled by the
first.level
option.
Nothing
G P Nason
MaNoVe
, wp
, wp.object
#
# Generate some test data
#
v <- DJ.EX()$blocks
#
# Let's plot these to see what they look like
#
## Not run: plot(v, type="l")
#
# Do a wavelet packet transform
#
vwp <- wp(v)
#
# And create a node vector
#
vnv <- MaNoVe(vwp)
#
# Now plot the wavelet packets with the associated node vector
#
## Not run: plot(vwp, vnv, color.force=T, WaveletColor="red", dotted.turn.on=7)
#
# The wavelet coefficients are plotted in red. Packets from the node vector
# are depicted in green. The node vector gets plotted after the wavelet
# coefficients so the green packets overlay the red (retry the plot command
# but without the vnv object to see just the
# wavelet coefficients). The vertical dotted lines start at resolution
# level 7.
#
#
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.