R/loadEXPC.R

Defines functions loadEXPC

Documented in loadEXPC

loadEXPC = function(folders)
{
# How to get nominal time without PCTPT or PCTPTNUM?
# if possible, utilize VISIT, VISITNUM, PCTPT, PCTPTNUM -> use intersect of columns

  EX = readEX(folders)
  PC = readPC(folders)

  Res = list(EX, PC)
  names(Res) = c("EX", "PC")
  attr(Res, "NCA") = "EXPC"
  return(Res)
}

Try the pkr package in your browser

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

pkr documentation built on June 11, 2022, 9:05 a.m.