R/AsinhTransformation.R

Defines functions AsinhTransformation

Documented in AsinhTransformation

#' Data transformation using asinh
#'
#' @keywords internal

AsinhTransformation <- function(M, num_col, a = 0, b = 0.2, c = 0){
  
  M[,num_col] <- asinh((a+b*M[,num_col])+c)
  
  return(M)
}

Try the cytometree package in your browser

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

cytometree documentation built on Dec. 5, 2019, 1:06 a.m.