-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef6aca2
commit 8cd4e83
Showing
5 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ revdep | |
^.*\.pkg | ||
^\.circleci/config\.yml$ | ||
^todo.txt | ||
^CRAN-SUBMISSION$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: vioplot | ||
Title: Violin Plot | ||
Version: 0.4.0.9001 | ||
Version: 0.4.0 | ||
Date: 2022-12-08 | ||
Authors@R: c(person("Daniel", "Adler", email = "[email protected]", role = c("aut", "cph")), | ||
person("S. Thomas", "Kelly", email = "[email protected]", role = c("aut", "cre")), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#' Violin Plot Statistics | ||
#' | ||
#' This function is typically called by another function to gather the statistics necessary | ||
#' for producing box plots, but may be invoked separately. See: \code{\link[grDevices]{boxplot.stats}} | ||
#' | ||
#' @aliases violin.stats violinplot.stats | ||
#' @rdname violin.stats | ||
#' @param x a numeric vector for which the violin plot will be constructed \code{NA}s and \code{NaN}s are allowed and omitted). | ||
#' @param coef this determines how far the plot ‘whiskers’ extend out from the box. If coef is positive, the | ||
#' whiskers extend to the most extreme data point which is no more than coef times the length of the box away | ||
#' from the box. A value of zero causes the whiskers to extend to the data extremes (and no outliers be returned). | ||
#' @param do.conf,do.out logicals; if FALSE, the conf or out component respectively will be empty in the result. | ||
#' @param ... arguments passed to \code{\link[vioplot]{vioplot}}. | ||
#' @importFrom grDevices boxplot.stats | ||
#' @export | ||
vioplot.stats <- function(x, coef = 1.5, do.conf = TRUE, do.out = TRUE, ...){ | ||
boxplot.stats(x, coef = coef, do.conf = do.conf, do.out = do.out) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.