plot.mwd | R Documentation |
Plots the wavelet coefficients of a mwd
class object.
## S3 method for class 'mwd'
plot(x, first.level = 1, main = "Wavelet Decomposition Coefficients",
scaling = "compensated", rhlab = FALSE, sub = x$filter$name,
NotPlotVal = 0.05, xlab = "Translate", ylab = "Resolution level",
return.scale = TRUE, colour = (2:(npsi + 1)), ...)
x |
The |
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. |
main |
The main title of the plot. |
scaling |
How you want the coefficients to be scaled. The options are: " The other option is " |
rhlab |
If |
sub |
A subtitle for the plot. |
NotPlotVal |
Doesn't seem to be implemented. |
xlab |
A title for the x-axis |
ylab |
A title for the y-axis |
return.scale |
If true (default) the scale for each resolution level is returned |
colour |
A vector of length |
... |
other arguments to be supplied to plot. |
Produces a plot similar to the ones in Donoho and Johnstone, 1994.
Wavelet coefficients for each resolution level are plotted one above the other, with the high resolution coefficients at the bottom, and the low resolution at the top. Each vector is represented by mwd$npsi
lines one for each element in the coefficient vector. If colour is supported by the device each element will be represented by a different coulour. The coefficients are plotted using the segment
function, with a large positive coefficient being plotted above an imaginary horizontal centre line, and a large negative coefficient plotted below it. The position of a coefficient along a line is indicative of the wavelet basis function's translate number.
The resolution levels are labelled on the left-hand side axis, and the maximum values of the absolute values of the coefficients for the particular level form the right-hand side axis.
The levels of coefficients can be scaled in three ways. If you are not interested in comparing the relative scales of coefficients from different levels, then the default scaling option, "by.level
" is what you need. This computes the maximum of the absolute value of the coefficients at a particular level and scales the so that the fit nicely onto the plot. For this option, each level is scaled DIFFERENTLY. To obtain a uniform scale for all the levels specify the "global
" option to the scaling
argument. This will allow you to make inter-level comparisons.
Axis labels for each resolution level unless return.scale=F
when NULL
is returned. The axis values are the maximum of the absolute value of the coefficients at that resolution level. They are returned because they are sometimes hard to read on the plot.
Version 3.9.6 (Although Copyright Tim Downie 1995-6).
A plot of the coefficients contained within the mwd
object at each resolution level is produced.
G P Nason
accessC.mwd
, accessD.mwd
, draw.mwd
, mfirst.last
, mfilter.select
, mwd
, mwd.object
, mwr
, print.mwd
, putC.mwd
, putD.mwd
, summary.mwd
, threshold.mwd
, wd
, wr.mwd
.
#
# Generate some test data
#
test.data <- example.1()$y
## Not run: ts.plot(test.data)
#
# Decompose test.data with multiple wavelet transform and
# plot the wavelet coefficients
#
tdmwd <- mwd(test.data)
## Not run: plot(tdmwd)
#[1] 1.851894 1.851894 1.851894 1.851894 1.851894 1.851894 1.851894
#
# You should see a plot with wavelet coefficients like in
# plot.wd but at each coefficient position
# there are two coefficients in two different colours one for each of
# the wavelets at that position.
#
# Note the scale for each level is returned by the function.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.