R/normalize_AR.R

Defines functions normalize.AR

normalize.AR = function(AR){
  AR = (AR - min(AR)) / (max(AR) - min(AR))
  return(AR)
}

Try the MARMoT package in your browser

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

MARMoT documentation built on May 29, 2024, 9:56 a.m.