Derivative

Derivative



derivative icon

In spectral analysis, derivatives are often used as a preprocessing technique to enhance specific features of the spectra or to remove baseline effects. The derivative operation is typically performed using the Savitzky-Golay filter, which allows for smoothing and differentiation in a single step. The order of the derivative can be selected based on the desired level of enhancement or suppression of spectral features.

Savitzky-Golay derivative

DOI: https://doi.org/10.1021/ac60214a047 (opens in a new tab)

The derivative operation is typically performed using the Savitzky-Golay filter, which allows for smoothing and differentiation in a single step. Higher-order derivatives can further enhance or suppress spectral features, but they are generally more sensitive to noise.

Configurable Parameters:
  • First Derivative: Highlights the rate of change in the intensity values. It can be useful for resolving overlapping peaks, removing baseline offsets, and enhancing spectral features.
  • Second Derivative:Highlights the rate of change of the first derivative, or the curvature of the spectrum. It can be useful for resolving overlapping peaks, removing linear baselines, and enhancing spectral features.
  • Third and Fourth derivatives: These higher-order derivatives can be useful for further enhancing spectral features or removing more complex baseline effects. However, they are generally more sensitive to noise and may require additional smoothing or preprocessing steps.

The Savitzky-Golay filter is a digital filter that performs smoothing and differentiation of a set of data points within a specified window size. The filter coefficients are derived from an unweighted linear least-squares regression and a polynomial model of a specific degree. The general formula for the Savitzky-Golay filter is:

yin=(j=m)mcjyi+jy_i^{n} = \sum_{(j = -m)}^{m} c_j y_{i + j}

Where:
yi(n)y_i^{(n)} is the nth derivative of the smoothed data point at index ii
yi+jy_{i+j} are the original data points within the window of size (2m+1)(2m+1)
cjc_j are the Savitzky-Golay filter coefficients for the desired derivative order and polynomial degree

The filter coefficients cjc_j are calculated based on the desired derivative order, polynomial degree, and window size, ensuring that the smoothing and differentiation operations are performed simultaneously.

Imagine you have a spectrum with two overlapping peaks and a linear baseline. Taking the first derivative of the spectrum can help resolve the overlapping peaks by highlighting the points of maximum slope, which correspond to the peak positions. Additionally, any constant baseline offsets will be removed, as the derivative of a constant is zero. If you further take the second derivative, it can help remove the linear baseline, as the second derivative of a linear function is zero. The second derivative will also highlight the points of maximum curvature, which correspond to the peak positions.