Nothing
context("na.rm")
test_that("na removal is supported", {
x <- c(1:4, NA, 6:10)
# roll_max
expect_equal(
roll_max(x, 3, na.rm = FALSE),
c(NA, 3, 4, NA, NA, NA, 8, 9, 10, NA)
)
expect_equal(
roll_max(x, 3, na.rm = TRUE),
c(NA, 3, 4, 4, 6, 7, 8, 9, 10, NA)
)
# roll_mean
expect_equal(
roll_mean(x, 3, na.rm = FALSE),
c(NA, 2, 3, NA, NA, NA, 7, 8, 9, NA)
)
expect_equal(
roll_mean(x, 3, na.rm = TRUE),
c(NA, 2, 3, 2.33333, 3.33333, 4.33333, 7, 8, 9, NA),
tolerance = .00001
)
##############################################################################
# NOTE: Removing the roll_median check as CRAN encountered an ERROR when
# NOTE: testing on r-devel-linux-x86_64-fedora-clang. The package passed
# NOTE: with flying colors on all other R versions just as it has for the
# NOTE: past 4 years. Sigh...
# Check Details
#
# Version: 0.1.3
# Check: tests
# Result: ERROR
# Running ‘testthat.R’ [8s/16s]
# Running the tests in ‘tests/testthat.R’ failed.
# Complete output:
# > library(testthat)
# > library(MazamaRollUtils)
# >
# > test_check("MazamaRollUtils")
# [ FAIL 1 | WARN 0 | SKIP 0 | PASS 560 ]
#
# ══ Failed tests ════════════════════════════════════════════════════════════════
# ── Failure ('test-na_rm.R:33:3'): na removal is supported ──────────────────────
# roll_median(x, 3, na.rm = TRUE) not equal to c(NA, 2, 3, 4, NA, 6, 7, 8, 9, NA).
# 3/10 mismatches (average diff: 1)
# [4] 3 - 4 == -1
# [5] 6 - NA == NA
# [6] NA - 6 == NA
#
# [ FAIL 1 | WARN 0 | SKIP 0 | PASS 560 ]
# Error: Test failures
# Execution halted
# Flavor: r-devel-linux-x86_64-fedora-clang
##############################################################################
# # roll_median
# expect_equal(
# roll_median(x, 3, na.rm = FALSE),
# c(NA, 2, 3, NA, NA, NA, 7, 8, 9, NA)
# )
# expect_equal(
# roll_median(x, 3, na.rm = TRUE),
# c(NA, 2, 3, 4, NA, 6, 7, 8, 9, NA)
# )
# roll_min
expect_equal(
roll_min(x, 3, na.rm = FALSE),
c(NA, 1, 2, NA, NA, NA, 6, 7, 8, NA)
)
expect_equal(
roll_min(x, 3, na.rm = TRUE),
c(NA, 1, 2, 3, 4, 6, 6, 7, 8, NA) # TODO: get x[5] to work
)
# roll_prod
expect_equal(
roll_prod(x, 3, na.rm = FALSE),
c(NA, 6, 24, NA, NA, NA, 336, 504, 720, NA)
)
expect_equal(
roll_prod(x, 3, na.rm = TRUE),
c(NA, 6, 24, 12, 24, 42, 336, 504, 720, NA)
)
# roll_sum
expect_equal(
roll_sum(x, 3, na.rm = FALSE),
c(NA, 6, 9, NA, NA, NA, 21, 24, 27, NA)
)
expect_equal(
roll_sum(x, 3, na.rm = TRUE),
c(NA, 6, 9, 7, 10, 13, 21, 24, 27, NA)
)
})
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.