Skip to content

bips-hb/IDEFICS_scalc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

R-CMD-check

📦 IDEFICS.scalc

IDEFICS.scalc provides functions to compute standardized percentiles, z-scores, and a composite Metabolic Syndrome (MetS) score for children's anthropometric and metabolic parameters, based on the IDEFICS reference study. The package also supports categorizing health risk levels using action thresholds.

🔧 Installation

You can install the development version of IDEFICS_scalc from GitHub using:

# Install devtools if not already installed
install.packages("devtools")

# Install directly from GitHub
devtools::install_github("bips-hb/IDEFICS_scalc")

🚀 Example

library(IDEFICS.scalc)

# Input: data frame with raw values
df <- data.frame(
  sex = c("f", "m"),
  age = c(6, 7),
  height = c(120, 125),
  waist = c(55, 60),
  homa = c(1.2, 1.4),
  sbp = c(100, 105),
  dbp = c(65, 70),
  trg = c(0.9, 1.0),
  hdl = c(1.1, 1.0)
)

# Calculate z-scores and MetS
results <- ScoreCalc(df, return_values = c("z.score", "MetS"))

# View output
print(results)

📚 Functions

  • get_scores() — Get percentiles or z-scores for a single variable.
  • ScoreCalc() — Calculate scores for multiple variables and optionally MetS.
  • MetSScore() — Calculate MetS from z-scores.
  • action_levels() — Assign action levels based on percentile cutoffs.

📖 Reference

This package uses internal parameter tables based on the IDEFICS study, a European cohort focused on childhood obesity and metabolic health:

The reference data used in this package was originally published in:

This package improves upon and packages that logic cleanly for programmatic and research use.

About

R package to calculate IDEFICS scores more comfortably.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages