R/ridNA.R

Defines functions ridNA

Documented in ridNA

 ridNA<-function(z, temp)
  {
    ######  replace NA with something else (numeric)
    z[is.na(z)] = temp
    return(z)
  }
  

Try the ProfessR package in your browser

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

ProfessR documentation built on Aug. 21, 2023, 9:07 a.m.