Skip to content

Commit

Permalink
fix 492: clarifying difference between SD and SE
Browse files Browse the repository at this point in the history
  • Loading branch information
kassambara committed Nov 22, 2022
1 parent 36cc4e4 commit c25039d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- `stat_compare_means()`: The dot-dot notation (`..p.signif..`) was deprecated in ggplot2 3.4.0; `after_stat(p.signif)` should be used; updated so that `..p.signif..` is automatically converted into `after_stat()` format without warning for bacward compatibility.
- Enable faceting by column names with spaces (#391)
- Licence changed to GPL (>= 2) (#482)
- `desc_statby()` doc updated to clarify the difference between SD (standard deviation) and SE (standard error) (#492)


## Bug fixes
Expand Down
4 changes: 2 additions & 2 deletions R/desc_statby.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#' \item \strong{mean}: mean
#' \item \strong{iqr}: interquartile range
#' \item \strong{mad}: median absolute deviation (see ?MAD)
#' \item \strong{sd}: standard deviation of the mean
#' \item \strong{se}: standard error of the mean
#' \item \strong{sd}: standard deviation of the sample
#' \item \strong{se}: standard error of the mean. It's calculated as the sample standard deviation divided by the root of the sample size.
#' \item \strong{ci}: confidence interval of the mean
#' \item \strong{range}: the range = max - min
#' \item \strong{cv}: coefficient of variation, sd/mean
Expand Down
4 changes: 2 additions & 2 deletions man/desc_statby.Rd

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

0 comments on commit c25039d

Please sign in to comment.