Skip to content

Commit

Permalink
Removed symbols from standard deviation type tornado plots due to R C…
Browse files Browse the repository at this point in the history
…MD check errors on Mac and Linux
  • Loading branch information
bertcarnell committed Jan 19, 2024
1 parent 05dff92 commit 1f3207e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions R/create_endpoints.R
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,12 @@
endpoints <- as.data.frame(apply(training_data, 2, sdf))
names(endpoints) <- names(means)
}
Level <- c(paste0("\U003BC - ", alpha, "\u03C3"),
paste0("\U003BC + ", alpha, "\u03C3"))
# grid graphics will not the multi-byte character encodings correctly
# on the examples when the pdf is created for R CMD check
#Level <- c(paste0("\U003BC - ", alpha, "\u03C3"),
# paste0("\U003BC + ", alpha, "\u03C3"))
Level <- c(paste0("mean - ", alpha, "*std"),
paste0("mean + ", alpha, "*std"))
} else
{
stop("command not recognized")
Expand Down

0 comments on commit 1f3207e

Please sign in to comment.