G10BAF performs kernel density estimation using a Gaussian kernel.
Given a sample of
observations,
, from a distribution with unknown density function,
, an estimate of the density function,
, may be required. The simplest form of density estimator is the histogram. This may be defined by:
where
is the number of observations falling in the interval
to
,
is the lower bound to the histogram and
is the upper bound. The value
is known as the window width. To produce a smoother density estimate a kernel method can be used. A kernel function,
, satisfies the conditions:
The kernel density estimator is then defined as
The choice of
is usually not important but to ease the computational burden use can be made of the Gaussian kernel defined as
The smoothness of the estimator depends on the window width
. The larger the value of
the smoother the density estimate. The value of
can be chosen by examining plots of the smoothed density for different values of
or by using cross-validation methods (see
Silverman (1990)).
Silverman (1982) and
Silverman (1990) show how the Gaussian kernel density estimator can be computed using a fast Fourier transform (
FFT). In order to compute the kernel density estimate over the range
to
the following steps are required.
(i) |
Discretize the data to give equally spaced points with weights (see Jones and Lotwick (1984)). |
(ii) |
Compute the FFT of the weights to give . |
(iii) |
Compute where . |
(iv) |
Find the inverse FFT of to give . |
To compute the kernel density estimate for further values of
only steps
(iii) and
(iv) need be repeated.
Jones M C and Lotwick H W (1984) Remark AS R50. A remark on algorithm AS 176 Appl. Statist. 33 120–122
Silverman B W (1982) Algorithm AS 176. Kernel density estimation using the fast Fourier transform Appl. Statist. 31 93–99
- 1: N – INTEGERInput
On entry: , the number of observations in the sample.
Constraint:
.
- 2: X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the observations,
, for .
- 3: WINDOW – REAL (KIND=nag_wp)Input
On entry: , the window width.
Constraint:
.
- 4: SLO – REAL (KIND=nag_wp)Input
On entry:
, the lower limit of the interval on which the estimate is calculated. For most applications
SLO should be at least three window widths below the lowest data point.
Constraint:
.
- 5: SHI – REAL (KIND=nag_wp)Input
On entry:
, the upper limit of the interval on which the estimate is calculated. For most applications
SHI should be at least three window widths above the highest data point.
- 6: NS – INTEGERInput
On entry: the number of points at which the estimate is calculated, .
Constraints:
- ;
- The largest prime factor of NS must not exceed , and the total number of prime factors of NS, counting repetitions, must not exceed .
- 7: SMOOTH(NS) – REAL (KIND=nag_wp) arrayOutput
On exit: the values of the density estimate,
, for .
- 8: T(NS) – REAL (KIND=nag_wp) arrayOutput
On exit: the points at which the estimate is calculated,
, for .
- 9: USEFFT – LOGICALInput
On entry: must be set to .FALSE. if the values of
are to be calculated by G10BAF and to .TRUE. if they have been computed by a previous call to G10BAF and are provided in
FFT. If
then the arguments
N,
SLO,
SHI,
NS and
FFT must remain unchanged from the previous call to G10BAF with
.
- 10: FFT(NS) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if
,
FFT must contain the fast Fourier transform of the weights of the discretized data,
, for
. Otherwise
FFT need not be set.
On exit: the fast Fourier transform of the weights of the discretized data,
, for .
- 11: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
See
Jones and Lotwick (1984) for a discussion of the accuracy of this method.
The time for computing the weights of the discretized data is of order
, while the time for computing the
FFT is of order
, as is the time for computing the inverse of the
FFT.
A sample of
standard Normal
variates are generated using
G05SKF and the density estimated on
points with a window width of
. The resulting estimate of the density function is plotted using
G01AGF.