LukasWallrich / timesaveR

R package to quickly perform data analysis and reporting tasks that might otherwise be time intensive
https://lukaswallrich.github.io/timesaveR
GNU General Public License v3.0
5 stars 1 forks source link

fmt_p returns misleading results with character input #10

Closed LukasWallrich closed 1 month ago

LukasWallrich commented 3 months ago

Especially false significant results must be avoided.

library(timesaveR)
#> Note re timesaveR: Many functions in this package are alpha-versions - please treat results with care and report bugs and desired features.
fmt_p("a")
#> [1] "> 1 (!!)"
# and worse
fmt_p(".1")
#> [1] "< .001"

Created on 2024-07-10 with reprex v2.0.2