Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Sep 30, 2023
1 parent 29dfe5f commit b30243b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/p_map.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
#' for (iteration in 1:250) {
#' x <- rnorm(1000, 1, 1)
#' result <- data.frame(
#' "Kernel" = p_map(x, method = "kernel"),
#' "KernSmooth" = p_map(x, method = "KernSmooth"),
#' "logspline" = p_map(x, method = "logspline")
#' "Kernel" = as.numeric(p_map(x, method = "kernel")),
#' "KernSmooth" = as.numeric(p_map(x, method = "KernSmooth")),
#' "logspline" = as.numeric(p_map(x, method = "logspline"))
#' )
#' data <- rbind(data, result)
#' }
Expand Down
6 changes: 3 additions & 3 deletions man/p_map.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b30243b

Please sign in to comment.