You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: R/pretty_output_functions.R
+27-5Lines changed: 27 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
#' Pasting Together Information for Two Groups
2
2
#'
3
-
#' Paste together information, often statistics, from two groups. There are two
4
-
#' predefined combinations: mean(sd) and median\[min, max\], but user may also
3
+
#' Paste together information, often statistics, from two groups. There are three
4
+
#' predefined combinations: mean(sd) and median\[min, max\] and median\[first quartile, third quartile\], but user may also
5
5
#' paste any single measure together.
6
6
#'
7
7
#'
@@ -32,7 +32,7 @@
32
32
#' @param verbose a logical variable indicating if warnings and messages should be displayed. Default FALSE.
33
33
#' @details
34
34
#'
35
-
#' User must use consistant naming throughout, with a underscore to separate the group names from the measures (i.e. `Group1_mean` and `Group2_mean`). There also must be columns defining the group names (i.e. `Group1` and `Group2`), which are used to form the `Comparison` variable.
35
+
#' User must use consistent naming throughout, with a underscore to separate the group names from the measures (i.e. `Group1_mean` and `Group2_mean`). There also must be columns defining the group names (i.e. `Group1` and `Group2`), which are used to form the `Comparison` variable.
36
36
#'
37
37
#' `alternative` included as a parameter so the direction can easily be seen in one-sided test. If "two.sided" is selected the value to be pasted between the two group names will be set to `sep_val`, where "greater" will use " > " and "less" with use " < " as the pasting value.
0 commit comments