A function that returns a description proportion that contains the number and the percentage
describeProp(
x,
html = TRUE,
digits = 1,
digits.nonzero = NA,
number_first = TRUE,
useNA = c("ifany", "no", "always"),
useNA.digits = digits,
default_ref = NULL,
percentage_sign = TRUE,
language = "en",
...
)
string
A string formatted for either LaTeX or HTML
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 (). This is only used together with the useNA variable.
This indicates if missing should be added as a separate
row below all other. See table
for useNA
-options.
Note: defaults to ifany and not "no" as table
does.
The number of digits to use for the
missing percentage, defaults to the overall digits
.
The default reference, either first, the level name or a number within the levels. If left out it defaults to the first value.
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. Note, this is only used when combined with the missing information.
The ISO-639-1 two-letter code for the language of
interest. Currently only english is distinguished from the ISO
format using a ',' as the separator in the txtInt
function.
Passed on to describeFactors
Other descriptive functions:
describeFactors()
,
describeMean()
,
describeMedian()
,
getDescriptionStatsBy()
,
getPvalWilcox()
describeProp(factor(sample(50, x = c("A", "B", NA), replace = TRUE)))
Run the code above in your browser using DataLab