R/zsore.R

Defines functions zscoreGrowthCurve zscore

Documented in zscore zscoreGrowthCurve

#' Calculates Z-Scores of a distribution
#'
#' Calculates Z-Scores based on data
#' @rdname zscore
#' @param .data data object
#' @param round round output to how many decimal place description
#' @param na.rm remove NA values before calculating z-scores
#'
#' @return zscore calculated based on data object or parameters
#'
#' @examples
#' # Capture z-score from the following distribution x
#' x = c(6, 7, 7, 12, 13, 13, 15, 16, 19, 22)
#' z_scores = zscore(x, round = 2) # limit to 2 decimal place
#' z_scores = zscore(x) # no decimal place limit
#'
#' df = data.frame(val = x, zscore = z_scores)
#' head(df)
#' @export

zscore <- function(.data, round, na.rm = TRUE) {
  .x <- (.data - mean(.data, na.rm = na.rm)) / sd(.data, na.rm = na.rm)
  if(!missing(round)){
   .x <-  round(.x, round)
  }
  .x
}



#' @rdname zscore
#' @param Xi physical measurement (e.g. weight, length, head circumference, stature or calculated BMI value)
#' @param Mi values from the table (see reference) corresponding to the age in months of the child
#' @param Si values from the table (see reference) corresponding to the age in months of the child
#' @param Li values from the table (see reference) corresponding to the age in months of the child
#'
#' @examples
#' #EXAMPLE for zscore based on CDC growth chart
#'
#' # Calculate the zscore for a patient weighing 50kg
#' Li=-0.1600954
#' Mi=9.476500305
#' Si=0.11218624
#' Xi=50
#' zscoreGrowthCurve(Xi,Mi,Si,Li)
#'
#' @references CDC growth chart Z score calculation: https://www.cdc.gov/growthcharts/cdc-data-files.htm
#' @export

zscoreGrowthCurve <- function(Xi,Mi,Si,Li=!0){
  stopifnot(is.numeric(Li))
  if(Li){
   (((Xi/Mi)**Li) - 1)/(Li*Si)
  }else{
   log(Xi/Mi)/Si
  }
}

Try the quickcode package in your browser

Any scripts or data that you put into this service are public.

quickcode documentation built on April 11, 2025, 5:49 p.m.