Function used in `runSeries` to populate the yHat, SE, and ConcHat columns into the Daily and Sample data frames within the eList.
Examples
eList <- Choptank_eList
eList$Daily$yHat <- NULL
eList$Daily$SE <- NULL
eList$Sample$SE <- NULL
eList$Sample$yHat <- NULL
eList <- fillUpElists(eList)
head(eList$Daily$yHat)
#> [1] -0.1645456 -0.1802420 -0.3044300 -0.4642075 -0.4872318 -0.3675283
head(eList$Daily$SE)
#> [1] 0.2214490 0.2209740 0.2170166 0.2118471 0.2110424 0.2149243
head(eList$Sample$SE)
#> [1] 0.2166477 0.2320392 0.2352009 0.2188408 0.2328273 0.2187073
head(eList$Sample$yHat)
#> [1] -0.300945575 -0.011324735 0.070713041 -0.049576031 0.090836559
#> [6] 0.004296981
