Hello!
First, thank you for a great package!
I would like to display my proportions not as a percentage but in decimal form (e. g. 43% in 0.43). Is this possible?
Thank you for your response.
Aminata
library(devtools)devtools::install_github("isubirana/compareGroups")library(compareGroups)
data(predimed)
cg <- compareGroups(group ~ ., predimed, compute.prop=TRUE)
createTable(cg)
# or directly using descrTable
descrTable(group ~ ., predimed, compute.prop=TRUE)