tests/testthat/helper-numeric.R

generate_numeric_test_data <- function() {
  set.seed(1812)
  out <- data.frame(obs = rnorm(50))
  out$pred <- .2 + 1.1 * out$obs + rnorm(50, sd = 0.5)
  out$pred_na <- out$pred
  ind <- (1:5) * 10
  out$pred_na[ind] <- NA
  out$rand <- sample(out$pred)
  out$rand_na <- out$rand
  out$rand_na[ind] <- NA
  out
}

Try the yardstick package in your browser

Any scripts or data that you put into this service are public.

yardstick documentation built on April 21, 2023, 9:08 a.m.