R/Read_Results.R

Defines functions readRDS_Integration

# --------------------------------------------------------------------------- # 
readRDS_Integration = function(date, name){
    
    infile = file.path(integration.path,name, paste(date, name, 'rds', sep='.'))
    if(!file.exists(infile))
        stop('The input file does not exist')
    return(readRDS(infile))
    
}
frenkiboy/MyLib documentation built on Oct. 24, 2020, 11:01 a.m.