In part A, I want you to forecast how much cash is taken out of 4 different ATM machines for May 2010. The data is given in a single file. The variable ‘Cash’ is provided in hundreds of dollars, other than that it is straight forward. I am being somewhat ambiguous on purpose to make this have a little more business feeling. Explain and demonstrate your process, techniques used and not used, and your actual forecast. I am giving you data via an excel file, please provide your written report on your findings, visuals, discussion and your R code via an RPubs link along with the actual.rmd file Also please submit the forecast which you will put in an Excel readable file.
setwd("~/R/Data624_Project1")
getwd()
## [1] "C:/Users/owner/OneDrive/Documents/R/Data624_Project1"
#df <- read_excel ("https:///raw.githubusercontent.com/asmozo24/Data624_Project1/main/ATM624Data.xlsx", sheetIndex)
df <- readxl::read_excel("~/R/Data624_Project1/ATM624Data.xlsx", col_names=TRUE, col_types=c('date', 'text', 'numeric'))
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A2 / R2C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A3 / R3C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A4 / R4C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A5 / R5C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A6 / R6C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A7 / R7C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A8 / R8C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A9 / R9C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A10 / R10C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A11 / R11C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A12 / R12C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A13 / R13C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A14 / R14C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A15 / R15C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A16 / R16C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A17 / R17C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A18 / R18C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A19 / R19C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A20 / R20C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A21 / R21C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A22 / R22C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A23 / R23C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A24 / R24C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A25 / R25C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A26 / R26C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A27 / R27C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A28 / R28C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A29 / R29C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A30 / R30C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A31 / R31C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A32 / R32C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A33 / R33C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A34 / R34C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A35 / R35C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A36 / R36C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A37 / R37C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A38 / R38C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A39 / R39C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A40 / R40C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A41 / R41C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A42 / R42C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A43 / R43C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A44 / R44C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A45 / R45C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A46 / R46C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A47 / R47C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A48 / R48C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A49 / R49C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A50 / R50C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A51 / R51C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A52 / R52C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A53 / R53C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A54 / R54C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A55 / R55C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A56 / R56C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A57 / R57C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A58 / R58C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A59 / R59C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A60 / R60C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A61 / R61C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A62 / R62C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A63 / R63C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A64 / R64C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A65 / R65C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A66 / R66C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A67 / R67C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A68 / R68C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A69 / R69C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A70 / R70C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A71 / R71C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A72 / R72C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A73 / R73C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A74 / R74C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A75 / R75C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A76 / R76C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A77 / R77C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A78 / R78C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A79 / R79C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A80 / R80C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A81 / R81C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A82 / R82C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A83 / R83C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A84 / R84C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A85 / R85C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A86 / R86C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A87 / R87C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A88 / R88C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A89 / R89C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A90 / R90C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A91 / R91C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A92 / R92C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A93 / R93C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A94 / R94C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A95 / R95C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A96 / R96C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A97 / R97C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A98 / R98C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A99 / R99C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A100 / R100C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A101 / R101C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A102 / R102C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A103 / R103C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A104 / R104C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A105 / R105C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A106 / R106C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A107 / R107C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A108 / R108C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A109 / R109C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A110 / R110C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A111 / R111C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A112 / R112C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A113 / R113C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A114 / R114C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A115 / R115C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A116 / R116C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A117 / R117C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A118 / R118C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A119 / R119C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A120 / R120C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A121 / R121C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A122 / R122C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A123 / R123C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A124 / R124C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A125 / R125C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A126 / R126C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A127 / R127C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A128 / R128C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A129 / R129C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A130 / R130C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A131 / R131C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A132 / R132C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A133 / R133C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A134 / R134C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A135 / R135C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A136 / R136C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A137 / R137C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A138 / R138C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A139 / R139C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A140 / R140C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A141 / R141C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A142 / R142C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A143 / R143C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A144 / R144C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A145 / R145C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A146 / R146C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A147 / R147C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A148 / R148C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A149 / R149C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A150 / R150C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A151 / R151C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A152 / R152C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A153 / R153C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A154 / R154C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A155 / R155C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A156 / R156C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A157 / R157C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A158 / R158C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A159 / R159C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A160 / R160C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A161 / R161C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A162 / R162C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A163 / R163C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A164 / R164C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A165 / R165C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A166 / R166C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A167 / R167C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A168 / R168C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A169 / R169C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A170 / R170C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A171 / R171C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A172 / R172C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A173 / R173C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A174 / R174C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A175 / R175C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A176 / R176C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A177 / R177C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A178 / R178C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A179 / R179C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A180 / R180C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A181 / R181C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A182 / R182C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A183 / R183C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A184 / R184C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A185 / R185C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A186 / R186C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A187 / R187C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A188 / R188C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A189 / R189C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A190 / R190C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A191 / R191C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A192 / R192C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A193 / R193C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A194 / R194C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A195 / R195C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A196 / R196C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A197 / R197C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A198 / R198C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A199 / R199C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A200 / R200C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A201 / R201C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A202 / R202C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A203 / R203C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A204 / R204C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A205 / R205C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A206 / R206C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A207 / R207C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A208 / R208C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A209 / R209C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A210 / R210C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A211 / R211C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A212 / R212C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A213 / R213C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A214 / R214C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A215 / R215C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A216 / R216C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A217 / R217C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A218 / R218C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A219 / R219C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A220 / R220C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A221 / R221C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A222 / R222C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A223 / R223C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A224 / R224C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A225 / R225C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A226 / R226C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A227 / R227C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A228 / R228C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A229 / R229C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A230 / R230C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A231 / R231C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A232 / R232C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A233 / R233C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A234 / R234C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A235 / R235C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A236 / R236C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A237 / R237C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A238 / R238C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A239 / R239C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A240 / R240C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A241 / R241C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A242 / R242C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A243 / R243C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A244 / R244C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A245 / R245C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A246 / R246C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A247 / R247C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A248 / R248C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A249 / R249C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A250 / R250C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A251 / R251C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A252 / R252C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A253 / R253C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A254 / R254C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A255 / R255C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A256 / R256C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A257 / R257C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A258 / R258C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A259 / R259C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A260 / R260C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A261 / R261C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A262 / R262C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A263 / R263C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A264 / R264C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A265 / R265C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A266 / R266C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A267 / R267C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A268 / R268C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A269 / R269C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A270 / R270C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A271 / R271C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A272 / R272C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A273 / R273C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A274 / R274C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A275 / R275C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A276 / R276C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A277 / R277C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A278 / R278C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A279 / R279C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A280 / R280C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A281 / R281C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A282 / R282C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A283 / R283C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A284 / R284C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A285 / R285C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A286 / R286C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A287 / R287C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A288 / R288C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A289 / R289C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A290 / R290C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A291 / R291C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A292 / R292C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A293 / R293C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A294 / R294C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A295 / R295C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A296 / R296C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A297 / R297C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A298 / R298C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A299 / R299C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A300 / R300C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A301 / R301C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A302 / R302C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A303 / R303C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A304 / R304C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A305 / R305C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A306 / R306C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A307 / R307C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A308 / R308C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A309 / R309C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A310 / R310C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A311 / R311C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A312 / R312C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A313 / R313C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A314 / R314C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A315 / R315C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A316 / R316C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A317 / R317C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A318 / R318C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A319 / R319C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A320 / R320C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A321 / R321C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A322 / R322C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A323 / R323C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A324 / R324C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A325 / R325C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A326 / R326C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A327 / R327C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A328 / R328C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A329 / R329C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A330 / R330C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A331 / R331C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A332 / R332C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A333 / R333C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A334 / R334C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A335 / R335C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A336 / R336C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A337 / R337C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A338 / R338C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A339 / R339C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A340 / R340C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A341 / R341C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A342 / R342C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A343 / R343C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A344 / R344C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A345 / R345C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A346 / R346C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A347 / R347C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A348 / R348C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A349 / R349C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A350 / R350C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A351 / R351C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A352 / R352C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A353 / R353C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A354 / R354C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A355 / R355C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A356 / R356C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A357 / R357C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A358 / R358C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A359 / R359C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A360 / R360C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A361 / R361C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A362 / R362C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A363 / R363C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A364 / R364C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A365 / R365C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A366 / R366C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A367 / R367C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A368 / R368C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A369 / R369C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A370 / R370C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A371 / R371C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A372 / R372C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A373 / R373C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A374 / R374C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A375 / R375C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A376 / R376C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A377 / R377C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A378 / R378C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A379 / R379C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A380 / R380C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A381 / R381C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A382 / R382C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A383 / R383C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A384 / R384C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A385 / R385C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A386 / R386C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A387 / R387C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A388 / R388C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A389 / R389C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A390 / R390C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A391 / R391C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A392 / R392C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A393 / R393C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A394 / R394C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A395 / R395C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A396 / R396C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A397 / R397C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A398 / R398C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A399 / R399C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A400 / R400C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A401 / R401C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A402 / R402C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A403 / R403C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A404 / R404C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A405 / R405C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A406 / R406C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A407 / R407C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A408 / R408C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A409 / R409C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A410 / R410C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A411 / R411C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A412 / R412C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A413 / R413C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A414 / R414C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A415 / R415C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A416 / R416C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A417 / R417C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A418 / R418C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A419 / R419C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A420 / R420C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A421 / R421C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A422 / R422C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A423 / R423C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A424 / R424C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A425 / R425C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A426 / R426C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A427 / R427C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A428 / R428C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A429 / R429C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A430 / R430C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A431 / R431C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A432 / R432C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A433 / R433C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A434 / R434C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A435 / R435C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A436 / R436C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A437 / R437C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A438 / R438C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A439 / R439C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A440 / R440C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A441 / R441C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A442 / R442C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A443 / R443C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A444 / R444C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A445 / R445C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A446 / R446C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A447 / R447C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A448 / R448C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A449 / R449C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A450 / R450C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A451 / R451C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A452 / R452C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A453 / R453C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A454 / R454C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A455 / R455C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A456 / R456C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A457 / R457C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A458 / R458C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A459 / R459C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A460 / R460C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A461 / R461C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A462 / R462C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A463 / R463C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A464 / R464C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A465 / R465C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A466 / R466C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A467 / R467C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A468 / R468C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A469 / R469C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A470 / R470C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A471 / R471C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A472 / R472C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A473 / R473C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A474 / R474C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A475 / R475C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A476 / R476C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A477 / R477C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A478 / R478C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A479 / R479C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A480 / R480C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A481 / R481C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A482 / R482C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A483 / R483C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A484 / R484C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A485 / R485C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A486 / R486C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A487 / R487C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A488 / R488C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A489 / R489C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A490 / R490C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A491 / R491C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A492 / R492C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A493 / R493C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A494 / R494C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A495 / R495C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A496 / R496C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A497 / R497C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A498 / R498C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A499 / R499C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A500 / R500C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A501 / R501C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A502 / R502C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A503 / R503C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A504 / R504C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A505 / R505C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A506 / R506C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A507 / R507C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A508 / R508C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A509 / R509C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A510 / R510C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A511 / R511C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A512 / R512C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A513 / R513C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A514 / R514C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A515 / R515C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A516 / R516C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A517 / R517C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A518 / R518C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A519 / R519C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A520 / R520C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A521 / R521C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A522 / R522C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A523 / R523C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A524 / R524C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A525 / R525C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A526 / R526C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A527 / R527C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A528 / R528C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A529 / R529C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A530 / R530C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A531 / R531C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A532 / R532C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A533 / R533C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A534 / R534C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A535 / R535C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A536 / R536C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A537 / R537C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A538 / R538C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A539 / R539C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A540 / R540C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A541 / R541C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A542 / R542C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A543 / R543C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A544 / R544C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A545 / R545C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A546 / R546C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A547 / R547C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A548 / R548C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A549 / R549C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A550 / R550C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A551 / R551C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A552 / R552C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A553 / R553C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A554 / R554C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A555 / R555C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A556 / R556C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A557 / R557C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A558 / R558C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A559 / R559C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A560 / R560C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A561 / R561C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A562 / R562C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A563 / R563C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A564 / R564C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A565 / R565C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A566 / R566C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A567 / R567C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A568 / R568C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A569 / R569C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A570 / R570C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A571 / R571C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A572 / R572C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A573 / R573C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A574 / R574C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A575 / R575C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A576 / R576C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A577 / R577C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A578 / R578C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A579 / R579C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A580 / R580C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A581 / R581C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A582 / R582C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A583 / R583C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A584 / R584C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A585 / R585C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A586 / R586C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A587 / R587C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A588 / R588C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A589 / R589C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A590 / R590C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A591 / R591C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A592 / R592C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A593 / R593C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A594 / R594C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A595 / R595C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A596 / R596C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A597 / R597C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A598 / R598C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A599 / R599C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A600 / R600C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A601 / R601C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A602 / R602C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A603 / R603C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A604 / R604C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A605 / R605C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A606 / R606C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A607 / R607C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A608 / R608C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A609 / R609C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A610 / R610C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A611 / R611C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A612 / R612C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A613 / R613C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A614 / R614C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A615 / R615C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A616 / R616C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A617 / R617C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A618 / R618C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A619 / R619C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A620 / R620C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A621 / R621C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A622 / R622C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A623 / R623C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A624 / R624C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A625 / R625C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A626 / R626C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A627 / R627C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A628 / R628C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A629 / R629C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A630 / R630C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A631 / R631C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A632 / R632C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A633 / R633C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A634 / R634C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A635 / R635C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A636 / R636C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A637 / R637C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A638 / R638C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A639 / R639C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A640 / R640C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A641 / R641C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A642 / R642C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A643 / R643C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A644 / R644C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A645 / R645C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A646 / R646C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A647 / R647C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A648 / R648C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A649 / R649C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A650 / R650C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A651 / R651C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A652 / R652C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A653 / R653C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A654 / R654C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A655 / R655C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A656 / R656C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A657 / R657C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A658 / R658C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A659 / R659C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A660 / R660C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A661 / R661C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A662 / R662C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A663 / R663C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A664 / R664C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A665 / R665C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A666 / R666C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A667 / R667C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A668 / R668C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A669 / R669C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A670 / R670C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A671 / R671C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A672 / R672C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A673 / R673C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A674 / R674C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A675 / R675C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A676 / R676C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A677 / R677C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A678 / R678C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A679 / R679C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A680 / R680C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A681 / R681C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A682 / R682C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A683 / R683C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A684 / R684C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A685 / R685C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A686 / R686C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A687 / R687C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A688 / R688C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A689 / R689C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A690 / R690C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A691 / R691C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A692 / R692C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A693 / R693C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A694 / R694C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A695 / R695C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A696 / R696C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A697 / R697C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A698 / R698C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A699 / R699C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A700 / R700C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A701 / R701C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A702 / R702C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A703 / R703C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A704 / R704C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A705 / R705C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A706 / R706C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A707 / R707C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A708 / R708C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A709 / R709C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A710 / R710C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A711 / R711C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A712 / R712C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A713 / R713C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A714 / R714C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A715 / R715C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A716 / R716C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A717 / R717C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A718 / R718C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A719 / R719C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A720 / R720C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A721 / R721C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A722 / R722C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A723 / R723C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A724 / R724C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A725 / R725C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A726 / R726C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A727 / R727C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A728 / R728C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A729 / R729C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A730 / R730C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A731 / R731C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A732 / R732C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A733 / R733C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A734 / R734C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A735 / R735C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A736 / R736C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A737 / R737C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A738 / R738C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A739 / R739C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A740 / R740C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A741 / R741C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A742 / R742C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A743 / R743C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A744 / R744C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A745 / R745C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A746 / R746C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A747 / R747C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A748 / R748C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A749 / R749C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A750 / R750C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A751 / R751C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A752 / R752C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A753 / R753C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A754 / R754C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A755 / R755C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A756 / R756C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A757 / R757C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A758 / R758C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A759 / R759C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A760 / R760C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A761 / R761C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A762 / R762C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A763 / R763C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A764 / R764C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A765 / R765C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A766 / R766C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A767 / R767C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A768 / R768C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A769 / R769C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A770 / R770C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A771 / R771C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A772 / R772C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A773 / R773C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A774 / R774C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A775 / R775C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A776 / R776C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A777 / R777C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A778 / R778C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A779 / R779C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A780 / R780C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A781 / R781C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A782 / R782C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A783 / R783C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A784 / R784C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A785 / R785C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A786 / R786C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A787 / R787C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A788 / R788C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A789 / R789C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A790 / R790C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A791 / R791C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A792 / R792C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A793 / R793C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A794 / R794C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A795 / R795C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A796 / R796C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A797 / R797C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A798 / R798C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A799 / R799C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A800 / R800C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A801 / R801C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A802 / R802C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A803 / R803C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A804 / R804C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A805 / R805C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A806 / R806C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A807 / R807C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A808 / R808C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A809 / R809C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A810 / R810C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A811 / R811C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A812 / R812C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A813 / R813C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A814 / R814C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A815 / R815C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A816 / R816C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A817 / R817C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A818 / R818C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A819 / R819C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A820 / R820C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A821 / R821C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A822 / R822C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A823 / R823C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A824 / R824C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A825 / R825C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A826 / R826C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A827 / R827C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A828 / R828C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A829 / R829C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A830 / R830C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A831 / R831C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A832 / R832C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A833 / R833C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A834 / R834C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A835 / R835C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A836 / R836C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A837 / R837C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A838 / R838C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A839 / R839C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A840 / R840C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A841 / R841C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A842 / R842C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A843 / R843C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A844 / R844C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A845 / R845C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A846 / R846C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A847 / R847C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A848 / R848C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A849 / R849C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A850 / R850C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A851 / R851C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A852 / R852C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A853 / R853C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A854 / R854C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A855 / R855C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A856 / R856C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A857 / R857C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A858 / R858C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A859 / R859C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A860 / R860C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A861 / R861C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A862 / R862C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A863 / R863C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A864 / R864C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A865 / R865C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A866 / R866C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A867 / R867C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A868 / R868C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A869 / R869C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A870 / R870C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A871 / R871C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A872 / R872C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A873 / R873C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A874 / R874C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A875 / R875C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A876 / R876C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A877 / R877C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A878 / R878C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A879 / R879C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A880 / R880C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A881 / R881C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A882 / R882C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A883 / R883C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A884 / R884C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A885 / R885C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A886 / R886C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A887 / R887C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A888 / R888C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A889 / R889C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A890 / R890C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A891 / R891C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A892 / R892C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A893 / R893C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A894 / R894C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A895 / R895C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A896 / R896C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A897 / R897C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A898 / R898C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A899 / R899C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A900 / R900C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A901 / R901C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A902 / R902C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A903 / R903C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A904 / R904C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A905 / R905C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A906 / R906C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A907 / R907C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A908 / R908C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A909 / R909C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A910 / R910C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A911 / R911C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A912 / R912C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A913 / R913C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A914 / R914C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A915 / R915C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A916 / R916C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A917 / R917C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A918 / R918C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A919 / R919C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A920 / R920C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A921 / R921C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A922 / R922C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A923 / R923C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A924 / R924C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A925 / R925C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A926 / R926C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A927 / R927C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A928 / R928C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A929 / R929C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A930 / R930C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A931 / R931C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A932 / R932C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A933 / R933C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A934 / R934C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A935 / R935C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A936 / R936C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A937 / R937C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A938 / R938C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A939 / R939C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A940 / R940C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A941 / R941C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A942 / R942C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A943 / R943C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A944 / R944C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A945 / R945C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A946 / R946C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A947 / R947C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A948 / R948C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A949 / R949C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A950 / R950C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A951 / R951C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A952 / R952C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A953 / R953C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A954 / R954C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A955 / R955C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A956 / R956C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A957 / R957C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A958 / R958C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A959 / R959C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A960 / R960C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A961 / R961C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A962 / R962C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A963 / R963C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A964 / R964C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A965 / R965C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A966 / R966C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A967 / R967C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A968 / R968C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A969 / R969C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A970 / R970C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A971 / R971C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A972 / R972C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A973 / R973C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A974 / R974C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A975 / R975C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A976 / R976C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A977 / R977C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A978 / R978C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A979 / R979C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A980 / R980C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A981 / R981C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A982 / R982C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A983 / R983C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A984 / R984C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A985 / R985C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A986 / R986C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A987 / R987C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A988 / R988C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A989 / R989C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A990 / R990C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A991 / R991C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A992 / R992C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A993 / R993C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A994 / R994C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A995 / R995C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A996 / R996C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A997 / R997C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A998 / R998C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A999 / R999C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1000 / R1000C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1001 / R1001C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1002 / R1002C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1003 / R1003C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1004 / R1004C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1005 / R1005C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1006 / R1006C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1007 / R1007C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1008 / R1008C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1009 / R1009C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1010 / R1010C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1011 / R1011C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1012 / R1012C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1013 / R1013C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1014 / R1014C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1015 / R1015C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1016 / R1016C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1017 / R1017C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1018 / R1018C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1019 / R1019C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1020 / R1020C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1021 / R1021C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1022 / R1022C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1023 / R1023C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1024 / R1024C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1025 / R1025C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1026 / R1026C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1027 / R1027C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1028 / R1028C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1029 / R1029C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1030 / R1030C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1031 / R1031C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1032 / R1032C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1033 / R1033C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1034 / R1034C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1035 / R1035C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1036 / R1036C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1037 / R1037C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1038 / R1038C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1039 / R1039C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1040 / R1040C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1041 / R1041C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1042 / R1042C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1043 / R1043C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1044 / R1044C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1045 / R1045C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1046 / R1046C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1047 / R1047C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1048 / R1048C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1049 / R1049C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1050 / R1050C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1051 / R1051C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1052 / R1052C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1053 / R1053C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1054 / R1054C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1055 / R1055C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1056 / R1056C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1057 / R1057C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1058 / R1058C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1059 / R1059C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1060 / R1060C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1061 / R1061C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1062 / R1062C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1063 / R1063C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1064 / R1064C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1065 / R1065C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1066 / R1066C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1067 / R1067C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1068 / R1068C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1069 / R1069C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1070 / R1070C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1071 / R1071C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1072 / R1072C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1073 / R1073C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1074 / R1074C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1075 / R1075C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1076 / R1076C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1077 / R1077C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1078 / R1078C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1079 / R1079C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1080 / R1080C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1081 / R1081C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1082 / R1082C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1083 / R1083C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1084 / R1084C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1085 / R1085C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1086 / R1086C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1087 / R1087C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1088 / R1088C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1089 / R1089C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1090 / R1090C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1091 / R1091C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1092 / R1092C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1093 / R1093C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1094 / R1094C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1095 / R1095C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1096 / R1096C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1097 / R1097C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1098 / R1098C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1099 / R1099C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1100 / R1100C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1101 / R1101C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1102 / R1102C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1103 / R1103C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1104 / R1104C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1105 / R1105C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1106 / R1106C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1107 / R1107C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1108 / R1108C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1109 / R1109C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1110 / R1110C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1111 / R1111C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1112 / R1112C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1113 / R1113C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1114 / R1114C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1115 / R1115C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1116 / R1116C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1117 / R1117C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1118 / R1118C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1119 / R1119C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1120 / R1120C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1121 / R1121C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1122 / R1122C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1123 / R1123C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1124 / R1124C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1125 / R1125C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1126 / R1126C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1127 / R1127C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1128 / R1128C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1129 / R1129C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1130 / R1130C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1131 / R1131C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1132 / R1132C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1133 / R1133C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1134 / R1134C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1135 / R1135C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1136 / R1136C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1137 / R1137C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1138 / R1138C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1139 / R1139C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1140 / R1140C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1141 / R1141C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1142 / R1142C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1143 / R1143C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1144 / R1144C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1145 / R1145C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1146 / R1146C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1147 / R1147C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1148 / R1148C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1149 / R1149C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1150 / R1150C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1151 / R1151C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1152 / R1152C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1153 / R1153C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1154 / R1154C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1155 / R1155C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1156 / R1156C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1157 / R1157C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1158 / R1158C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1159 / R1159C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1160 / R1160C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1161 / R1161C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1162 / R1162C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1163 / R1163C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1164 / R1164C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1165 / R1165C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1166 / R1166C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1167 / R1167C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1168 / R1168C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1169 / R1169C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1170 / R1170C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1171 / R1171C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1172 / R1172C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1173 / R1173C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1174 / R1174C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1175 / R1175C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1176 / R1176C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1177 / R1177C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1178 / R1178C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1179 / R1179C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1180 / R1180C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1181 / R1181C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1182 / R1182C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1183 / R1183C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1184 / R1184C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1185 / R1185C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1186 / R1186C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1187 / R1187C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1188 / R1188C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1189 / R1189C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1190 / R1190C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1191 / R1191C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1192 / R1192C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1193 / R1193C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1194 / R1194C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1195 / R1195C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1196 / R1196C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1197 / R1197C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1198 / R1198C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1199 / R1199C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1200 / R1200C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1201 / R1201C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1202 / R1202C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1203 / R1203C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1204 / R1204C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1205 / R1205C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1206 / R1206C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1207 / R1207C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1208 / R1208C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1209 / R1209C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1210 / R1210C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1211 / R1211C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1212 / R1212C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1213 / R1213C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1214 / R1214C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1215 / R1215C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1216 / R1216C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1217 / R1217C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1218 / R1218C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1219 / R1219C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1220 / R1220C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1221 / R1221C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1222 / R1222C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1223 / R1223C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1224 / R1224C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1225 / R1225C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1226 / R1226C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1227 / R1227C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1228 / R1228C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1229 / R1229C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1230 / R1230C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1231 / R1231C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1232 / R1232C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1233 / R1233C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1234 / R1234C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1235 / R1235C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1236 / R1236C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1237 / R1237C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1238 / R1238C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1239 / R1239C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1240 / R1240C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1241 / R1241C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1242 / R1242C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1243 / R1243C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1244 / R1244C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1245 / R1245C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1246 / R1246C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1247 / R1247C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1248 / R1248C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1249 / R1249C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1250 / R1250C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1251 / R1251C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1252 / R1252C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1253 / R1253C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1254 / R1254C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1255 / R1255C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1256 / R1256C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1257 / R1257C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1258 / R1258C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1259 / R1259C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1260 / R1260C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1261 / R1261C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1262 / R1262C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1263 / R1263C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1264 / R1264C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1265 / R1265C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1266 / R1266C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1267 / R1267C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1268 / R1268C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1269 / R1269C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1270 / R1270C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1271 / R1271C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1272 / R1272C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1273 / R1273C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1274 / R1274C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1275 / R1275C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1276 / R1276C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1277 / R1277C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1278 / R1278C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1279 / R1279C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1280 / R1280C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1281 / R1281C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1282 / R1282C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1283 / R1283C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1284 / R1284C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1285 / R1285C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1286 / R1286C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1287 / R1287C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1288 / R1288C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1289 / R1289C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1290 / R1290C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1291 / R1291C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1292 / R1292C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1293 / R1293C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1294 / R1294C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1295 / R1295C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1296 / R1296C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1297 / R1297C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1298 / R1298C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1299 / R1299C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1300 / R1300C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1301 / R1301C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1302 / R1302C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1303 / R1303C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1304 / R1304C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1305 / R1305C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1306 / R1306C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1307 / R1307C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1308 / R1308C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1309 / R1309C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1310 / R1310C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1311 / R1311C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1312 / R1312C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1313 / R1313C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1314 / R1314C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1315 / R1315C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1316 / R1316C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1317 / R1317C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1318 / R1318C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1319 / R1319C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1320 / R1320C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1321 / R1321C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1322 / R1322C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1323 / R1323C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1324 / R1324C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1325 / R1325C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1326 / R1326C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1327 / R1327C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1328 / R1328C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1329 / R1329C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1330 / R1330C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1331 / R1331C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1332 / R1332C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1333 / R1333C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1334 / R1334C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1335 / R1335C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1336 / R1336C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1337 / R1337C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1338 / R1338C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1339 / R1339C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1340 / R1340C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1341 / R1341C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1342 / R1342C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1343 / R1343C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1344 / R1344C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1345 / R1345C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1346 / R1346C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1347 / R1347C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1348 / R1348C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1349 / R1349C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1350 / R1350C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1351 / R1351C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1352 / R1352C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1353 / R1353C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1354 / R1354C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1355 / R1355C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1356 / R1356C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1357 / R1357C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1358 / R1358C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1359 / R1359C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1360 / R1360C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1361 / R1361C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1362 / R1362C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1363 / R1363C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1364 / R1364C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1365 / R1365C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1366 / R1366C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1367 / R1367C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1368 / R1368C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1369 / R1369C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1370 / R1370C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1371 / R1371C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1372 / R1372C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1373 / R1373C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1374 / R1374C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1375 / R1375C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1376 / R1376C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1377 / R1377C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1378 / R1378C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1379 / R1379C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1380 / R1380C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1381 / R1381C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1382 / R1382C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1383 / R1383C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1384 / R1384C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1385 / R1385C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1386 / R1386C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1387 / R1387C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1388 / R1388C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1389 / R1389C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1390 / R1390C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1391 / R1391C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1392 / R1392C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1393 / R1393C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1394 / R1394C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1395 / R1395C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1396 / R1396C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1397 / R1397C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1398 / R1398C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1399 / R1399C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1400 / R1400C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1401 / R1401C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1402 / R1402C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1403 / R1403C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1404 / R1404C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1405 / R1405C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1406 / R1406C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1407 / R1407C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1408 / R1408C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1409 / R1409C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1410 / R1410C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1411 / R1411C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1412 / R1412C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1413 / R1413C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1414 / R1414C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1415 / R1415C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1416 / R1416C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1417 / R1417C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1418 / R1418C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1419 / R1419C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1420 / R1420C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1421 / R1421C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1422 / R1422C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1423 / R1423C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1424 / R1424C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1425 / R1425C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1426 / R1426C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1427 / R1427C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1428 / R1428C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1429 / R1429C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1430 / R1430C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1431 / R1431C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1432 / R1432C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1433 / R1433C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1434 / R1434C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1435 / R1435C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1436 / R1436C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1437 / R1437C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1438 / R1438C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1439 / R1439C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1440 / R1440C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1441 / R1441C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1442 / R1442C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1443 / R1443C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1444 / R1444C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1445 / R1445C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1446 / R1446C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1447 / R1447C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1448 / R1448C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1449 / R1449C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1450 / R1450C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1451 / R1451C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1452 / R1452C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1453 / R1453C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1454 / R1454C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1455 / R1455C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1456 / R1456C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1457 / R1457C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1458 / R1458C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1459 / R1459C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1460 / R1460C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1461 / R1461C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1462 / R1462C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1463 / R1463C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1464 / R1464C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1465 / R1465C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1466 / R1466C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1467 / R1467C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1468 / R1468C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1469 / R1469C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1470 / R1470C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1471 / R1471C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1472 / R1472C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1473 / R1473C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1474 / R1474C1
## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Coercing numeric to date A1475 / R1475C1
#, col_types=c('date', 'text', 'numeric')
str(df)
## tibble [1,474 x 3] (S3: tbl_df/tbl/data.frame)
## $ DATE: POSIXct[1:1474], format: "2009-05-01" "2009-05-01" ...
## $ ATM : chr [1:1474] "ATM1" "ATM2" "ATM1" "ATM2" ...
## $ Cash: num [1:1474] 96 107 82 89 85 90 90 55 99 79 ...
#view(df)
Data Cleaning
# is there missing a value?
sum(is.na(df))
## [1] 33
missing.values <- function(df){
df %>%
gather(key = "variables", value = "val") %>%
mutate(is.missing = is.na(val)) %>%
group_by(variables, is.missing) %>%
summarise(number.missing = n()) %>%
filter(is.missing==T) %>%
dplyr::select(-is.missing) %>%
arrange(desc(number.missing))
}
#missing.values(insuranceT_df1)%>% kable()
# plot missing values
missing.values(df) %>%
ggplot() +
geom_bar(aes(x=variables, y=number.missing), stat = 'identity', col='blue') +
labs(x='variables', y="number of missing values", title='Number of missing values') +
theme(axis.text.x = element_text(angle = 100, hjust = 0.2))
## Warning: attributes are not identical across measure variables;
## they will be dropped
## `summarise()` has grouped output by 'variables'. You can override using the `.groups` argument.
#vis_miss(training_df)
gg_miss_var(df, show_pct = TRUE) + labs(y = "Missing Values in % to total record")+ theme()
#colSums(is.na(df))%>% kable()
cat("\n The table below shows the total number of missing values per variable")
##
## The table below shows the total number of missing values per variable
apply(is.na(df), 2, sum)
## DATE ATM Cash
## 0 14 19
df1 <- drop_na(df)
#sum(is.na(df1))
df1 %>%
group_by(ATM) %>%
summarise(n())
## # A tibble: 4 x 2
## ATM `n()`
## * <chr> <int>
## 1 ATM1 362
## 2 ATM2 363
## 3 ATM3 365
## 4 ATM4 365
# summary
summary(df1)
## DATE ATM Cash
## Min. :2009-05-01 00:00:00 Length:1455 Min. : 0.0
## 1st Qu.:2009-08-01 00:00:00 Class :character 1st Qu.: 0.5
## Median :2009-10-31 00:00:00 Mode :character Median : 73.0
## Mean :2009-10-30 11:00:07 Mean : 155.6
## 3rd Qu.:2010-01-29 12:00:00 3rd Qu.: 114.0
## Max. :2010-04-30 00:00:00 Max. :10919.8
#class(df1$ATM)
Forecast each ATM
#class(df1)
#is.xts(df1)
df1$ATM <- as.factor(df1$ATM)
df1$DATE <- as.Date(df1$DATE, "%Y-%m-%d")
## Warning in as.POSIXlt.POSIXct(x, tz = tz): unknown timezone '%Y-%m-%d'
df1$Cash <- as.numeric(df1$Cash)
str(df1)
## tibble [1,455 x 3] (S3: tbl_df/tbl/data.frame)
## $ DATE: Date[1:1455], format: "2009-05-01" "2009-05-01" ...
## $ ATM : Factor w/ 4 levels "ATM1","ATM2",..: 1 2 1 2 1 2 1 2 1 2 ...
## $ Cash: num [1:1455] 96 107 82 89 85 90 90 55 99 79 ...
#write.csv(df1,"~/R/Data624_Project1\\ATM.csv", row.names = FALSE)
#df1a <- read.csv("~/R/Data624_Project1/ATM.csv", stringsAsFactors=FALSE) #, col_types=c('date', 'text', 'numeric')
#view(df2)
# convert to pivot wide
df1b <- df1 %>%
group_by(ATM, DATE) %>%
summarise(Cash=sum(Cash)) %>%
pivot_wider(id_cols=DATE, names_from=ATM, values_from=Cash)
## `summarise()` has grouped output by 'ATM'. You can override using the `.groups` argument.
str(df1b)
## tibble [365 x 5] (S3: tbl_df/tbl/data.frame)
## $ DATE: Date[1:365], format: "2009-05-01" "2009-05-02" ...
## $ ATM1: num [1:365] 96 82 85 90 99 88 8 104 87 93 ...
## $ ATM2: num [1:365] 107 89 90 55 79 19 2 103 107 118 ...
## $ ATM3: num [1:365] 0 0 0 0 0 0 0 0 0 0 ...
## $ ATM4: num [1:365] 777 524.4 792.8 908.2 52.8 ...
Let’s see what the cash range is for each ATM
# Checking summary
summary(df1b)
## DATE ATM1 ATM2 ATM3
## Min. :2009-05-01 Min. : 1.00 Min. : 0.00 Min. : 0.0000
## 1st Qu.:2009-07-31 1st Qu.: 73.00 1st Qu.: 25.50 1st Qu.: 0.0000
## Median :2009-10-30 Median : 91.00 Median : 67.00 Median : 0.0000
## Mean :2009-10-30 Mean : 83.89 Mean : 62.58 Mean : 0.7206
## 3rd Qu.:2010-01-29 3rd Qu.:108.00 3rd Qu.: 93.00 3rd Qu.: 0.0000
## Max. :2010-04-30 Max. :180.00 Max. :147.00 Max. :96.0000
## NA's :3 NA's :2
## ATM4
## Min. : 1.563
## 1st Qu.: 124.334
## Median : 403.839
## Mean : 474.043
## 3rd Qu.: 704.507
## Max. :10919.762
##
We can plot by individual ATM or by cash range if the superposition of all ATM is not readable.
# Somehow, autoplot does not like my dataframe, so I need to change it into time series..,
# Time series is not working either...I have tried many options but still getting error with autoplot whereas I used the same format before.
df1b <- drop_na(df1b)
sum(is.na(df1b))
## [1] 0
#df_ts <- ts(df1a[,-1], start = df1$DATE[1], frequency = 12)
df_ts <- as_tsibble(df1b)
## Using `DATE` as index variable.
#as_tsibble(x, ..., tz = "UTC")
#as_tsibble(x, ..., tz = "UTC", pivot_longer = TRUE)
#findfrequency(df1b)
#convert back to pivot long
df1c <- df_ts %>%
pivot_longer(!DATE, names_to = "atm", values_to = "cash")
#Checking class of my data
class(df1)
## [1] "tbl_df" "tbl" "data.frame"
# just curious to see a class of an actual time series data
#class(global_economy)
class(df1c)
## [1] "tbl_ts" "tbl_df" "tbl" "data.frame"
df1c %>%
autoplot()
## Plot variable not specified, automatically selected `.vars = cash`
The plot above does not look good, let’s try plotting by range. ATM4 has a higher cash range, so we can plot the 03 others
df1c %>%
group_by(atm) %>%
filter(atm == "ATM1" | atm =="ATM2" ) %>%
summarise(number_of_ATM1 = sum(cash)) %>%
autoplot(number_of_ATM1) + labs(title = "ATM Cash out from ATM #1,2 & 3", y = "Cash out of ATM in Hundreds Dollars")
As we can see, there are noise and trend line. We have horizontal progression. So, ARIMA method is suitable for forecasting ATM #1 & 2. We need to test few parameters find the appropriate ARIMA.
df_ts %>%
autoplot(ATM3) + labs(title = "ATM Cash out from ATM #3", y = "Cash out of ATM in Hundreds Dollars")
ATM #3 does not look like having regular activities. This ATM must be in isolate area or customers around this ATM are not clients of the bank who owns ATM #3. There is a sudden peak in ATM #3 as a result of 03 days activities. It is hard to forecasting this ATM3. We think it is best to do simple estimate. Another catch here is that these activities are the last ones recorded. So, maybe the ATM started receiving customers.
df_ts$ATM3
## [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [26] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [51] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [76] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [101] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [126] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [151] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [176] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [201] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [226] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [251] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [276] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [301] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [326] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## [351] 0 0 0 0 0 0 0 96 82 85
df_ts %>%
filter(ATM3 <=100 & ATM3 >= 80 )%>%
dplyr:: select(DATE, ATM3) %>%
kable()
DATE | ATM3 |
---|---|
2010-04-28 | 96 |
2010-04-29 | 82 |
2010-04-30 | 85 |
df_ts %>%
autoplot(ATM4)+ labs(title = "ATM Cash out from ATM #4", y = "Cash out of ATM in Hundreds Dollars")
# df_ts %>%
# filter(ATM4 >= 5000 )%>%
# dplyr:: select(DATE, ATM4)
# kable()
ATM #4 activities show no trend line but there is a sudden peak at 2010-02-09 for the cash out amount of $10919.76. perhaps, this sudden peak might have been a social event nearby such as National Pizza day. Since there is no trend line and more of horizontal progression, ARIMA seems to be appropriate for ATM 4.
Let’s test the stationary data to backup our assumption. Performs the KPSS unit root test, where the Null hypothesis is stationary, if p-value greater than 0.05. Then, we confirm stationary data, otherwise, we need to difference. We will start with ATM1 model.
# A stationary time series is one whose statistical properties such as mean, variance, autocorrelation, etc. are all constant over time.
# a time series is said weakly stationary if
#
# - its mean is constant
#
# - its standard deviation is constant
#
# - its cross covariance does not depend on time but depends only on the lag between the two series concerned.
df_ts %>%
autoplot(ATM1) + labs(title = "ATM Cash out from ATM #1", y = "Cash out of ATM in Hundreds Dollars")
df1c %>%
subset( DATE> "2009-05-01" & DATE < "2009-05-30") %>%
filter(atm == "ATM1") %>%
gg_tsdisplay(cash, plot_type = "partial")
#Dickey-Fuller test using adf.test function of tseries package
#a p-value > 0.05, we conclude that there is no enough evidence to reject the Null hypothesis, meaning that the time series data is nonstationary.
#+ geom_line(aes(x = DATE, y = ATM1), colour = "red") + geom_segment(aes (x = 1, y = 96, xend = 365, yend = 180 ))
We zoom in within May 2009 to see the ATM #1 activities. We can see nearly constant mean, variance and autocorrelation (acf).
Let’s us perform Augmented Dickey-Fuller Test
Conditions to Reject Null Hypothesis(HO) Since the null hypothesis assumes the presence of unit root, that is α=1, the p-value obtained should be less than the significance level (say 0.05) in order to reject the null hypothesis. Thereby, inferring that the series is stationary.
adf.test(df_ts$ATM1)
## Warning in adf.test(df_ts$ATM1): p-value smaller than printed p-value
##
## Augmented Dickey-Fuller Test
##
## data: df_ts$ATM1
## Dickey-Fuller = -4.6384, Lag order = 7, p-value = 0.01
## alternative hypothesis: stationary
#sum(is.na(df_ts$ATM1))
The p-value (0.01) is very less than the significance level of 0.05 and hence we can reject the null hypothesis and take that the time series (ATM1) is stationary.
Let’s try another test Kwiatkowski-Phillips-Schmidt-Shin (KPSS) Test Null Hypothesis (HO): Series is trend stationary or series has no unit root. Alternate Hypothesis(HA): Series is non-stationary or series has a unit root. Conditions to Fail to Reject Null Hypothesis(HO) If Test statistic < Critical Value and p-value < 0.05 – Fail to Reject Null Hypothesis(HO) i.e., time series does not have a unit root, meaning it is trend stationary
df_ts %>%
features(ATM1, unitroot_kpss)
## # A tibble: 1 x 2
## kpss_stat kpss_pvalue
## <dbl> <dbl>
## 1 0.501 0.0415
#kpss.test(df_ts$ATM1)
Again, with p-value < 0.05 , we fail to reject null hypothesis. Thus, ATM1 is trend stationary.
Let’s do some forecasting with ARIMA technique.
#fit_atm1 <- df_ts %>%
# model(ARIMA(ATM1))
fit_atm1 <- df1c %>%
tsibble::fill_gaps(DATE) %>% # We are filling gap because of error: .data contains implicit gaps in time. You should check your data and convert implicit gaps into explicit missing values using `tsibble::fill_gaps()` if required. We could use mutate(), mutate(YearMonth = yearmonth(as.character(YearMonth))) %>%
#group_by(atm) %>%
filter(atm == "ATM1") %>%
model(ARIMA(cash))
#summarise(number_of_ATM1 = sum(cash)) %>%
#autoplot(cash) + labs(title = "ATM Cash out from ATM #1,2 & 3", y = "Cash out of ATM in Hundreds Dollars")
report(fit_atm1)
## Series: cash
## Model: ARIMA(2,0,0)(2,1,0)[7]
##
## Coefficients:
## ar1 ar2 sar1 sar2
## 0.1573 -0.0445 -0.4698 -0.2077
## s.e. 0.0553 0.0530 0.0518 0.0514
##
## sigma^2 estimated as 600.4: log likelihood=-1632.35
## AIC=3274.7 AICc=3274.87 BIC=3294.11
Above ARIMA model (ARIMA(2,0,0)(2,1,0)) was automatically selected
df1c %>%
subset( DATE> "2010-04-01" & DATE < "2010-04-30") %>%
filter(atm == "ATM1") %>%
autoplot(cash) + labs(title = "ATM Cash out from ATM #1", y = "Cash out of ATM in Hundreds Dollars")
#df_ts %>%
# autoplot(ATM1) + labs(title = "ATM Cash out from ATM #1", y = "Cash out of ATM in Hundreds Dollars")
#view(fit_atm1)
ds <-fit_atm1 %>%
#subset( df1c$DATE> "2010-04-01" & df1cDATE < "2010-04-30") %>%
#filter(.model == "ARIMA(2,0,0)")
forecast(h=30) %>%
autoplot(df1c) + labs(title = "ATM Cash out from ATM #1", y = "Cash out of ATM in Hundreds Dollars")
ds
results <- list()
results[["ATM1"]] <- ds
Let’s Forecast ATM2 model. Since ATM1 & 2 show the same stationary data. we will use the same technique used with ATM1
df1c %>%
subset( DATE> "2009-05-01" & DATE < "2009-05-30") %>%
filter(atm == "ATM2") %>%
gg_tsdisplay(cash, plot_type = "partial")
adf.test(df_ts$ATM2)
## Warning in adf.test(df_ts$ATM2): p-value smaller than printed p-value
##
## Augmented Dickey-Fuller Test
##
## data: df_ts$ATM2
## Dickey-Fuller = -6.2659, Lag order = 7, p-value = 0.01
## alternative hypothesis: stationary
fit_atm2 <- df1c %>%
tsibble::fill_gaps(DATE) %>% # We are filling gap because of error: .data contains implicit gaps in time. You should check your data and convert implicit gaps into explicit missing values using `tsibble::fill_gaps()` if required. We could use mutate(), mutate(YearMonth = yearmonth(as.character(YearMonth))) %>%
#group_by(atm) %>%
filter(atm == "ATM2") %>%
model(ARIMA(cash))
#summarise(number_of_ATM1 = sum(cash)) %>%
#autoplot(cash) + labs(title = "ATM Cash out from ATM #1,2 & 3", y = "Cash out of ATM in Hundreds Dollars")
report(fit_atm2)
## Series: cash
## Model: ARIMA(0,0,0)(2,1,0)[7]
##
## Coefficients:
## sar1 sar2
## -0.5779 -0.1756
## s.e. 0.0530 0.0522
##
## sigma^2 estimated as 645.8: log likelihood=-1646.4
## AIC=3298.79 AICc=3298.86 BIC=3310.44
ds <-fit_atm2 %>%
#subset( df1c$DATE> "2010-04-01" & df1cDATE < "2010-04-30") %>%
#filter(.model == "ARIMA(2,0,0)")
forecast(h=30) %>%
autoplot(df1c) + labs(title = "ATM Cash out from ATM #2", y = "Cash out of ATM in Hundreds Dollars")
ds
results[["ATM2"]] <- ds
As we expected, the forecasting of ATM2 model gives the same result as the forecast of ATM1.
Forecasting ATM3 model. We mentioned above that ATM3 does have enough data due to the lack of activity recorded. Therefore, we anticipate that this will likely continue as the way it is. Despite, the sudden peaks recorded around the last 03 days of April 2010 there is not enough data to perform forecast. However, we will run run ARIMA technique to confirm our prediction.
df_ts %>%
filter(ATM3 <=100 & ATM3 >= 80 )%>%
#subset( DATE> "2009-05-01" & DATE < "2009-05-30") %>%
#filter(atm == "ATM2") %>%
gg_tsdisplay(ATM3, plot_type = "partial")
#adf.test(df_ts$ATM3)
fit_atm3 <- df1c %>%
subset( DATE> "2010-04-28" & DATE < "2010-04-30") %>%
#tsibble::fill_gaps(DATE) %>% # We are filling gap because of error: .data contains implicit gaps in time. You should check your data and convert implicit gaps into explicit missing values using `tsibble::fill_gaps()` if required. We could use mutate(), mutate(YearMonth = yearmonth(as.character(YearMonth))) %>%
#group_by(atm) %>%
filter(atm == "ATM3") %>%
model(ARIMA(cash))
#summarise(number_of_ATM1 = sum(cash)) %>%
#autoplot(cash) + labs(title = "ATM Cash out from ATM #1,2 & 3", y = "Cash out of ATM in Hundreds Dollars")
#report(fit_atm3)
ds1 <-fit_atm3 %>%
#subset( df1c$DATE> "2010-04-01" & df1cDATE < "2010-04-30") %>%
#filter(.model == "ARIMA(2,0,0)")
forecast(h=30) %>%
autoplot(df1c) + labs(title = "Forecast of ATM Cash out from ATM #3", y = "Cash out of ATM in Hundreds Dollars")
ds1
results[["ATM3"]] <- ds1
# not enough data
# df_ts %>%
# filter(ATM3 <=100 & ATM3 >= 80 )%>%
# model(ETS(ATM3))%>%
# forecast(h=30) %>%
# autoplot(df_ts %>% filter(DATE >= "2010-04-28"))
As predicted, ATM3 model forecast does not have enough data to show a future cash out of ATM 3. We suggest to continue supplying the ATM #3 with the same amount or close it or relocate it to a location where marketing study shows potential activities.
Forecasting ATM4 model Comparing ATM #4 and the 03 other ATM(1,2,3), ATM #3 has higher activities with the highest peak. This can be treated as as an outlier since there is no real explanation other than extrapolation. We can exclude this outlier or applying directly ARIMA technique with the assumption that the adf test will agree with chosen forecast technique.
#forecasts <- function(x){
# x %>%
# subset( DATE> "2009-05-01" & DATE < "2009-05-30") %>%
# filter(atm == "ATM4") %>%
# gg_tsdisplay(cash, plot_type = "partial")
#
adf.test(df_ts$ATM4)
## Warning in adf.test(df_ts$ATM4): p-value smaller than printed p-value
##
## Augmented Dickey-Fuller Test
##
## data: df_ts$ATM4
## Dickey-Fuller = -6.3364, Lag order = 7, p-value = 0.01
## alternative hypothesis: stationary
fit_atm4 <- df1c %>%
tsibble::fill_gaps(DATE) %>% # We are filling gap because of error: .data contains implicit gaps in time. You should check your data and convert implicit gaps into explicit missing values using `tsibble::fill_gaps()` if required. We could use mutate(), mutate(YearMonth = yearmonth(as.character(YearMonth))) %>%
#group_by(atm) %>%
filter(atm == "ATM4") %>%
model(ARIMA(cash))
## Warning in sqrt(diag(best$var.coef)): NaNs produced
#summarise(number_of_ATM1 = sum(cash)) %>%
#autoplot(cash) + labs(title = "ATM Cash out from ATM #1,2 & 3", y = "Cash out of ATM in Hundreds Dollars")
report(fit_atm4)
## Series: cash
## Model: ARIMA(0,0,3)(1,0,1)[7] w/ mean
##
## Coefficients:
## ma1 ma2 ma3 sar1 sma1 constant
## -0.0158 -0.0352 0.005 0.4216 -0.363 275.2383
## s.e. 0.0527 0.0529 0.053 NaN NaN 20.6482
##
## sigma^2 estimated as 425642: log likelihood=-2843.39
## AIC=5700.78 AICc=5701.1 BIC=5728.08
ds2 <-fit_atm4 %>%
#subset( df1c$DATE> "2010-04-01" & df1cDATE < "2010-04-30") %>%
#filter(.model == "ARIMA(2,0,0)")
forecast(h=30) %>%
autoplot(df1c) + labs(title = "Forecast of ATM Cash out from ATM #4", y = "Cash out of ATM in Hundreds Dollars")
ds2
#}
#forecasts(df1c)
results[["ATM4"]] <- ds2
# Below code is to save forecast data but does not work well
# wb <- createWorkbook()
#
# for (nm in names(results)){
# addWorksheet(wb, nm)
# writeData(wb, nm, results[[nm]], rowNames = TRUE)
# }
#
# saveWorkbook(wb, "ForcastsATM.xlsx", overwrite = TRUE)
# results_together <- do.call(rbind,lapply(names(results),function(x){
# transform(as.data.frame(results[[x]]), Name = x)
# }))
#write.csv(results_together, file="results_together.csv")
# Below code is attempting to replace the outliers in ATM4
# view(df1c)
# max(df1c$cash)
# which(df_ts$ATM4 == 10919.76) # row index 150, has the outlier
#
# paste("The median value in year 2010 is : ", median(dfb[144:155,]$load)) #6424438
# dfb[150,]$load <- 6424438
#df1co <- df1c[!df1c$cash == 10919.76 , ]
#subset(df1c, cash==10919.76)
#df1co <- df1c[df1c$cash != "2010-02-09", ]
#max(df1co$cash)
#forecasts(df1co)
#tsoutliers(df1c$cash)
#max(df1c$cash)
Part B consists of a simple dataset of residential power usage for January 1998 until December 2013. Your assignment is to model these data and a monthly forecast for 2014. The data is given in a single file. The variable ‘KWH’ is power consumption in Kilowatt hours, the rest is straight forward. Add this to your existing files above.
#setwd("~/R/Data624_Project1")
#getwd()
dfb <- readxl::read_excel("~/R/Data624_Project1/ResidentialCustomerForecastLoad-624.xlsx", col_names=TRUE)
#, col_types=c('date', 'text', 'numeric')
#
# dfbb <- dfb %>%
# rename(caseSeq = CaseSequence,
# yearMonth = YYYY-MMM,
# load = KWH )
#view(dfb)
colnames(dfb) <- c("caseSeq", "yearMonth", "load")
# not working probably because date is in a character format .....dfb$yearMonth <- as.Date(as.yearmon(dfb$yearMonth))
#sum(is.na(dfb))
dfb <- drop_na(dfb)
dfbb <- dfb %>%
mutate(yearMonth = yearmonth(as.character(yearMonth))) %>%
as_tsibble(index = yearMonth)
#sum(is.na(dfbb))
#write.csv(dfbb,"~/R/Data624_Project1\\ResidentialCustomerLoad.csv", row.names = FALSE)
#class(dfbb)
#str(dfbb)
#view(df)
dfbb %>%
#subset( DATE> "2010-04-01" & DATE < "2010-04-30") %>%
#filter(atm == "ATM1") %>%
autoplot(load) + labs(title = "Residential Power Usage for January 1998 until December 2013", y = "Caonsumption in Kilowatt hours")
This residential power consumption has am upward trend line. There is an outlier around Jul 2010 that will need to be removed or replaced by a median value of that year.
#tsoutliers(dfbb$load)
min(dfbb$load)
## [1] 770523
#view(dfbb) #883 2010 Jul 770523
which(dfbb$load == 770523) # row index 150, has the outlier
## [1] 150
# dfb %>%
# group_by(yearMonth) %>%
# filter( yearMonth > "2009 Dec" & yearMonth < "2010 Dec") %>%
# median(load)
paste("The median value in year 2010 is : ", median(dfb[144:155,]$load)) #6424438
## [1] "The median value in year 2010 is : 6424437.5"
dfb[150,]$load <- 6424438
dfbb <- dfb %>%
mutate(yearMonth = yearmonth(as.character(yearMonth))) %>%
as_tsibble(index = yearMonth)
dfbb %>%
#subset( DATE> "2010-04-01" & DATE < "2010-04-30") %>%
#filter(atm == "ATM1") %>%
autoplot(load)+ geom_line(aes(x = yearMonth, y = load))+ geom_segment(aes (x = '1998 Jan', y = 6862583, xend = '2008 Jul', yend = 7643987 )) + labs(title = "Residential Power Usage for January 1998 until December 2013", y = "Consumption in Kilowatt hours")
## Warning: All formats failed to parse. No formats found.
## Warning: All formats failed to parse. No formats found.
## Warning: Removed 191 rows containing missing values (geom_segment).
#geom_line(aes(x = yearMonth, y = load))+ geom_segment(aes (x = '1998 Jan', y = 6862583, xend = '2008 Jul', yend = 7643987 ))
#abline(reg = lm(dfbb$load~dfbb$yearMonth), col = "red")
The new plot (above) does not carry any sudden peak (outliers).To forecast,we will apply the exponential smoothing technique. We also observed some seasonality (additive/multiplicative)
dfbb$load <- log(dfbb$load)
dfs <- dfbb %>%
tsibble::fill_gaps(yearMonth) %>%
dplyr::select(yearMonth, load)
dfs[129,]$load <- 1.017508
#view(dfs)
#sum(is.na(dfbb))
fit <- dfs %>%
model(
additive = ETS(load ~ error("A") + trend("A") +
season("A")),
multiplicative = ETS(load ~ error("M") + trend("A") +
season("M"))
)
dfs %>%
stretch_tsibble(.init = 10) %>%
model(
additive = ETS(load ~ error("A") + trend("A") +
season("A")),
multiplicative = ETS(load ~ error("M") + trend("A") +
season("M"))
) %>%
forecast(h = 12) %>%
accuracy(dfs)
## Warning: 8 errors (2 unique) encountered for additive
## [3] A seasonal ETS model cannot be used for this data.
## [5] Not enough data to estimate this ETS model.
## Warning: 8 errors (2 unique) encountered for multiplicative
## [3] A seasonal ETS model cannot be used for this data.
## [5] Not enough data to estimate this ETS model.
## Warning: The future dataset is incomplete, incomplete out-of-sample data will be treated as missing.
## 12 observations are missing between 2014 Jan and 2014 Dec
## # A tibble: 2 x 10
## .model .type ME RMSE MAE MPE MAPE MASE RMSSE ACF1
## <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 additive Test 0.0647 1.22 0.300 -7.69 10.0 1.16 0.776 0.0637
## 2 multiplicative Test 0.0626 1.35 0.278 -7.70 9.85 1.08 0.861 0.0278
fc <- fit %>% forecast(h = 12)
fc %>%
autoplot(dfs, level = NULL) +
labs(title="Forecast of Residential Power Usage for January 1998 until December 2013",
y="Consumption in Kilowatt hours") + guides(colour = guide_legend(title = "Forecast"))
fit1 <- dfs %>%
model(
additive = ETS(load ~ error("A") + trend("A") +
season("A"))
# multiplicative = ETS(load ~ error("M") + trend("A") +season("M"))
)
fc1 <- fit1 %>% forecast(h = 12)
df_forecast <- fc1 %>%
autoplot(dfs, level = NULL) +
labs(title="Forecast of Residential Power Usage for January 1998 until December 2013",
y="Consumption in Kilowatt hours") + guides(colour = guide_legend(title = "Forecast"))
df_forecast
df_forecast1 <- print(df_forecast)
#write.csv(df_forecast1,"~/R/Data624_Project1\\ResidentialPowerForecast.csv", row.names = FALSE)
We think exponential smoothing with additive flavor is a good fit to forecast the consumers power consumption. The accuracy report shows a better RMSE of the additive trend.
Part C – BONUS, optional (part or all), Waterflow_Pipe1.xlsx and Waterflow_Pipe2.xlsx
Part C consists of two data sets. These are simple 2 columns sets, however they have different time stamps. Your optional assignment is to time-base sequence the data and aggregate based on hour (example of what this looks like, follows). Note for multiple recordings within an hour, take the mean. Then to determine if the data is stationary and can it be forecast. If so, provide a week forward forecast and present results via Rpubs and .rmd and the forecast in an Excel readable file.
#setwd("~/R/Data624_Project1")
#getwd()
waterP1 <- readxl::read_excel("~/R/Data624_Project1/Waterflow_Pipe1 (1).xlsx", col_names=TRUE)
waterP2 <- readxl::read_excel("~/R/Data624_Project1/Waterflow_Pipe2 (1).xlsx", col_names=TRUE)
#, col_types=c('date', 'text', 'numeric')
#
# dfbb <- dfb %>%
# rename(caseSeq = CaseSequence,
# yearMonth = YYYY-MMM,
# load = KWH )
#view(waterP2)
colnames(waterP1) <- c("time", "WaterFlow")
colnames(waterP2) <- c("time", "WaterFlow")
# not working probably because date is in a character format .....dfb$yearMonth <- as.Date(as.yearmon(dfb$yearMonth))
#sum(is.na(waterP2))
#dfb <- drop_na(waterP1)
str(waterP1)
## tibble [1,000 x 2] (S3: tbl_df/tbl/data.frame)
## $ time : num [1:1000] 42300 42300 42300 42300 42300 ...
## $ WaterFlow: num [1:1000] 23.4 28 23.1 30 6 ...
# dfbb <- dfb %>%
# mutate(yearMonth = yearmonth(as.character(yearMonth))) %>%
# as_tsibble(index = yearMonth)
#
# #sum(is.na(dfbb))
#
# #write.csv(dfbb,"~/R/Data624_Project1\\ResidentialCustomerLoad.csv", row.names = FALSE)
#
# #class(dfbb)
# #str(dfbb)
# #view(df)
# dfbb %>%
# #subset( DATE> "2010-04-01" & DATE < "2010-04-30") %>%
# #filter(atm == "ATM1") %>%
# autoplot(load) + labs(title = "Residential Power Usage for January 1998 until December 2013", y = "Caonsumption in Kilowatt hours")
https://www.analyticsvidhya.com/blog/2021/06/statistical-tests-to-check-stationarity-in-time-series-part-1/ https://otexts.com/fpp3/stationarity.html