A simple function applied by the getDescriptionStatsBy
for the total column.
prGetStatistics(
x,
show_perc = FALSE,
html = TRUE,
digits = 1,
digits.nonzero = NA,
numbers_first = TRUE,
useNA = c("ifany", "no", "always"),
useNA.digits = digits,
show_all_values = FALSE,
continuous_fn = describeMean,
factor_fn = describeFactors,
prop_fn = factor_fn,
percentage_sign = TRUE
)
The variable that you want the statistics for
If HTML compatible output should be used. If FALSE
it outputs LaTeX formatting
The number of decimals used
The number of decimals used for values that are close to zero
If the number should be given or if the percentage should be presented first. The second is encapsulated in parentheses ().
The number of digits to use for the
missing percentage, defaults to the overall digits
.
This is by default false as for instance if there is
no missing and there is only one variable then it is most sane to only show
one option as the other one will just be a complement to the first. For instance
sex - if you know gender then automatically you know the distribution of the
other sex as it's 100 % - other %. To choose which one you want to show then
set the default_ref
parameter.
The method to describe continuous variables. The
default is describeMean
.
The method used to describe factors, see describeFactors
.
The method used to describe proportions, see describeProp
.
If you want to suppress the percentage sign you can set this variable to FALSE. You can also choose something else that the default % if you so wish by setting this variable.
A matrix or a vector depending on the settings