## load example data set
data(rockfall)
## plot data set straightforward
plot_signal(data = rockfall_eseis)
## plot data set with lower resolution
plot_signal(data = rockfall_eseis, n = 100)
## plot data set but not as an eseis object
plot_signal(data = rockfall_z, time = rockfall_t)
## load earthquake data set
data(earthquake)
## plot all three components (after changing plot options)
pars <- par(no.readonly = TRUE)
par(mfcol = c(3, 1))
plt <- lapply(s, plot_signal, t = t)
par(pars)
Run the code above in your browser using DataLab