Skip to content

Commit

Permalink
Placating CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathon-love committed Oct 19, 2023
1 parent a1828d7 commit ac0f743
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions R/descriptives.h.R
Original file line number Diff line number Diff line change
Expand Up @@ -518,15 +518,18 @@ descriptivesBase <- if (requireNamespace("jmvcore", quietly=TRUE)) R6::R6Class(
#'
#' # spliting by a variable
#' descriptives(formula = disp + mpg ~ cyl, dat,
#' median=F, min=F, max=F, n=F, missing=F)
#' median=FALSE, min=FALSE, max=FALSE, n=FALSE,
#' missing=FALSE)
#'
#' # providing histograms
#' descriptives(formula = mpg ~ cyl, dat, hist=T,
#' median=F, min=F, max=F, n=F, missing=F)
#' median=FALSE, min=FALSE, max=FALSE, n=FALSE,
#' missing=FALSE)
#'
#' # splitting by multiple variables
#' descriptives(formula = mpg ~ cyl:gear, dat,
#' median=F, min=F, max=F, missing=F)
#' median=FALSE, min=FALSE, max=FALSE,
#' missing=FALSE)
#'}
#' @param data the data as a data frame
#' @param vars a vector of strings naming the variables of interest in
Expand Down
9 changes: 6 additions & 3 deletions jamovi/descriptives.a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,18 @@ description:
# spliting by a variable
descriptives(formula = disp + mpg ~ cyl, dat,
median=F, min=F, max=F, n=F, missing=F)
median=FALSE, min=FALSE, max=FALSE, n=FALSE,
missing=FALSE)
# providing histograms
descriptives(formula = mpg ~ cyl, dat, hist=T,
median=F, min=F, max=F, n=F, missing=F)
median=FALSE, min=FALSE, max=FALSE, n=FALSE,
missing=FALSE)
# splitting by multiple variables
descriptives(formula = mpg ~ cyl:gear, dat,
median=F, min=F, max=F, missing=F)
median=FALSE, min=FALSE, max=FALSE,
missing=FALSE)
formula:
vars:
Expand Down

0 comments on commit ac0f743

Please sign in to comment.