subset | R Documentation |
signal_select()
allows to subset by values of x
.
signal_slice()
allows to subset by position along x
.
signal_select(x, y, ...)
signal_slice(x, y, ...)
## S4 method for signature 'numeric,numeric'
signal_select(x, y, from, to)
## S4 method for signature 'ANY,missing'
signal_select(x, from, to)
## S4 method for signature 'numeric,numeric'
signal_slice(x, y, subset)
## S4 method for signature 'ANY,missing'
signal_slice(x, subset)
x , y |
A |
... |
Currently not used. |
from , to |
A |
subset |
An |
Returns a list
with two components x
and y
.
N. Frerebeau
Other signal processing methods:
signal_bind()
,
signal_correct()
,
signal_drift()
,
signal_mean()
,
signal_shift()
## gamma-ray spectrometry
data("BEGe")
## Plot spectrum
plot(BEGe, type = "l", xlab = "Energy (keV)", ylab = "Count")
## Subset from 2.75 keV to 200 keV
BEGe_1 <- signal_select(BEGe, from = 3, to = 200)
## Plot spectrum
plot(BEGe_1, type = "l", xlab = "Energy (keV)", ylab = "Count")
## Subset from the 20th to the 1250th value
BEGe_2 <- signal_slice(BEGe, subset = 20:1250)
## Plot spectrum
plot(BEGe_2, type = "l", xlab = "Energy (keV)", ylab = "Count")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.