Skip to content

Commit

Permalink
add set_par to documentation of apa_barplot(), apa_beeplot(), apa_lin…
Browse files Browse the repository at this point in the history
…eplot()
  • Loading branch information
mariusbarth committed Jun 18, 2024
1 parent 4e477cb commit cd2e359
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/apa_barplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ apa_barplot.default <- function(
, xlab = NULL
, ylab = NULL
, main = NULL
, set_par = TRUE
, ...
){
ellipsis <- defaults(
Expand All @@ -93,6 +94,7 @@ apa_barplot.default <- function(
, xlab = xlab
, ylab = ylab
, main = main
, set_par = set_par
, jit = .4 # add parameter 'space'
, plot = c("bars", "error_bars")
)
Expand Down
2 changes: 2 additions & 0 deletions R/apa_beeplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ apa_beeplot.default <- function(
, xlab = NULL
, ylab = NULL
, main = NULL
, set_par = TRUE
, ...
){
ellipsis <- defaults(
Expand All @@ -94,6 +95,7 @@ apa_beeplot.default <- function(
, xlab = xlab
, ylab = ylab
, main = main
, set_par = set_par
, plot = c("points", "error_bars", "swarms")
)
)
Expand Down
2 changes: 2 additions & 0 deletions R/apa_lineplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ apa_lineplot.default <- function(
, xlab = NULL
, ylab = NULL
, main = NULL
, set_par = TRUE
, ...
){
ellipsis <- defaults(
Expand All @@ -97,6 +98,7 @@ apa_lineplot.default <- function(
, xlab = xlab
, ylab = ylab
, main = main
, set_par = set_par
, plot = c("points", "error_bars", "lines")
)
)
Expand Down

0 comments on commit cd2e359

Please sign in to comment.