Skip to content

Commit

Permalink
add doc [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher committed Jun 6, 2023
1 parent f0f61dc commit 4b34064
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
13 changes: 13 additions & 0 deletions R/plot.dw_data_tabulate.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#' Plot tabulated data.
#'
#' @param x Object created by `datawizard::data_tabulate()`.
#' @param value_lab Boolean. Should values and percentages be displayed at the
#' top of each bar.
#' @param remove_na Boolean. Should missing values be dropped?
#' @param na_label The label given to missing values (only when
#' `remove_na = FALSE`).
#' @param error_bar Boolean. Should error bars be displayed?
#'
#' @rdname plot.dw_data_tabulate
#' @export

plot.dw_data_tabulates <- function(x, value_lab = TRUE, remove_na = FALSE,
Expand All @@ -8,6 +19,8 @@ plot.dw_data_tabulates <- function(x, value_lab = TRUE, remove_na = FALSE,
})
}

#' @rdname plot.dw_data_tabulate
#'
#' @export

plot.dw_data_tabulate <- function(x, value_lab = TRUE, remove_na = FALSE,
Expand Down
39 changes: 39 additions & 0 deletions man/plot.dw_data_tabulate.Rd

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

0 comments on commit 4b34064

Please sign in to comment.