BD.plot: B-D representation of the Bottom Up Unbalanced Haar Wavelet...

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/BD.plot.r

Description

Function for graphical representation of the Bottom Up Unbalanced Haar Wavelet Expansion (here after BUUHWE) of a series, in the Breakpoints-Details plane (B-D plane).

Usage

1
2
BD.plot(x, y = NULL, BUUHWE.out.x = BUUHWE(x), BUUHWE.out.y = BUUHWE(y), 
French = FALSE, col = c('black','red'))

Arguments

x

a numeric vector (a series) whose BUUHWE expansion has to be computed and represented and the B-D plane

y

an optional second numeric vector (a series) whose BUUHWE expansion has to be computed and superimposed to the one of x in the B-D plane. length(y) must be equal to length(x).

BUUHWE.out.x

output of BUUHWE(x), included as an optional argument for saving computation time within the function if it has already been computed and saved outside the function; otherwise BUUHWE transform of x is compute at the call of function BD.plot.

BUUHWE.out.y

output of BUUHWE(y), included as an optional argument for saving computation time within the function if it has already been computed and saved outside the function; otherwise the BUUHWE transform of y is computed by BUUHWE at the call of function BD.plot.

French

logical. Should labels be written in french ? (default=english)

col

vector of size one or two, indicating the colors for representing series x and - if needed -series y in the B-D plane. Default is black for series x and red for series y.

Details

See References below, in particular Timmermans (2012), Chapter 1, or Timmermans and von Sachs (2010).

Value

This function is invoked for its side effect which is to produce a graphical representation of the expansion of a series in its unbalanced Haar wavelet basis. The series is plotted in the plane that is defined by the values of its breakpoints and its detail coefficients. Points are numbered according to their rank in the hierarchy.

Note

Another way to represent the BUUHWE transform of a series is trough function BUUHWE.plot.

Author(s)

Catherine Timmermans, Institute of Statistics, Biostatistics and Actuarial Sciences, UCLouvain, Belgium.

Contact: catherine.timmermans@uclouvain.be

References

The main references are

Other references include

See Also

BUUHWE, BUUHWE.plot

Examples

1
2
3
 x= c(1,7,3,0,-2,6,4,0,2)
 BD.plot(x)
 

Bagidis documentation built on May 29, 2017, noon