This repo exists only to support a short-term Shiny app demo integration. It is a trimmed, temporary export of an in-progress private development branch. It is not a release, is not maintained on its own, will not receive updates independent of that work, and will be taken down once the demo no longer needs it.
Do not use it for analysis, do not depend on it in other code, and do not treat it as a stable reference. When the real integration is ready, the Shiny app will point at the actual growthcleanr repository instead.
The minimum needed to install the package and call cleangrowth() for both the child and adult algorithms: R/, inst/extdata/ reference tables, man/, and the built-in syngrowth example dataset. No vignettes, no test suite.
remotes::install_github("carriedaymont/prelim-gc-do-not-use")library(growthcleanr)
data(syngrowth)
result <- cleangrowth(syngrowth, parallel = FALSE)syngrowth is synthetic data (both pediatric and adult ages) bundled with the package -- see ?syngrowth. result$exclude carries the cleaning decision for each row ("Include" or an exclusion code).