Nothing
data("BEGe")
data("XRD")
# Bind =========================================================================
if (at_home()) {
XRD1 <- signal_drift(XRD, lag = 1500)
expect_equal_to_reference(signal_bind(XRD, XRD1)[, 1:20], file = "_snaps/signal_bind.rds")
XRD1 <- signal_slice(XRD1, subset = 1:100)
expect_error(signal_mean(XRD, XRD1))
}
# Mean =========================================================================
if (at_home()) {
XRD1 <- signal_drift(XRD, lag = 1500)
expect_equal_to_reference(signal_mean(XRD, XRD1), file = "_snaps/signal_mean.rds")
XRD1 <- signal_slice(XRD1, subset = 1:100)
expect_error(signal_mean(XRD, XRD1))
}
# Select =======================================================================
## Subset from 2.75 keV to 200 keV
BEGe_select <- signal_select(BEGe, from = 3, to = 200)
expect_true(min(BEGe_select$x) > 2)
expect_true(max(BEGe_select$x) < 201)
# Slice ========================================================================
## Subset from the 20th to the 1250th value (1231 values)
BEGe_slice <- signal_slice(BEGe, subset = 20:1250)
expect_length(BEGe_slice$x, 1231)
expect_length(BEGe_slice$y, 1231)
# Shift ========================================================================
## Shift by one degree
offset <- signal_shift(XRD, lag = 1)
expect_equal(offset$x, XRD$theta + 1)
# plot(XRD, type = "l", xlab = "", ylab = "")
# lines(offset, type = "l", col = "red")
# Drift ========================================================================
## Drift by 500
XRD_plus <- signal_drift(XRD, lag = 250)
expect_equal(XRD_plus$y, XRD$count + 250)
XRD_minus <- signal_drift(XRD, lag = XRD, subtract = TRUE)
expect_equal(XRD_minus$y, rep(0, nrow(XRD)))
# plot(XRD, type = "l", xlab = "", ylab = "")
# lines(XRD_plus, type = "l", col = "red")
# Correct ======================================================================
if (at_home()) {
rubberband <- signal_correct(XRD, method = "rubberband")
# plot(XRD, type = "l", ylim = c(0, 35500), xlab = "", ylab = "")
# lines(rubberband, type = "l", col = "red")
expect_equal_to_reference(rubberband, file = "_snaps/signal_correct.rds")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.