Closed LKobilke closed 1 year ago
Mental note:
R/categorical
" (tab_frequencies()
, crosstab()
), but functions for continouus variables are not organized in a similar manner, e.g.: describe()
, tab_percentiles()
describe()
and describe_cat()
are part of "R/describe
"
This PR comes with several updates:
new data:
new functions with features:
updates for existing functions:
test_icr()
works with grouped data, also covered in testthat(), closing issue #17t_test()
andunianova()
to run a leveneTest and set var.equal = FALSE depending on test result [also included a var.equal-parameter deprecation warning]unianova()
withvar.qual = FALSE
to usetest.welch()
and games-howell posthoct_test()
andunianova()
to display tibbles with 3 digits, closing issue #34 [I opted for three digits because it didn't significantly affect the length of the tibble and proved to be more versatile. This is especially true since the three-digit format overwrites the default seven-digit scientific notation that tibbles use outside the console]updated warning messages:
icr.test()
,t_test()
andunianova()
now raise special warnings when no variables are provided by the userNote: The
devtools:check()
function still generates two notes. The first refers to the dependency on imported packages, which makestidycomm
more susceptible to deprecation errors. The second note is about the use of, for example,vars
instead of.data$vars
. However, changing to the latter contradicts the new evaluation procedure intidyselect 1.2.0
. Consequently, I have opted for the former approach.