plot_ppsd {eseis} | R Documentation |
Plot a probabilistic power spectral density estimate (PPSD)
Description
The function uses the output of signal_spectrogram()
to plot a
probabilistic power spectral density estimate.
Usage
plot_ppsd(data, res = c(500, 500), n, ...)
Arguments
data |
|
res |
|
n |
|
... |
Additional arguments passed to the plot function. |
Value
Graphic output of a spectrogram.
Author(s)
Michael Dietze
See Also
Examples
## load example data set
data(rockfall)
## deconvolve data set
r <- signal_deconvolve(data = rockfall_eseis)
## calculate PSD
p <- signal_spectrogram(data = r)
## plot PPSD
plot_ppsd(data = p$PSD)
## plot PPSD with lower resolution, more smoothing and other colour
ppsd_color <- colorRampPalette(c("white", "black", "red"))
plot_ppsd(data = p$PSD,
res = c(200, 200),
n = c(15, 20),
col = ppsd_color(200))
[Package eseis version 0.7.3 Index]