whittaker2 | R Documentation |
Smooth Eilers2003 or estimate the baseline Eilers2004-PTW of a surface measured on an arbitrary grid by minimising a sum of penalties. Combined difference orders and two different methods of preventing negative values in the output are supported.
This is not a public interface. Subject to change without further notice. Please do not call from outside albatross.
whittaker2(x, y, z, lambda, d, p, logscale, nonneg)
diffmat(x, y, d)
vandermonde(x0)
x |
Grid values along the rows of |
y |
Grid values along the columns of |
z |
Matrix containing the surface values to smooth or |
lambda |
A vector of smoothness penalties, one for every difference order.
Must be of the same length as |
d |
|
p |
If not missing, use the asymmetric penalty method
Eilers2004-PTW to estimate the baseline by penalising the
differences with weight |
z.hat < zẑ < z and 1 - p
otherwise. Typically, values around
3{10^{-3}
How to differentiate a function tabulated on a fixed, potentially nonuniform grid before you even know its values? Use its Taylor series.
First derivative is special because it's possible to use central
differences and get a second-order accurate result, even on a
non-uniform grid, by carefully choosing the points where the
derivative is calculated. Let x + \frac{h}{2}
and
x - \frac{h}{2}
be a pair of adjacent points from the
grid. Here's the Taylor series expansion for f
around x
,
with the Lagrange form of the reminder:
f(x + h/2) = f(x) + h/2 f'(x) + h^2/8 f”(x) + h^3/48 f”'(\zeta) f (x + <sup>h</sup>/<sub>2</sub>) = f(x) + <sup>h</sup>/<sub>2</sub> f'(x) + <sup>h<sup>2</sup></sup>/<sub>8</sub> f”(x) + <sup>h<sup>3</sup></sup>/<sub>48</sub> f”'(ζ)
3{ f \left(x - \frac{h}{2}\right) = f(x) - \frac{h}{2} f'(x) + \frac{h^2}{8} f''(x) - \frac{h^3}{48} f'''(\eta)whittaker2 |
A matrix of the same shape as |
diffmat |
A difference matrix 3{\mathbf D |
D<b>D</b> that, when multiplied by 3{\mathrm{vec}(\mathbf{Z})
feemscatter
data(feems)
z <- feemscatter(feems$a, rep(25, 4), 'omit')
str(albatross:::whittaker2(
attr(z, 'emission'), attr(z, 'excitation'), z,
c(1, 1e-3), 1:2, logscale = NA, nonneg = 1
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.