For the old
certetools
, see here (private repo): https://github.com/certe-medical-epidemiology/certetools
These are R packages developed by Certe, a non-profit organisation for integrated medical diagnostics and advice for primary and secondary healthcare. Certe provides high-quality medical diagnostics and related products and services for healthcare providers and their patients. Hospitals, (general) practitioners, midwives and thus hundreds of thousands of people have relied on Certe's care for many years.
Their department of Medical Epidemiology, which developed these R packages, conducts (and develops new methods for) medical data analyses, for both routine workflows and scientific research. Our R packages are not on CRAN since their use is primarily intended for own staff, but they are publicly available to support open science. All our R packages are free to use and licensed under the GNU General Public License v2.0 (GPL-2).
All our R packages are published here at R-universe, allowing anyone to install and update the packages using common methods, such as the RStudio menu bar or install.packages()
. To add the Certe Medical Epidemiology R-universe to your existing repositories, run:
options(repos = c(
CerteMedEpi = "https://certe-medical-epidemiology.r-universe.dev",
options()$repos)
You can now install any Certe R package, e.g.:
# our 'loader package' certedata installs all Certe R packages this way:
install.packages("certedata", dependencies = TRUE)
# or install a specific package:
install.packages("certegis")
install.packages("certeplot2")
install.packages("certestats")