patient.R 266 B

123456789101112131415161718
  1. # PATIENT CLASS
  2. patient <- new.env()
  3. patient$WALKING <- NULL
  4. patient$SITTING <- NULL
  5. patient$UP <- NULL
  6. patient$DOWN <- NULL
  7. patient$WALKBASE <- NULL
  8. patient$SITBASE <- NULL
  9. patient$height <- function() abs(patient$SITBASE) + patient$WALKBASE