# Load the Bike dataset from your D drive folder
bike <- read.csv("D:/dataset/bike.csv")

library(magrittr)
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(ggplot2)

# Set the seed for reproducibility
set.seed(123)

# Number of rows in the dataset
total_rows <- nrow(bike)

# Creating 5 random subsamples
num_subsamples <- 5
sample_size <- round(0.5 * total_rows)  # Approximately 50% of the data

subsamples <- list()  # Creating a list to store the subsamples

for (i in 1:num_subsamples) {
  # Randomly sampling rows from the dataset
  sample_rows <- sample(1:total_rows, size = sample_size, replace = TRUE)
  
  # Selecting a random set of columns (at least 6 columns) with replacement
  columns_to_select <- sample(1:ncol(bike), size = sample_size, replace = TRUE)
  
  # Creating a new data frame with the selected rows and columns
  subsamples[[i]] <- bike[sample_rows, columns_to_select]
  
  # Assigning meaningful column names to the subsample (optional)
  colnames(subsamples[[i]]) <- paste("col", 1:ncol(subsamples[[i]]))
  
  # Printing the first few rows of each subsample
  cat("Subsample", i, ":\n")
  print(head(subsamples[[i]]))
  cat("\n")
}
## Subsample 1 :
##      col 1 col 2 col 3 col 4 col 5 col 6 col 7 col 8 col 9 col 10 col 11 col 12
## 2463    43    14     0  2.43     0  1509     0     0  18.3    705    Yes    705
## 2511    97    14     0  0.20     0   177     0     0  12.1    289    Yes    289
## 8718    34     5     0  0.00     0  1990     0     0   1.8    126    Yes    126
## 2986    81     9     0  0.36     0  2000     0     0  10.4    378    Yes    378
## 1842    17    17     0  0.78     0  1990     0     0   2.4    236    Yes    236
## 3371    36    10     0  1.99     0   620     0     0  18.2    708    Yes    708
##      col 13 col 14 col 15 col 16 col 17 col 18     col 19 col 20 col 21 col 22
## 2463    705    2.2      0    2.2   2.43     14 No Holiday Spring     43   2.43
## 2511    289    2.0      0    2.0   0.20     14 No Holiday Spring     97   0.20
## 8718    126    0.9      0    0.9   0.00      5 No Holiday Autumn     34   0.00
## 2986    378    1.4      0    1.4   0.36      9 No Holiday Spring     81   0.36
## 1842    236    3.1      0    3.1   0.78     17    Holiday Winter     17   0.78
## 3371    708    1.0      0    1.0   1.99     10 No Holiday Spring     36   1.99
##      col 23 col 24 col 25 col 26 col 27 col 28 col 29 col 30     col 31
## 2463    5.4    Yes      0     14    5.4     43    705 Spring 13/03/2018
## 2511   11.6    Yes      0     14   11.6     97    289 Spring 15/03/2018
## 8718  -12.4    Yes      0      5  -12.4     34    126 Autumn 29/11/2018
## 2986    7.2    Yes      0      9    7.2     81    378 Spring   4/4/2018
## 1842  -20.2    Yes      0     17  -20.2     17    236 Winter 15/02/2018
## 3371    2.8    Yes      0     10    2.8     36    708 Spring 20/04/2018
##          col 32 col 33 col 34 col 35 col 36 col 37 col 38 col 39 col 40
## 2463 13/03/2018     14 Spring     14   1509      0      0    5.4   18.3
## 2511 15/03/2018     14 Spring     14    177      0      0   11.6   12.1
## 8718 29/11/2018      5 Autumn      5   1990      0      0  -12.4    1.8
## 2986   4/4/2018      9 Spring      9   2000      0      0    7.2   10.4
## 1842 15/02/2018     17 Winter     17   1990      0      0  -20.2    2.4
## 3371 20/04/2018     10 Spring     10    620      0      0    2.8   18.2
##          col 41     col 42 col 43 col 44 col 45 col 46 col 47 col 48 col 49
## 2463 13/03/2018 13/03/2018    5.4   18.3   2.43     14      0    705      0
## 2511 15/03/2018 15/03/2018   11.6   12.1   0.20     14      0    289      0
## 8718 29/11/2018 29/11/2018  -12.4    1.8   0.00      5      0    126      0
## 2986   4/4/2018   4/4/2018    7.2   10.4   0.36      9      0    378      0
## 1842 15/02/2018 15/02/2018  -20.2    2.4   0.78     17      0    236      0
## 3371 20/04/2018 20/04/2018    2.8   18.2   1.99     10      0    708      0
##      col 50 col 51 col 52 col 53 col 54 col 55 col 56 col 57 col 58 col 59
## 2463   2.43     43    5.4     43      0      0    705     14     14    5.4
## 2511   0.20     97   11.6     97      0      0    289     14     14   11.6
## 8718   0.00     34  -12.4     34      0      0    126      5      5  -12.4
## 2986   0.36     81    7.2     81      0      0    378      9      9    7.2
## 1842   0.78     17  -20.2     17      0      0    236     17     17  -20.2
## 3371   1.99     36    2.8     36      0      0    708     10     10    2.8
##      col 60 col 61 col 62 col 63 col 64 col 65 col 66     col 67 col 68 col 69
## 2463   1509    5.4      0      0    Yes   18.3     43 13/03/2018    Yes     43
## 2511    177   11.6      0      0    Yes   12.1     97 15/03/2018    Yes     97
## 8718   1990  -12.4      0      0    Yes    1.8     34 29/11/2018    Yes     34
## 2986   2000    7.2      0      0    Yes   10.4     81   4/4/2018    Yes     81
## 1842   1990  -20.2      0      0    Yes    2.4     17 15/02/2018    Yes     17
## 3371    620    2.8      0      0    Yes   18.2     36 20/04/2018    Yes     36
##      col 70 col 71 col 72     col 73 col 74     col 75 col 76     col 77 col 78
## 2463   2.43   1509    2.2 13/03/2018      0 13/03/2018    5.4 No Holiday      0
## 2511   0.20    177    2.0 15/03/2018      0 15/03/2018   11.6 No Holiday      0
## 8718   0.00   1990    0.9 29/11/2018      0 29/11/2018  -12.4 No Holiday      0
## 2986   0.36   2000    1.4   4/4/2018      0   4/4/2018    7.2 No Holiday      0
## 1842   0.78   1990    3.1 15/02/2018      0 15/02/2018  -20.2    Holiday      0
## 3371   1.99    620    1.0 20/04/2018      0 20/04/2018    2.8 No Holiday      0
##      col 79 col 80 col 81 col 82 col 83 col 84     col 85 col 86 col 87 col 88
## 2463    Yes     43    5.4    705      0    2.2 No Holiday    Yes   1509      0
## 2511    Yes     97   11.6    289      0    2.0 No Holiday    Yes    177      0
## 8718    Yes     34  -12.4    126      0    0.9 No Holiday    Yes   1990      0
## 2986    Yes     81    7.2    378      0    1.4 No Holiday    Yes   2000      0
## 1842    Yes     17  -20.2    236      0    3.1    Holiday    Yes   1990      0
## 3371    Yes     36    2.8    708      0    1.0 No Holiday    Yes    620      0
##      col 89 col 90 col 91 col 92     col 93 col 94 col 95 col 96 col 97
## 2463 Spring      0   1509 Spring 13/03/2018    5.4 Spring   2.43     43
## 2511 Spring      0    177 Spring 15/03/2018   11.6 Spring   0.20     97
## 8718 Autumn      0   1990 Autumn 29/11/2018  -12.4 Autumn   0.00     34
## 2986 Spring      0   2000 Spring   4/4/2018    7.2 Spring   0.36     81
## 1842 Winter      0   1990 Winter 15/02/2018  -20.2 Winter   0.78     17
## 3371 Spring      0    620 Spring 20/04/2018    2.8 Spring   1.99     36
##          col 98 col 99 col 100 col 101 col 102 col 103 col 104 col 105 col 106
## 2463 13/03/2018     43      43      43      14    1509     2.2     2.2     705
## 2511 15/03/2018     97      97      97      14     177     2.0     2.0     289
## 8718 29/11/2018     34      34      34       5    1990     0.9     0.9     126
## 2986   4/4/2018     81      81      81       9    2000     1.4     1.4     378
## 1842 15/02/2018     17      17      17      17    1990     3.1     3.1     236
## 3371 20/04/2018     36      36      36      10     620     1.0     1.0     708
##      col 107 col 108 col 109 col 110    col 111 col 112 col 113 col 114 col 115
## 2463    18.3     2.2      43     Yes 13/03/2018     2.2    18.3    2.43     5.4
## 2511    12.1     2.0      97     Yes 15/03/2018     2.0    12.1    0.20    11.6
## 8718     1.8     0.9      34     Yes 29/11/2018     0.9     1.8    0.00   -12.4
## 2986    10.4     1.4      81     Yes   4/4/2018     1.4    10.4    0.36     7.2
## 1842     2.4     3.1      17     Yes 15/02/2018     3.1     2.4    0.78   -20.2
## 3371    18.2     1.0      36     Yes 20/04/2018     1.0    18.2    1.99     2.8
##      col 116 col 117 col 118 col 119 col 120 col 121 col 122 col 123 col 124
## 2463     705      14    1509    1509    1509    2.43     5.4      14     Yes
## 2511     289      14     177     177     177    0.20    11.6      14     Yes
## 8718     126       5    1990    1990    1990    0.00   -12.4       5     Yes
## 2986     378       9    2000    2000    2000    0.36     7.2       9     Yes
## 1842     236      17    1990    1990    1990    0.78   -20.2      17     Yes
## 3371     708      10     620     620     620    1.99     2.8      10     Yes
##      col 125 col 126    col 127 col 128 col 129 col 130 col 131 col 132 col 133
## 2463     2.2      14 No Holiday    18.3    2.43       0       0    18.3       0
## 2511     2.0      14 No Holiday    12.1    0.20       0       0    12.1       0
## 8718     0.9       5 No Holiday     1.8    0.00       0       0     1.8       0
## 2986     1.4       9 No Holiday    10.4    0.36       0       0    10.4       0
## 1842     3.1      17    Holiday     2.4    0.78       0       0     2.4       0
## 3371     1.0      10 No Holiday    18.2    1.99       0       0    18.2       0
##      col 134 col 135 col 136 col 137    col 138 col 139 col 140 col 141 col 142
## 2463  Spring     5.4     Yes    18.3 No Holiday     5.4      14     2.2       0
## 2511  Spring    11.6     Yes    12.1 No Holiday    11.6      14     2.0       0
## 8718  Autumn   -12.4     Yes     1.8 No Holiday   -12.4       5     0.9       0
## 2986  Spring     7.2     Yes    10.4 No Holiday     7.2       9     1.4       0
## 1842  Winter   -20.2     Yes     2.4    Holiday   -20.2      17     3.1       0
## 3371  Spring     2.8     Yes    18.2 No Holiday     2.8      10     1.0       0
##      col 143    col 144 col 145 col 146 col 147    col 148    col 149 col 150
## 2463     Yes 13/03/2018     2.2  Spring     Yes No Holiday No Holiday     Yes
## 2511     Yes 15/03/2018     2.0  Spring     Yes No Holiday No Holiday     Yes
## 8718     Yes 29/11/2018     0.9  Autumn     Yes No Holiday No Holiday     Yes
## 2986     Yes   4/4/2018     1.4  Spring     Yes No Holiday No Holiday     Yes
## 1842     Yes 15/02/2018     3.1  Winter     Yes    Holiday    Holiday     Yes
## 3371     Yes 20/04/2018     1.0  Spring     Yes No Holiday No Holiday     Yes
##         col 151 col 152 col 153 col 154 col 155 col 156 col 157 col 158
## 2463 13/03/2018    2.43       0      14     2.2    2.43    2.43    18.3
## 2511 15/03/2018    0.20       0      14     2.0    0.20    0.20    12.1
## 8718 29/11/2018    0.00       0       5     0.9    0.00    0.00     1.8
## 2986   4/4/2018    0.36       0       9     1.4    0.36    0.36    10.4
## 1842 15/02/2018    0.78       0      17     3.1    0.78    0.78     2.4
## 3371 20/04/2018    1.99       0      10     1.0    1.99    1.99    18.2
##         col 159 col 160 col 161 col 162 col 163 col 164 col 165 col 166 col 167
## 2463 13/03/2018    2.43     Yes      43     Yes     5.4    2.43     5.4      43
## 2511 15/03/2018    0.20     Yes      97     Yes    11.6    0.20    11.6      97
## 8718 29/11/2018    0.00     Yes      34     Yes   -12.4    0.00   -12.4      34
## 2986   4/4/2018    0.36     Yes      81     Yes     7.2    0.36     7.2      81
## 1842 15/02/2018    0.78     Yes      17     Yes   -20.2    0.78   -20.2      17
## 3371 20/04/2018    1.99     Yes      36     Yes     2.8    1.99     2.8      36
##      col 168 col 169 col 170 col 171 col 172    col 173 col 174 col 175 col 176
## 2463     Yes    1509     705     Yes  Spring 13/03/2018  Spring     5.4  Spring
## 2511     Yes     177     289     Yes  Spring 15/03/2018  Spring    11.6  Spring
## 8718     Yes    1990     126     Yes  Autumn 29/11/2018  Autumn   -12.4  Autumn
## 2986     Yes    2000     378     Yes  Spring   4/4/2018  Spring     7.2  Spring
## 1842     Yes    1990     236     Yes  Winter 15/02/2018  Winter   -20.2  Winter
## 3371     Yes     620     708     Yes  Spring 20/04/2018  Spring     2.8  Spring
##         col 177 col 178 col 179 col 180 col 181 col 182 col 183    col 184
## 2463 13/03/2018    2.43      43      43     5.4     2.2      43 No Holiday
## 2511 15/03/2018    0.20      97      97    11.6     2.0      97 No Holiday
## 8718 29/11/2018    0.00      34      34   -12.4     0.9      34 No Holiday
## 2986   4/4/2018    0.36      81      81     7.2     1.4      81 No Holiday
## 1842 15/02/2018    0.78      17      17   -20.2     3.1      17    Holiday
## 3371 20/04/2018    1.99      36      36     2.8     1.0      36 No Holiday
##      col 185    col 186 col 187 col 188 col 189 col 190 col 191 col 192 col 193
## 2463       0 13/03/2018     2.2      14    2.43     705    1509      14      43
## 2511       0 15/03/2018     2.0      14    0.20     289     177      14      97
## 8718       0 29/11/2018     0.9       5    0.00     126    1990       5      34
## 2986       0   4/4/2018     1.4       9    0.36     378    2000       9      81
## 1842       0 15/02/2018     3.1      17    0.78     236    1990      17      17
## 3371       0 20/04/2018     1.0      10    1.99     708     620      10      36
##         col 194 col 195 col 196 col 197 col 198 col 199 col 200    col 201
## 2463 13/03/2018    18.3       0       0       0    2.43     705 13/03/2018
## 2511 15/03/2018    12.1       0       0       0    0.20     289 15/03/2018
## 8718 29/11/2018     1.8       0       0       0    0.00     126 29/11/2018
## 2986   4/4/2018    10.4       0       0       0    0.36     378   4/4/2018
## 1842 15/02/2018     2.4       0       0       0    0.78     236 15/02/2018
## 3371 20/04/2018    18.2       0       0       0    1.99     708 20/04/2018
##      col 202 col 203 col 204    col 205 col 206 col 207    col 208 col 209
## 2463      14       0       0 13/03/2018     Yes      43 No Holiday     5.4
## 2511      14       0       0 15/03/2018     Yes      97 No Holiday    11.6
## 8718       5       0       0 29/11/2018     Yes      34 No Holiday   -12.4
## 2986       9       0       0   4/4/2018     Yes      81 No Holiday     7.2
## 1842      17       0       0 15/02/2018     Yes      17    Holiday   -20.2
## 3371      10       0       0 20/04/2018     Yes      36 No Holiday     2.8
##      col 210 col 211 col 212 col 213 col 214 col 215 col 216    col 217 col 218
## 2463     Yes      43     705     705     2.2     705    1509 No Holiday    1509
## 2511     Yes      97     289     289     2.0     289     177 No Holiday     177
## 8718     Yes      34     126     126     0.9     126    1990 No Holiday    1990
## 2986     Yes      81     378     378     1.4     378    2000 No Holiday    2000
## 1842     Yes      17     236     236     3.1     236    1990    Holiday    1990
## 3371     Yes      36     708     708     1.0     708     620 No Holiday     620
##      col 219 col 220 col 221 col 222 col 223 col 224 col 225 col 226 col 227
## 2463    1509      43    2.43     2.2      14  Spring      14      14      43
## 2511     177      97    0.20     2.0      14  Spring      14      14      97
## 8718    1990      34    0.00     0.9       5  Autumn       5       5      34
## 2986    2000      81    0.36     1.4       9  Spring       9       9      81
## 1842    1990      17    0.78     3.1      17  Winter      17      17      17
## 3371     620      36    1.99     1.0      10  Spring      10      10      36
##      col 228 col 229 col 230 col 231 col 232 col 233 col 234 col 235 col 236
## 2463     5.4    1509    18.3    2.43      43    2.43  Spring      43    18.3
## 2511    11.6     177    12.1    0.20      97    0.20  Spring      97    12.1
## 8718   -12.4    1990     1.8    0.00      34    0.00  Autumn      34     1.8
## 2986     7.2    2000    10.4    0.36      81    0.36  Spring      81    10.4
## 1842   -20.2    1990     2.4    0.78      17    0.78  Winter      17     2.4
## 3371     2.8     620    18.2    1.99      36    1.99  Spring      36    18.2
##         col 237 col 238 col 239 col 240    col 241    col 242 col 243 col 244
## 2463 13/03/2018     2.2    2.43    1509 No Holiday No Holiday      14    18.3
## 2511 15/03/2018     2.0    0.20     177 No Holiday No Holiday      14    12.1
## 8718 29/11/2018     0.9    0.00    1990 No Holiday No Holiday       5     1.8
## 2986   4/4/2018     1.4    0.36    2000 No Holiday No Holiday       9    10.4
## 1842 15/02/2018     3.1    0.78    1990    Holiday    Holiday      17     2.4
## 3371 20/04/2018     1.0    1.99     620 No Holiday No Holiday      10    18.2
##         col 245    col 246    col 247 col 248    col 249 col 250 col 251
## 2463 13/03/2018 13/03/2018 No Holiday     2.2 13/03/2018    1509     2.2
## 2511 15/03/2018 15/03/2018 No Holiday     2.0 15/03/2018     177     2.0
## 8718 29/11/2018 29/11/2018 No Holiday     0.9 29/11/2018    1990     0.9
## 2986   4/4/2018   4/4/2018 No Holiday     1.4   4/4/2018    2000     1.4
## 1842 15/02/2018 15/02/2018    Holiday     3.1 15/02/2018    1990     3.1
## 3371 20/04/2018 20/04/2018 No Holiday     1.0 20/04/2018     620     1.0
##      col 252 col 253 col 254    col 255    col 256 col 257 col 258 col 259
## 2463     705       0     5.4 13/03/2018 No Holiday       0    18.3  Spring
## 2511     289       0    11.6 15/03/2018 No Holiday       0    12.1  Spring
## 8718     126       0   -12.4 29/11/2018 No Holiday       0     1.8  Autumn
## 2986     378       0     7.2   4/4/2018 No Holiday       0    10.4  Spring
## 1842     236       0   -20.2 15/02/2018    Holiday       0     2.4  Winter
## 3371     708       0     2.8 20/04/2018 No Holiday       0    18.2  Spring
##      col 260 col 261 col 262    col 263 col 264 col 265 col 266 col 267
## 2463     Yes    1509     5.4 13/03/2018     5.4     2.2       0     Yes
## 2511     Yes     177    11.6 15/03/2018    11.6     2.0       0     Yes
## 8718     Yes    1990   -12.4 29/11/2018   -12.4     0.9       0     Yes
## 2986     Yes    2000     7.2   4/4/2018     7.2     1.4       0     Yes
## 1842     Yes    1990   -20.2 15/02/2018   -20.2     3.1       0     Yes
## 3371     Yes     620     2.8 20/04/2018     2.8     1.0       0     Yes
##         col 268 col 269 col 270 col 271 col 272 col 273 col 274 col 275 col 276
## 2463 No Holiday  Spring    2.43     5.4      43    2.43     2.2  Spring    1509
## 2511 No Holiday  Spring    0.20    11.6      97    0.20     2.0  Spring     177
## 8718 No Holiday  Autumn    0.00   -12.4      34    0.00     0.9  Autumn    1990
## 2986 No Holiday  Spring    0.36     7.2      81    0.36     1.4  Spring    2000
## 1842    Holiday  Winter    0.78   -20.2      17    0.78     3.1  Winter    1990
## 3371 No Holiday  Spring    1.99     2.8      36    1.99     1.0  Spring     620
##         col 277 col 278    col 279 col 280    col 281 col 282 col 283
## 2463 No Holiday     5.4 No Holiday      14 No Holiday    2.43      14
## 2511 No Holiday    11.6 No Holiday      14 No Holiday    0.20      14
## 8718 No Holiday   -12.4 No Holiday       5 No Holiday    0.00       5
## 2986 No Holiday     7.2 No Holiday       9 No Holiday    0.36       9
## 1842    Holiday   -20.2    Holiday      17    Holiday    0.78      17
## 3371 No Holiday     2.8 No Holiday      10 No Holiday    1.99      10
##         col 284 col 285    col 286 col 287 col 288 col 289 col 290    col 291
## 2463 No Holiday      14 No Holiday     2.2       0    2.43    18.3 13/03/2018
## 2511 No Holiday      14 No Holiday     2.0       0    0.20    12.1 15/03/2018
## 8718 No Holiday       5 No Holiday     0.9       0    0.00     1.8 29/11/2018
## 2986 No Holiday       9 No Holiday     1.4       0    0.36    10.4   4/4/2018
## 1842    Holiday      17    Holiday     3.1       0    0.78     2.4 15/02/2018
## 3371 No Holiday      10 No Holiday     1.0       0    1.99    18.2 20/04/2018
##      col 292 col 293 col 294 col 295 col 296    col 297 col 298 col 299 col 300
## 2463      43     5.4  Spring     5.4    1509 13/03/2018     Yes       0       0
## 2511      97    11.6  Spring    11.6     177 15/03/2018     Yes       0       0
## 8718      34   -12.4  Autumn   -12.4    1990 29/11/2018     Yes       0       0
## 2986      81     7.2  Spring     7.2    2000   4/4/2018     Yes       0       0
## 1842      17   -20.2  Winter   -20.2    1990 15/02/2018     Yes       0       0
## 3371      36     2.8  Spring     2.8     620 20/04/2018     Yes       0       0
##      col 301 col 302 col 303 col 304 col 305 col 306 col 307 col 308 col 309
## 2463       0      43  Spring     705     705  Spring  Spring     Yes    1509
## 2511       0      97  Spring     289     289  Spring  Spring     Yes     177
## 8718       0      34  Autumn     126     126  Autumn  Autumn     Yes    1990
## 2986       0      81  Spring     378     378  Spring  Spring     Yes    2000
## 1842       0      17  Winter     236     236  Winter  Winter     Yes    1990
## 3371       0      36  Spring     708     708  Spring  Spring     Yes     620
##      col 310 col 311 col 312 col 313 col 314 col 315 col 316 col 317 col 318
## 2463    18.3     Yes     Yes     Yes       0    18.3       0  Spring     705
## 2511    12.1     Yes     Yes     Yes       0    12.1       0  Spring     289
## 8718     1.8     Yes     Yes     Yes       0     1.8       0  Autumn     126
## 2986    10.4     Yes     Yes     Yes       0    10.4       0  Spring     378
## 1842     2.4     Yes     Yes     Yes       0     2.4       0  Winter     236
## 3371    18.2     Yes     Yes     Yes       0    18.2       0  Spring     708
##      col 319 col 320 col 321 col 322 col 323 col 324 col 325    col 326
## 2463     705    18.3  Spring    18.3    2.43     2.2    2.43 13/03/2018
## 2511     289    12.1  Spring    12.1    0.20     2.0    0.20 15/03/2018
## 8718     126     1.8  Autumn     1.8    0.00     0.9    0.00 29/11/2018
## 2986     378    10.4  Spring    10.4    0.36     1.4    0.36   4/4/2018
## 1842     236     2.4  Winter     2.4    0.78     3.1    0.78 15/02/2018
## 3371     708    18.2  Spring    18.2    1.99     1.0    1.99 20/04/2018
##         col 327 col 328 col 329 col 330 col 331 col 332 col 333 col 334
## 2463 13/03/2018     5.4       0     5.4       0     2.2     705      43
## 2511 15/03/2018    11.6       0    11.6       0     2.0     289      97
## 8718 29/11/2018   -12.4       0   -12.4       0     0.9     126      34
## 2986   4/4/2018     7.2       0     7.2       0     1.4     378      81
## 1842 15/02/2018   -20.2       0   -20.2       0     3.1     236      17
## 3371 20/04/2018     2.8       0     2.8       0     1.0     708      36
##         col 335 col 336 col 337 col 338    col 339 col 340    col 341 col 342
## 2463 13/03/2018      14     5.4  Spring No Holiday  Spring 13/03/2018  Spring
## 2511 15/03/2018      14    11.6  Spring No Holiday  Spring 15/03/2018  Spring
## 8718 29/11/2018       5   -12.4  Autumn No Holiday  Autumn 29/11/2018  Autumn
## 2986   4/4/2018       9     7.2  Spring No Holiday  Spring   4/4/2018  Spring
## 1842 15/02/2018      17   -20.2  Winter    Holiday  Winter 15/02/2018  Winter
## 3371 20/04/2018      10     2.8  Spring No Holiday  Spring 20/04/2018  Spring
##      col 343 col 344 col 345 col 346 col 347 col 348 col 349 col 350 col 351
## 2463    2.43     5.4    18.3    18.3      43     705     705  Spring  Spring
## 2511    0.20    11.6    12.1    12.1      97     289     289  Spring  Spring
## 8718    0.00   -12.4     1.8     1.8      34     126     126  Autumn  Autumn
## 2986    0.36     7.2    10.4    10.4      81     378     378  Spring  Spring
## 1842    0.78   -20.2     2.4     2.4      17     236     236  Winter  Winter
## 3371    1.99     2.8    18.2    18.2      36     708     708  Spring  Spring
##      col 352 col 353    col 354 col 355 col 356 col 357 col 358 col 359 col 360
## 2463     Yes    1509 13/03/2018       0      14     5.4     705       0  Spring
## 2511     Yes     177 15/03/2018       0      14    11.6     289       0  Spring
## 8718     Yes    1990 29/11/2018       0       5   -12.4     126       0  Autumn
## 2986     Yes    2000   4/4/2018       0       9     7.2     378       0  Spring
## 1842     Yes    1990 15/02/2018       0      17   -20.2     236       0  Winter
## 3371     Yes     620 20/04/2018       0      10     2.8     708       0  Spring
##      col 361 col 362    col 363 col 364 col 365 col 366 col 367 col 368 col 369
## 2463      14      43 13/03/2018    18.3       0     2.2     Yes    18.3      43
## 2511      14      97 15/03/2018    12.1       0     2.0     Yes    12.1      97
## 8718       5      34 29/11/2018     1.8       0     0.9     Yes     1.8      34
## 2986       9      81   4/4/2018    10.4       0     1.4     Yes    10.4      81
## 1842      17      17 15/02/2018     2.4       0     3.1     Yes     2.4      17
## 3371      10      36 20/04/2018    18.2       0     1.0     Yes    18.2      36
##      col 370 col 371 col 372 col 373    col 374 col 375 col 376 col 377 col 378
## 2463  Spring     705      43      43 13/03/2018       0    1509  Spring    2.43
## 2511  Spring     289      97      97 15/03/2018       0     177  Spring    0.20
## 8718  Autumn     126      34      34 29/11/2018       0    1990  Autumn    0.00
## 2986  Spring     378      81      81   4/4/2018       0    2000  Spring    0.36
## 1842  Winter     236      17      17 15/02/2018       0    1990  Winter    0.78
## 3371  Spring     708      36      36 20/04/2018       0     620  Spring    1.99
##      col 379 col 380 col 381 col 382 col 383 col 384 col 385 col 386 col 387
## 2463     2.2    1509    2.43    18.3  Spring  Spring    18.3    1509      43
## 2511     2.0     177    0.20    12.1  Spring  Spring    12.1     177      97
## 8718     0.9    1990    0.00     1.8  Autumn  Autumn     1.8    1990      34
## 2986     1.4    2000    0.36    10.4  Spring  Spring    10.4    2000      81
## 1842     3.1    1990    0.78     2.4  Winter  Winter     2.4    1990      17
## 3371     1.0     620    1.99    18.2  Spring  Spring    18.2     620      36
##      col 388 col 389 col 390 col 391    col 392 col 393    col 394 col 395
## 2463       0       0     2.2    1509 No Holiday     705 No Holiday     705
## 2511       0       0     2.0     177 No Holiday     289 No Holiday     289
## 8718       0       0     0.9    1990 No Holiday     126 No Holiday     126
## 2986       0       0     1.4    2000 No Holiday     378 No Holiday     378
## 1842       0       0     3.1    1990    Holiday     236    Holiday     236
## 3371       0       0     1.0     620 No Holiday     708 No Holiday     708
##      col 396 col 397    col 398 col 399 col 400 col 401    col 402 col 403
## 2463    2.43     Yes No Holiday    18.3       0     Yes 13/03/2018     705
## 2511    0.20     Yes No Holiday    12.1       0     Yes 15/03/2018     289
## 8718    0.00     Yes No Holiday     1.8       0     Yes 29/11/2018     126
## 2986    0.36     Yes No Holiday    10.4       0     Yes   4/4/2018     378
## 1842    0.78     Yes    Holiday     2.4       0     Yes 15/02/2018     236
## 3371    1.99     Yes No Holiday    18.2       0     Yes 20/04/2018     708
##      col 404 col 405 col 406 col 407    col 408 col 409 col 410 col 411
## 2463     Yes    2.43       0      14 No Holiday       0     Yes     Yes
## 2511     Yes    0.20       0      14 No Holiday       0     Yes     Yes
## 8718     Yes    0.00       0       5 No Holiday       0     Yes     Yes
## 2986     Yes    0.36       0       9 No Holiday       0     Yes     Yes
## 1842     Yes    0.78       0      17    Holiday       0     Yes     Yes
## 3371     Yes    1.99       0      10 No Holiday       0     Yes     Yes
##         col 412 col 413 col 414 col 415 col 416 col 417    col 418 col 419
## 2463 13/03/2018     2.2    2.43     705    1509       0 13/03/2018    2.43
## 2511 15/03/2018     2.0    0.20     289     177       0 15/03/2018    0.20
## 8718 29/11/2018     0.9    0.00     126    1990       0 29/11/2018    0.00
## 2986   4/4/2018     1.4    0.36     378    2000       0   4/4/2018    0.36
## 1842 15/02/2018     3.1    0.78     236    1990       0 15/02/2018    0.78
## 3371 20/04/2018     1.0    1.99     708     620       0 20/04/2018    1.99
##         col 420    col 421    col 422    col 423 col 424 col 425 col 426
## 2463 13/03/2018 13/03/2018 No Holiday No Holiday    2.43     5.4     2.2
## 2511 15/03/2018 15/03/2018 No Holiday No Holiday    0.20    11.6     2.0
## 8718 29/11/2018 29/11/2018 No Holiday No Holiday    0.00   -12.4     0.9
## 2986   4/4/2018   4/4/2018 No Holiday No Holiday    0.36     7.2     1.4
## 1842 15/02/2018 15/02/2018    Holiday    Holiday    0.78   -20.2     3.1
## 3371 20/04/2018 20/04/2018 No Holiday No Holiday    1.99     2.8     1.0
##         col 427 col 428 col 429 col 430 col 431 col 432    col 433 col 434
## 2463 13/03/2018      43    18.3     2.2       0     2.2 No Holiday    18.3
## 2511 15/03/2018      97    12.1     2.0       0     2.0 No Holiday    12.1
## 8718 29/11/2018      34     1.8     0.9       0     0.9 No Holiday     1.8
## 2986   4/4/2018      81    10.4     1.4       0     1.4 No Holiday    10.4
## 1842 15/02/2018      17     2.4     3.1       0     3.1    Holiday     2.4
## 3371 20/04/2018      36    18.2     1.0       0     1.0 No Holiday    18.2
##         col 435 col 436    col 437 col 438 col 439 col 440 col 441 col 442
## 2463 No Holiday     705 No Holiday      14     705    18.3     Yes     705
## 2511 No Holiday     289 No Holiday      14     289    12.1     Yes     289
## 8718 No Holiday     126 No Holiday       5     126     1.8     Yes     126
## 2986 No Holiday     378 No Holiday       9     378    10.4     Yes     378
## 1842    Holiday     236    Holiday      17     236     2.4     Yes     236
## 3371 No Holiday     708 No Holiday      10     708    18.2     Yes     708
##      col 443 col 444 col 445 col 446 col 447 col 448 col 449 col 450 col 451
## 2463    1509  Spring      14  Spring       0    18.3    18.3       0    2.43
## 2511     177  Spring      14  Spring       0    12.1    12.1       0    0.20
## 8718    1990  Autumn       5  Autumn       0     1.8     1.8       0    0.00
## 2986    2000  Spring       9  Spring       0    10.4    10.4       0    0.36
## 1842    1990  Winter      17  Winter       0     2.4     2.4       0    0.78
## 3371     620  Spring      10  Spring       0    18.2    18.2       0    1.99
##      col 452 col 453 col 454    col 455 col 456 col 457    col 458    col 459
## 2463      14       0     2.2 13/03/2018    1509       0 No Holiday 13/03/2018
## 2511      14       0     2.0 15/03/2018     177       0 No Holiday 15/03/2018
## 8718       5       0     0.9 29/11/2018    1990       0 No Holiday 29/11/2018
## 2986       9       0     1.4   4/4/2018    2000       0 No Holiday   4/4/2018
## 1842      17       0     3.1 15/02/2018    1990       0    Holiday 15/02/2018
## 3371      10       0     1.0 20/04/2018     620       0 No Holiday 20/04/2018
##      col 460 col 461 col 462 col 463    col 464 col 465 col 466 col 467 col 468
## 2463       0     5.4     705    18.3 13/03/2018  Spring     2.2      14     5.4
## 2511       0    11.6     289    12.1 15/03/2018  Spring     2.0      14    11.6
## 8718       0   -12.4     126     1.8 29/11/2018  Autumn     0.9       5   -12.4
## 2986       0     7.2     378    10.4   4/4/2018  Spring     1.4       9     7.2
## 1842       0   -20.2     236     2.4 15/02/2018  Winter     3.1      17   -20.2
## 3371       0     2.8     708    18.2 20/04/2018  Spring     1.0      10     2.8
##      col 469    col 470 col 471 col 472 col 473 col 474 col 475 col 476 col 477
## 2463      43 No Holiday      14      14       0      43    2.43    1509      43
## 2511      97 No Holiday      14      14       0      97    0.20     177      97
## 8718      34 No Holiday       5       5       0      34    0.00    1990      34
## 2986      81 No Holiday       9       9       0      81    0.36    2000      81
## 1842      17    Holiday      17      17       0      17    0.78    1990      17
## 3371      36 No Holiday      10      10       0      36    1.99     620      36
##         col 478 col 479    col 480 col 481 col 482 col 483 col 484 col 485
## 2463 No Holiday     2.2 13/03/2018     Yes       0      14       0       0
## 2511 No Holiday     2.0 15/03/2018     Yes       0      14       0       0
## 8718 No Holiday     0.9 29/11/2018     Yes       0       5       0       0
## 2986 No Holiday     1.4   4/4/2018     Yes       0       9       0       0
## 1842    Holiday     3.1 15/02/2018     Yes       0      17       0       0
## 3371 No Holiday     1.0 20/04/2018     Yes       0      10       0       0
##      col 486 col 487 col 488    col 489 col 490 col 491 col 492 col 493 col 494
## 2463     Yes     Yes      14 No Holiday       0    18.3    1509    2.43     2.2
## 2511     Yes     Yes      14 No Holiday       0    12.1     177    0.20     2.0
## 8718     Yes     Yes       5 No Holiday       0     1.8    1990    0.00     0.9
## 2986     Yes     Yes       9 No Holiday       0    10.4    2000    0.36     1.4
## 1842     Yes     Yes      17    Holiday       0     2.4    1990    0.78     3.1
## 3371     Yes     Yes      10 No Holiday       0    18.2     620    1.99     1.0
##      col 495 col 496 col 497 col 498 col 499 col 500 col 501 col 502    col 503
## 2463      14     2.2    18.3     Yes  Spring    18.3     705      43 No Holiday
## 2511      14     2.0    12.1     Yes  Spring    12.1     289      97 No Holiday
## 8718       5     0.9     1.8     Yes  Autumn     1.8     126      34 No Holiday
## 2986       9     1.4    10.4     Yes  Spring    10.4     378      81 No Holiday
## 1842      17     3.1     2.4     Yes  Winter     2.4     236      17    Holiday
## 3371      10     1.0    18.2     Yes  Spring    18.2     708      36 No Holiday
##      col 504 col 505 col 506 col 507    col 508 col 509 col 510 col 511
## 2463       0     Yes  Spring       0 No Holiday  Spring  Spring    18.3
## 2511       0     Yes  Spring       0 No Holiday  Spring  Spring    12.1
## 8718       0     Yes  Autumn       0 No Holiday  Autumn  Autumn     1.8
## 2986       0     Yes  Spring       0 No Holiday  Spring  Spring    10.4
## 1842       0     Yes  Winter       0    Holiday  Winter  Winter     2.4
## 3371       0     Yes  Spring       0 No Holiday  Spring  Spring    18.2
##         col 512 col 513 col 514 col 515 col 516 col 517 col 518 col 519
## 2463 No Holiday     5.4      43  Spring    18.3     2.2     2.2      14
## 2511 No Holiday    11.6      97  Spring    12.1     2.0     2.0      14
## 8718 No Holiday   -12.4      34  Autumn     1.8     0.9     0.9       5
## 2986 No Holiday     7.2      81  Spring    10.4     1.4     1.4       9
## 1842    Holiday   -20.2      17  Winter     2.4     3.1     3.1      17
## 3371 No Holiday     2.8      36  Spring    18.2     1.0     1.0      10
##         col 520 col 521 col 522    col 523    col 524 col 525 col 526
## 2463 No Holiday       0      14 13/03/2018 13/03/2018    1509     5.4
## 2511 No Holiday       0      14 15/03/2018 15/03/2018     177    11.6
## 8718 No Holiday       0       5 29/11/2018 29/11/2018    1990   -12.4
## 2986 No Holiday       0       9   4/4/2018   4/4/2018    2000     7.2
## 1842    Holiday       0      17 15/02/2018 15/02/2018    1990   -20.2
## 3371 No Holiday       0      10 20/04/2018 20/04/2018     620     2.8
##         col 527 col 528 col 529    col 530 col 531 col 532 col 533    col 534
## 2463 13/03/2018      43     2.2 13/03/2018      14       0       0 13/03/2018
## 2511 15/03/2018      97     2.0 15/03/2018      14       0       0 15/03/2018
## 8718 29/11/2018      34     0.9 29/11/2018       5       0       0 29/11/2018
## 2986   4/4/2018      81     1.4   4/4/2018       9       0       0   4/4/2018
## 1842 15/02/2018      17     3.1 15/02/2018      17       0       0 15/02/2018
## 3371 20/04/2018      36     1.0 20/04/2018      10       0       0 20/04/2018
##      col 535 col 536 col 537 col 538 col 539 col 540 col 541 col 542 col 543
## 2463     Yes     705     2.2  Spring       0      43     705      43     2.2
## 2511     Yes     289     2.0  Spring       0      97     289      97     2.0
## 8718     Yes     126     0.9  Autumn       0      34     126      34     0.9
## 2986     Yes     378     1.4  Spring       0      81     378      81     1.4
## 1842     Yes     236     3.1  Winter       0      17     236      17     3.1
## 3371     Yes     708     1.0  Spring       0      36     708      36     1.0
##      col 544    col 545 col 546 col 547 col 548 col 549 col 550 col 551 col 552
## 2463      14 No Holiday       0  Spring       0       0      14      14     Yes
## 2511      14 No Holiday       0  Spring       0       0      14      14     Yes
## 8718       5 No Holiday       0  Autumn       0       0       5       5     Yes
## 2986       9 No Holiday       0  Spring       0       0       9       9     Yes
## 1842      17    Holiday       0  Winter       0       0      17      17     Yes
## 3371      10 No Holiday       0  Spring       0       0      10      10     Yes
##      col 553    col 554 col 555 col 556 col 557    col 558 col 559 col 560
## 2463      14 13/03/2018      43    1509       0 13/03/2018     Yes     5.4
## 2511      14 15/03/2018      97     177       0 15/03/2018     Yes    11.6
## 8718       5 29/11/2018      34    1990       0 29/11/2018     Yes   -12.4
## 2986       9   4/4/2018      81    2000       0   4/4/2018     Yes     7.2
## 1842      17 15/02/2018      17    1990       0 15/02/2018     Yes   -20.2
## 3371      10 20/04/2018      36     620       0 20/04/2018     Yes     2.8
##         col 561 col 562 col 563    col 564 col 565 col 566 col 567 col 568
## 2463 13/03/2018  Spring     Yes 13/03/2018    1509  Spring    2.43     5.4
## 2511 15/03/2018  Spring     Yes 15/03/2018     177  Spring    0.20    11.6
## 8718 29/11/2018  Autumn     Yes 29/11/2018    1990  Autumn    0.00   -12.4
## 2986   4/4/2018  Spring     Yes   4/4/2018    2000  Spring    0.36     7.2
## 1842 15/02/2018  Winter     Yes 15/02/2018    1990  Winter    0.78   -20.2
## 3371 20/04/2018  Spring     Yes 20/04/2018     620  Spring    1.99     2.8
##      col 569 col 570 col 571 col 572 col 573 col 574 col 575 col 576 col 577
## 2463       0       0     705  Spring     Yes    18.3     705    2.43     5.4
## 2511       0       0     289  Spring     Yes    12.1     289    0.20    11.6
## 8718       0       0     126  Autumn     Yes     1.8     126    0.00   -12.4
## 2986       0       0     378  Spring     Yes    10.4     378    0.36     7.2
## 1842       0       0     236  Winter     Yes     2.4     236    0.78   -20.2
## 3371       0       0     708  Spring     Yes    18.2     708    1.99     2.8
##      col 578 col 579    col 580 col 581 col 582 col 583 col 584 col 585 col 586
## 2463     5.4    1509 13/03/2018      14     5.4      14     2.2    1509     Yes
## 2511    11.6     177 15/03/2018      14    11.6      14     2.0     177     Yes
## 8718   -12.4    1990 29/11/2018       5   -12.4       5     0.9    1990     Yes
## 2986     7.2    2000   4/4/2018       9     7.2       9     1.4    2000     Yes
## 1842   -20.2    1990 15/02/2018      17   -20.2      17     3.1    1990     Yes
## 3371     2.8     620 20/04/2018      10     2.8      10     1.0     620     Yes
##      col 587 col 588 col 589 col 590    col 591 col 592    col 593 col 594
## 2463     Yes    1509    18.3    18.3 No Holiday    18.3 13/03/2018      43
## 2511     Yes     177    12.1    12.1 No Holiday    12.1 15/03/2018      97
## 8718     Yes    1990     1.8     1.8 No Holiday     1.8 29/11/2018      34
## 2986     Yes    2000    10.4    10.4 No Holiday    10.4   4/4/2018      81
## 1842     Yes    1990     2.4     2.4    Holiday     2.4 15/02/2018      17
## 3371     Yes     620    18.2    18.2 No Holiday    18.2 20/04/2018      36
##      col 595 col 596    col 597 col 598    col 599 col 600 col 601 col 602
## 2463     Yes     5.4 13/03/2018      14 No Holiday      43     705      43
## 2511     Yes    11.6 15/03/2018      14 No Holiday      97     289      97
## 8718     Yes   -12.4 29/11/2018       5 No Holiday      34     126      34
## 2986     Yes     7.2   4/4/2018       9 No Holiday      81     378      81
## 1842     Yes   -20.2 15/02/2018      17    Holiday      17     236      17
## 3371     Yes     2.8 20/04/2018      10 No Holiday      36     708      36
##      col 603 col 604 col 605 col 606 col 607    col 608 col 609 col 610 col 611
## 2463     5.4  Spring     705      43     5.4 No Holiday    1509       0     705
## 2511    11.6  Spring     289      97    11.6 No Holiday     177       0     289
## 8718   -12.4  Autumn     126      34   -12.4 No Holiday    1990       0     126
## 2986     7.2  Spring     378      81     7.2 No Holiday    2000       0     378
## 1842   -20.2  Winter     236      17   -20.2    Holiday    1990       0     236
## 3371     2.8  Spring     708      36     2.8 No Holiday     620       0     708
##      col 612 col 613 col 614 col 615 col 616 col 617    col 618 col 619 col 620
## 2463      43     Yes     Yes  Spring    18.3     5.4 No Holiday    1509  Spring
## 2511      97     Yes     Yes  Spring    12.1    11.6 No Holiday     177  Spring
## 8718      34     Yes     Yes  Autumn     1.8   -12.4 No Holiday    1990  Autumn
## 2986      81     Yes     Yes  Spring    10.4     7.2 No Holiday    2000  Spring
## 1842      17     Yes     Yes  Winter     2.4   -20.2    Holiday    1990  Winter
## 3371      36     Yes     Yes  Spring    18.2     2.8 No Holiday     620  Spring
##      col 621 col 622 col 623 col 624 col 625    col 626 col 627 col 628 col 629
## 2463      14       0  Spring     2.2      43 13/03/2018      43     5.4       0
## 2511      14       0  Spring     2.0      97 15/03/2018      97    11.6       0
## 8718       5       0  Autumn     0.9      34 29/11/2018      34   -12.4       0
## 2986       9       0  Spring     1.4      81   4/4/2018      81     7.2       0
## 1842      17       0  Winter     3.1      17 15/02/2018      17   -20.2       0
## 3371      10       0  Spring     1.0      36 20/04/2018      36     2.8       0
##      col 630 col 631 col 632 col 633    col 634 col 635 col 636 col 637
## 2463     5.4      14      14      43 No Holiday    1509  Spring    1509
## 2511    11.6      14      14      97 No Holiday     177  Spring     177
## 8718   -12.4       5       5      34 No Holiday    1990  Autumn    1990
## 2986     7.2       9       9      81 No Holiday    2000  Spring    2000
## 1842   -20.2      17      17      17    Holiday    1990  Winter    1990
## 3371     2.8      10      10      36 No Holiday     620  Spring     620
##         col 638 col 639 col 640 col 641 col 642    col 643 col 644 col 645
## 2463 No Holiday       0     Yes      43    18.3 13/03/2018     705    1509
## 2511 No Holiday       0     Yes      97    12.1 15/03/2018     289     177
## 8718 No Holiday       0     Yes      34     1.8 29/11/2018     126    1990
## 2986 No Holiday       0     Yes      81    10.4   4/4/2018     378    2000
## 1842    Holiday       0     Yes      17     2.4 15/02/2018     236    1990
## 3371 No Holiday       0     Yes      36    18.2 20/04/2018     708     620
##         col 646 col 647 col 648    col 649 col 650 col 651 col 652 col 653
## 2463 13/03/2018      14    18.3 13/03/2018       0      43    2.43     5.4
## 2511 15/03/2018      14    12.1 15/03/2018       0      97    0.20    11.6
## 8718 29/11/2018       5     1.8 29/11/2018       0      34    0.00   -12.4
## 2986   4/4/2018       9    10.4   4/4/2018       0      81    0.36     7.2
## 1842 15/02/2018      17     2.4 15/02/2018       0      17    0.78   -20.2
## 3371 20/04/2018      10    18.2 20/04/2018       0      36    1.99     2.8
##      col 654 col 655 col 656 col 657 col 658 col 659 col 660 col 661 col 662
## 2463      14     Yes       0  Spring      43    18.3      14     705     705
## 2511      14     Yes       0  Spring      97    12.1      14     289     289
## 8718       5     Yes       0  Autumn      34     1.8       5     126     126
## 2986       9     Yes       0  Spring      81    10.4       9     378     378
## 1842      17     Yes       0  Winter      17     2.4      17     236     236
## 3371      10     Yes       0  Spring      36    18.2      10     708     708
##      col 663 col 664 col 665 col 666 col 667 col 668 col 669 col 670    col 671
## 2463     705     5.4     705       0       0      43  Spring      14 No Holiday
## 2511     289    11.6     289       0       0      97  Spring      14 No Holiday
## 8718     126   -12.4     126       0       0      34  Autumn       5 No Holiday
## 2986     378     7.2     378       0       0      81  Spring       9 No Holiday
## 1842     236   -20.2     236       0       0      17  Winter      17    Holiday
## 3371     708     2.8     708       0       0      36  Spring      10 No Holiday
##      col 672 col 673 col 674 col 675 col 676 col 677 col 678 col 679 col 680
## 2463      43    1509     2.2      14     Yes    2.43     5.4      14    2.43
## 2511      97     177     2.0      14     Yes    0.20    11.6      14    0.20
## 8718      34    1990     0.9       5     Yes    0.00   -12.4       5    0.00
## 2986      81    2000     1.4       9     Yes    0.36     7.2       9    0.36
## 1842      17    1990     3.1      17     Yes    0.78   -20.2      17    0.78
## 3371      36     620     1.0      10     Yes    1.99     2.8      10    1.99
##         col 681 col 682 col 683 col 684 col 685 col 686 col 687 col 688
## 2463 13/03/2018      14    1509     5.4    2.43       0      14     Yes
## 2511 15/03/2018      14     177    11.6    0.20       0      14     Yes
## 8718 29/11/2018       5    1990   -12.4    0.00       0       5     Yes
## 2986   4/4/2018       9    2000     7.2    0.36       0       9     Yes
## 1842 15/02/2018      17    1990   -20.2    0.78       0      17     Yes
## 3371 20/04/2018      10     620     2.8    1.99       0      10     Yes
##         col 689 col 690 col 691 col 692 col 693    col 694 col 695 col 696
## 2463 No Holiday    18.3     705       0       0 13/03/2018     2.2       0
## 2511 No Holiday    12.1     289       0       0 15/03/2018     2.0       0
## 8718 No Holiday     1.8     126       0       0 29/11/2018     0.9       0
## 2986 No Holiday    10.4     378       0       0   4/4/2018     1.4       0
## 1842    Holiday     2.4     236       0       0 15/02/2018     3.1       0
## 3371 No Holiday    18.2     708       0       0 20/04/2018     1.0       0
##      col 697 col 698 col 699 col 700 col 701 col 702 col 703 col 704 col 705
## 2463    18.3     705    2.43    1509    2.43       0       0       0     2.2
## 2511    12.1     289    0.20     177    0.20       0       0       0     2.0
## 8718     1.8     126    0.00    1990    0.00       0       0       0     0.9
## 2986    10.4     378    0.36    2000    0.36       0       0       0     1.4
## 1842     2.4     236    0.78    1990    0.78       0       0       0     3.1
## 3371    18.2     708    1.99     620    1.99       0       0       0     1.0
##         col 706 col 707 col 708 col 709 col 710 col 711 col 712 col 713 col 714
## 2463 13/03/2018    2.43     705      43     Yes      43     Yes  Spring     Yes
## 2511 15/03/2018    0.20     289      97     Yes      97     Yes  Spring     Yes
## 8718 29/11/2018    0.00     126      34     Yes      34     Yes  Autumn     Yes
## 2986   4/4/2018    0.36     378      81     Yes      81     Yes  Spring     Yes
## 1842 15/02/2018    0.78     236      17     Yes      17     Yes  Winter     Yes
## 3371 20/04/2018    1.99     708      36     Yes      36     Yes  Spring     Yes
##         col 715 col 716 col 717 col 718 col 719 col 720    col 721 col 722
## 2463 No Holiday      43      43     5.4    1509      43 No Holiday       0
## 2511 No Holiday      97      97    11.6     177      97 No Holiday       0
## 8718 No Holiday      34      34   -12.4    1990      34 No Holiday       0
## 2986 No Holiday      81      81     7.2    2000      81 No Holiday       0
## 1842    Holiday      17      17   -20.2    1990      17    Holiday       0
## 3371 No Holiday      36      36     2.8     620      36 No Holiday       0
##      col 723    col 724 col 725 col 726 col 727 col 728 col 729 col 730 col 731
## 2463    18.3 13/03/2018      43     5.4    18.3     2.2       0      14     705
## 2511    12.1 15/03/2018      97    11.6    12.1     2.0       0      14     289
## 8718     1.8 29/11/2018      34   -12.4     1.8     0.9       0       5     126
## 2986    10.4   4/4/2018      81     7.2    10.4     1.4       0       9     378
## 1842     2.4 15/02/2018      17   -20.2     2.4     3.1       0      17     236
## 3371    18.2 20/04/2018      36     2.8    18.2     1.0       0      10     708
##      col 732 col 733 col 734    col 735 col 736 col 737 col 738 col 739 col 740
## 2463    1509    18.3       0 13/03/2018     2.2     2.2    18.3       0      14
## 2511     177    12.1       0 15/03/2018     2.0     2.0    12.1       0      14
## 8718    1990     1.8       0 29/11/2018     0.9     0.9     1.8       0       5
## 2986    2000    10.4       0   4/4/2018     1.4     1.4    10.4       0       9
## 1842    1990     2.4       0 15/02/2018     3.1     3.1     2.4       0      17
## 3371     620    18.2       0 20/04/2018     1.0     1.0    18.2       0      10
##      col 741 col 742    col 743 col 744 col 745 col 746 col 747 col 748 col 749
## 2463     Yes  Spring 13/03/2018    1509       0     2.2    18.3    18.3      43
## 2511     Yes  Spring 15/03/2018     177       0     2.0    12.1    12.1      97
## 8718     Yes  Autumn 29/11/2018    1990       0     0.9     1.8     1.8      34
## 2986     Yes  Spring   4/4/2018    2000       0     1.4    10.4    10.4      81
## 1842     Yes  Winter 15/02/2018    1990       0     3.1     2.4     2.4      17
## 3371     Yes  Spring 20/04/2018     620       0     1.0    18.2    18.2      36
##      col 750 col 751 col 752 col 753 col 754 col 755 col 756    col 757
## 2463  Spring      14      14     5.4    18.3    2.43  Spring No Holiday
## 2511  Spring      14      14    11.6    12.1    0.20  Spring No Holiday
## 8718  Autumn       5       5   -12.4     1.8    0.00  Autumn No Holiday
## 2986  Spring       9       9     7.2    10.4    0.36  Spring No Holiday
## 1842  Winter      17      17   -20.2     2.4    0.78  Winter    Holiday
## 3371  Spring      10      10     2.8    18.2    1.99  Spring No Holiday
##         col 758 col 759    col 760 col 761 col 762 col 763 col 764 col 765
## 2463 13/03/2018  Spring No Holiday       0    18.3       0     705      14
## 2511 15/03/2018  Spring No Holiday       0    12.1       0     289      14
## 8718 29/11/2018  Autumn No Holiday       0     1.8       0     126       5
## 2986   4/4/2018  Spring No Holiday       0    10.4       0     378       9
## 1842 15/02/2018  Winter    Holiday       0     2.4       0     236      17
## 3371 20/04/2018  Spring No Holiday       0    18.2       0     708      10
##      col 766 col 767 col 768 col 769 col 770 col 771 col 772 col 773 col 774
## 2463     Yes       0     2.2    1509     Yes       0       0    18.3       0
## 2511     Yes       0     2.0     177     Yes       0       0    12.1       0
## 8718     Yes       0     0.9    1990     Yes       0       0     1.8       0
## 2986     Yes       0     1.4    2000     Yes       0       0    10.4       0
## 1842     Yes       0     3.1    1990     Yes       0       0     2.4       0
## 3371     Yes       0     1.0     620     Yes       0       0    18.2       0
##      col 775 col 776 col 777    col 778 col 779 col 780 col 781    col 782
## 2463    1509      14    1509 No Holiday       0     705  Spring No Holiday
## 2511     177      14     177 No Holiday       0     289  Spring No Holiday
## 8718    1990       5    1990 No Holiday       0     126  Autumn No Holiday
## 2986    2000       9    2000 No Holiday       0     378  Spring No Holiday
## 1842    1990      17    1990    Holiday       0     236  Winter    Holiday
## 3371     620      10     620 No Holiday       0     708  Spring No Holiday
##         col 783 col 784    col 785    col 786 col 787 col 788    col 789
## 2463 No Holiday     Yes 13/03/2018 No Holiday      14    2.43 No Holiday
## 2511 No Holiday     Yes 15/03/2018 No Holiday      14    0.20 No Holiday
## 8718 No Holiday     Yes 29/11/2018 No Holiday       5    0.00 No Holiday
## 2986 No Holiday     Yes   4/4/2018 No Holiday       9    0.36 No Holiday
## 1842    Holiday     Yes 15/02/2018    Holiday      17    0.78    Holiday
## 3371 No Holiday     Yes 20/04/2018 No Holiday      10    1.99 No Holiday
##      col 790 col 791 col 792 col 793 col 794 col 795 col 796 col 797    col 798
## 2463      14     Yes      14    2.43       0    18.3     5.4    18.3 13/03/2018
## 2511      14     Yes      14    0.20       0    12.1    11.6    12.1 15/03/2018
## 8718       5     Yes       5    0.00       0     1.8   -12.4     1.8 29/11/2018
## 2986       9     Yes       9    0.36       0    10.4     7.2    10.4   4/4/2018
## 1842      17     Yes      17    0.78       0     2.4   -20.2     2.4 15/02/2018
## 3371      10     Yes      10    1.99       0    18.2     2.8    18.2 20/04/2018
##      col 799 col 800 col 801 col 802    col 803 col 804 col 805 col 806 col 807
## 2463      14    1509    1509     2.2 13/03/2018  Spring  Spring    1509       0
## 2511      14     177     177     2.0 15/03/2018  Spring  Spring     177       0
## 8718       5    1990    1990     0.9 29/11/2018  Autumn  Autumn    1990       0
## 2986       9    2000    2000     1.4   4/4/2018  Spring  Spring    2000       0
## 1842      17    1990    1990     3.1 15/02/2018  Winter  Winter    1990       0
## 3371      10     620     620     1.0 20/04/2018  Spring  Spring     620       0
##      col 808 col 809 col 810 col 811 col 812 col 813 col 814 col 815    col 816
## 2463      14     5.4  Spring  Spring     2.2     705       0    2.43 13/03/2018
## 2511      14    11.6  Spring  Spring     2.0     289       0    0.20 15/03/2018
## 8718       5   -12.4  Autumn  Autumn     0.9     126       0    0.00 29/11/2018
## 2986       9     7.2  Spring  Spring     1.4     378       0    0.36   4/4/2018
## 1842      17   -20.2  Winter  Winter     3.1     236       0    0.78 15/02/2018
## 3371      10     2.8  Spring  Spring     1.0     708       0    1.99 20/04/2018
##      col 817 col 818 col 819 col 820 col 821 col 822 col 823 col 824 col 825
## 2463      43       0      43       0      43     705     2.2       0     2.2
## 2511      97       0      97       0      97     289     2.0       0     2.0
## 8718      34       0      34       0      34     126     0.9       0     0.9
## 2986      81       0      81       0      81     378     1.4       0     1.4
## 1842      17       0      17       0      17     236     3.1       0     3.1
## 3371      36       0      36       0      36     708     1.0       0     1.0
##      col 826 col 827 col 828    col 829 col 830 col 831 col 832 col 833 col 834
## 2463  Spring       0    18.3 No Holiday     5.4      14     Yes    18.3     Yes
## 2511  Spring       0    12.1 No Holiday    11.6      14     Yes    12.1     Yes
## 8718  Autumn       0     1.8 No Holiday   -12.4       5     Yes     1.8     Yes
## 2986  Spring       0    10.4 No Holiday     7.2       9     Yes    10.4     Yes
## 1842  Winter       0     2.4    Holiday   -20.2      17     Yes     2.4     Yes
## 3371  Spring       0    18.2 No Holiday     2.8      10     Yes    18.2     Yes
##         col 835 col 836 col 837 col 838 col 839 col 840 col 841 col 842 col 843
## 2463 13/03/2018    1509      43      43     2.2       0    1509       0     5.4
## 2511 15/03/2018     177      97      97     2.0       0     177       0    11.6
## 8718 29/11/2018    1990      34      34     0.9       0    1990       0   -12.4
## 2986   4/4/2018    2000      81      81     1.4       0    2000       0     7.2
## 1842 15/02/2018    1990      17      17     3.1       0    1990       0   -20.2
## 3371 20/04/2018     620      36      36     1.0       0     620       0     2.8
##      col 844 col 845 col 846    col 847 col 848 col 849    col 850 col 851
## 2463     705       0    1509 13/03/2018     Yes       0 No Holiday  Spring
## 2511     289       0     177 15/03/2018     Yes       0 No Holiday  Spring
## 8718     126       0    1990 29/11/2018     Yes       0 No Holiday  Autumn
## 2986     378       0    2000   4/4/2018     Yes       0 No Holiday  Spring
## 1842     236       0    1990 15/02/2018     Yes       0    Holiday  Winter
## 3371     708       0     620 20/04/2018     Yes       0 No Holiday  Spring
##      col 852 col 853 col 854 col 855 col 856 col 857 col 858 col 859 col 860
## 2463    18.3    1509     5.4       0     2.2      14    1509     705    1509
## 2511    12.1     177    11.6       0     2.0      14     177     289     177
## 8718     1.8    1990   -12.4       0     0.9       5    1990     126    1990
## 2986    10.4    2000     7.2       0     1.4       9    2000     378    2000
## 1842     2.4    1990   -20.2       0     3.1      17    1990     236    1990
## 3371    18.2     620     2.8       0     1.0      10     620     708     620
##      col 861 col 862 col 863 col 864 col 865 col 866    col 867 col 868 col 869
## 2463       0    2.43       0       0       0      14 13/03/2018     Yes     Yes
## 2511       0    0.20       0       0       0      14 15/03/2018     Yes     Yes
## 8718       0    0.00       0       0       0       5 29/11/2018     Yes     Yes
## 2986       0    0.36       0       0       0       9   4/4/2018     Yes     Yes
## 1842       0    0.78       0       0       0      17 15/02/2018     Yes     Yes
## 3371       0    1.99       0       0       0      10 20/04/2018     Yes     Yes
##      col 870    col 871 col 872 col 873 col 874 col 875 col 876 col 877
## 2463      14 No Holiday    2.43     5.4       0    2.43    1509       0
## 2511      14 No Holiday    0.20    11.6       0    0.20     177       0
## 8718       5 No Holiday    0.00   -12.4       0    0.00    1990       0
## 2986       9 No Holiday    0.36     7.2       0    0.36    2000       0
## 1842      17    Holiday    0.78   -20.2       0    0.78    1990       0
## 3371      10 No Holiday    1.99     2.8       0    1.99     620       0
##         col 878    col 879    col 880    col 881 col 882 col 883 col 884
## 2463 13/03/2018 13/03/2018 13/03/2018 No Holiday    1509    18.3    2.43
## 2511 15/03/2018 15/03/2018 15/03/2018 No Holiday     177    12.1    0.20
## 8718 29/11/2018 29/11/2018 29/11/2018 No Holiday    1990     1.8    0.00
## 2986   4/4/2018   4/4/2018   4/4/2018 No Holiday    2000    10.4    0.36
## 1842 15/02/2018 15/02/2018 15/02/2018    Holiday    1990     2.4    0.78
## 3371 20/04/2018 20/04/2018 20/04/2018 No Holiday     620    18.2    1.99
##      col 885 col 886    col 887 col 888 col 889 col 890    col 891 col 892
## 2463    1509     705 13/03/2018      43     2.2     5.4 13/03/2018      43
## 2511     177     289 15/03/2018      97     2.0    11.6 15/03/2018      97
## 8718    1990     126 29/11/2018      34     0.9   -12.4 29/11/2018      34
## 2986    2000     378   4/4/2018      81     1.4     7.2   4/4/2018      81
## 1842    1990     236 15/02/2018      17     3.1   -20.2 15/02/2018      17
## 3371     620     708 20/04/2018      36     1.0     2.8 20/04/2018      36
##      col 893 col 894 col 895 col 896 col 897 col 898 col 899 col 900 col 901
## 2463     5.4    1509       0     Yes      43     5.4     705     Yes      43
## 2511    11.6     177       0     Yes      97    11.6     289     Yes      97
## 8718   -12.4    1990       0     Yes      34   -12.4     126     Yes      34
## 2986     7.2    2000       0     Yes      81     7.2     378     Yes      81
## 1842   -20.2    1990       0     Yes      17   -20.2     236     Yes      17
## 3371     2.8     620       0     Yes      36     2.8     708     Yes      36
##         col 902    col 903 col 904 col 905 col 906 col 907 col 908 col 909
## 2463 No Holiday 13/03/2018     2.2    18.3      14  Spring    1509     5.4
## 2511 No Holiday 15/03/2018     2.0    12.1      14  Spring     177    11.6
## 8718 No Holiday 29/11/2018     0.9     1.8       5  Autumn    1990   -12.4
## 2986 No Holiday   4/4/2018     1.4    10.4       9  Spring    2000     7.2
## 1842    Holiday 15/02/2018     3.1     2.4      17  Winter    1990   -20.2
## 3371 No Holiday 20/04/2018     1.0    18.2      10  Spring     620     2.8
##      col 910 col 911    col 912    col 913 col 914 col 915    col 916 col 917
## 2463      43     5.4 No Holiday 13/03/2018      43     5.4 No Holiday  Spring
## 2511      97    11.6 No Holiday 15/03/2018      97    11.6 No Holiday  Spring
## 8718      34   -12.4 No Holiday 29/11/2018      34   -12.4 No Holiday  Autumn
## 2986      81     7.2 No Holiday   4/4/2018      81     7.2 No Holiday  Spring
## 1842      17   -20.2    Holiday 15/02/2018      17   -20.2    Holiday  Winter
## 3371      36     2.8 No Holiday 20/04/2018      36     2.8 No Holiday  Spring
##      col 918 col 919 col 920 col 921 col 922 col 923 col 924    col 925 col 926
## 2463    1509      43    1509     5.4       0      14       0 No Holiday     5.4
## 2511     177      97     177    11.6       0      14       0 No Holiday    11.6
## 8718    1990      34    1990   -12.4       0       5       0 No Holiday   -12.4
## 2986    2000      81    2000     7.2       0       9       0 No Holiday     7.2
## 1842    1990      17    1990   -20.2       0      17       0    Holiday   -20.2
## 3371     620      36     620     2.8       0      10       0 No Holiday     2.8
##      col 927 col 928 col 929 col 930 col 931    col 932 col 933 col 934 col 935
## 2463     705    18.3    1509     5.4    18.3 13/03/2018      14    2.43      43
## 2511     289    12.1     177    11.6    12.1 15/03/2018      14    0.20      97
## 8718     126     1.8    1990   -12.4     1.8 29/11/2018       5    0.00      34
## 2986     378    10.4    2000     7.2    10.4   4/4/2018       9    0.36      81
## 1842     236     2.4    1990   -20.2     2.4 15/02/2018      17    0.78      17
## 3371     708    18.2     620     2.8    18.2 20/04/2018      10    1.99      36
##      col 936 col 937 col 938 col 939 col 940 col 941 col 942 col 943 col 944
## 2463      14    1509      43  Spring    1509      43     5.4      14    18.3
## 2511      14     177      97  Spring     177      97    11.6      14    12.1
## 8718       5    1990      34  Autumn    1990      34   -12.4       5     1.8
## 2986       9    2000      81  Spring    2000      81     7.2       9    10.4
## 1842      17    1990      17  Winter    1990      17   -20.2      17     2.4
## 3371      10     620      36  Spring     620      36     2.8      10    18.2
##      col 945    col 946 col 947 col 948 col 949 col 950 col 951 col 952 col 953
## 2463      43 No Holiday     5.4       0       0     Yes    1509      43     2.2
## 2511      97 No Holiday    11.6       0       0     Yes     177      97     2.0
## 8718      34 No Holiday   -12.4       0       0     Yes    1990      34     0.9
## 2986      81 No Holiday     7.2       0       0     Yes    2000      81     1.4
## 1842      17    Holiday   -20.2       0       0     Yes    1990      17     3.1
## 3371      36 No Holiday     2.8       0       0     Yes     620      36     1.0
##      col 954 col 955 col 956 col 957 col 958 col 959 col 960 col 961    col 962
## 2463     5.4  Spring       0    18.3    18.3  Spring     Yes    18.3 No Holiday
## 2511    11.6  Spring       0    12.1    12.1  Spring     Yes    12.1 No Holiday
## 8718   -12.4  Autumn       0     1.8     1.8  Autumn     Yes     1.8 No Holiday
## 2986     7.2  Spring       0    10.4    10.4  Spring     Yes    10.4 No Holiday
## 1842   -20.2  Winter       0     2.4     2.4  Winter     Yes     2.4    Holiday
## 3371     2.8  Spring       0    18.2    18.2  Spring     Yes    18.2 No Holiday
##      col 963 col 964 col 965 col 966    col 967 col 968 col 969 col 970 col 971
## 2463       0    2.43     Yes       0 13/03/2018       0     Yes    2.43       0
## 2511       0    0.20     Yes       0 15/03/2018       0     Yes    0.20       0
## 8718       0    0.00     Yes       0 29/11/2018       0     Yes    0.00       0
## 2986       0    0.36     Yes       0   4/4/2018       0     Yes    0.36       0
## 1842       0    0.78     Yes       0 15/02/2018       0     Yes    0.78       0
## 3371       0    1.99     Yes       0 20/04/2018       0     Yes    1.99       0
##      col 972 col 973 col 974 col 975 col 976 col 977 col 978 col 979 col 980
## 2463    18.3       0     5.4    1509     Yes     705     705    1509     5.4
## 2511    12.1       0    11.6     177     Yes     289     289     177    11.6
## 8718     1.8       0   -12.4    1990     Yes     126     126    1990   -12.4
## 2986    10.4       0     7.2    2000     Yes     378     378    2000     7.2
## 1842     2.4       0   -20.2    1990     Yes     236     236    1990   -20.2
## 3371    18.2       0     2.8     620     Yes     708     708     620     2.8
##      col 981    col 982 col 983 col 984    col 985 col 986 col 987 col 988
## 2463       0 No Holiday     2.2     5.4 13/03/2018    1509      14     705
## 2511       0 No Holiday     2.0    11.6 15/03/2018     177      14     289
## 8718       0 No Holiday     0.9   -12.4 29/11/2018    1990       5     126
## 2986       0 No Holiday     1.4     7.2   4/4/2018    2000       9     378
## 1842       0    Holiday     3.1   -20.2 15/02/2018    1990      17     236
## 3371       0 No Holiday     1.0     2.8 20/04/2018     620      10     708
##      col 989 col 990 col 991 col 992 col 993    col 994 col 995 col 996 col 997
## 2463     Yes     Yes     2.2    2.43       0 No Holiday    2.43     5.4    1509
## 2511     Yes     Yes     2.0    0.20       0 No Holiday    0.20    11.6     177
## 8718     Yes     Yes     0.9    0.00       0 No Holiday    0.00   -12.4    1990
## 2986     Yes     Yes     1.4    0.36       0 No Holiday    0.36     7.2    2000
## 1842     Yes     Yes     3.1    0.78       0    Holiday    0.78   -20.2    1990
## 3371     Yes     Yes     1.0    1.99       0 No Holiday    1.99     2.8     620
##      col 998    col 999 col 1000 col 1001 col 1002 col 1003 col 1004 col 1005
## 2463      43 No Holiday      Yes     1509     18.3     18.3     1509       14
## 2511      97 No Holiday      Yes      177     12.1     12.1      177       14
## 8718      34 No Holiday      Yes     1990      1.8      1.8     1990        5
## 2986      81 No Holiday      Yes     2000     10.4     10.4     2000        9
## 1842      17    Holiday      Yes     1990      2.4      2.4     1990       17
## 3371      36 No Holiday      Yes      620     18.2     18.2      620       10
##      col 1006 col 1007 col 1008 col 1009 col 1010 col 1011 col 1012 col 1013
## 2463      Yes      705     2.43        0     1509       14   Spring      5.4
## 2511      Yes      289     0.20        0      177       14   Spring     11.6
## 8718      Yes      126     0.00        0     1990        5   Autumn    -12.4
## 2986      Yes      378     0.36        0     2000        9   Spring      7.2
## 1842      Yes      236     0.78        0     1990       17   Winter    -20.2
## 3371      Yes      708     1.99        0      620       10   Spring      2.8
##      col 1014 col 1015 col 1016 col 1017 col 1018 col 1019 col 1020 col 1021
## 2463      5.4      Yes      Yes      2.2     1509      5.4      Yes      705
## 2511     11.6      Yes      Yes      2.0      177     11.6      Yes      289
## 8718    -12.4      Yes      Yes      0.9     1990    -12.4      Yes      126
## 2986      7.2      Yes      Yes      1.4     2000      7.2      Yes      378
## 1842    -20.2      Yes      Yes      3.1     1990    -20.2      Yes      236
## 3371      2.8      Yes      Yes      1.0      620      2.8      Yes      708
##        col 1022 col 1023 col 1024 col 1025 col 1026 col 1027 col 1028 col 1029
## 2463 13/03/2018     18.3     1509     18.3        0     1509     18.3       14
## 2511 15/03/2018     12.1      177     12.1        0      177     12.1       14
## 8718 29/11/2018      1.8     1990      1.8        0     1990      1.8        5
## 2986   4/4/2018     10.4     2000     10.4        0     2000     10.4        9
## 1842 15/02/2018      2.4     1990      2.4        0     1990      2.4       17
## 3371 20/04/2018     18.2      620     18.2        0      620     18.2       10
##      col 1030 col 1031 col 1032 col 1033 col 1034 col 1035 col 1036 col 1037
## 2463      705      2.2   Spring      705       43       43     18.3     1509
## 2511      289      2.0   Spring      289       97       97     12.1      177
## 8718      126      0.9   Autumn      126       34       34      1.8     1990
## 2986      378      1.4   Spring      378       81       81     10.4     2000
## 1842      236      3.1   Winter      236       17       17      2.4     1990
## 3371      708      1.0   Spring      708       36       36     18.2      620
##      col 1038 col 1039 col 1040 col 1041 col 1042 col 1043 col 1044 col 1045
## 2463       14     18.3        0     2.43       14      705       43   Spring
## 2511       14     12.1        0     0.20       14      289       97   Spring
## 8718        5      1.8        0     0.00        5      126       34   Autumn
## 2986        9     10.4        0     0.36        9      378       81   Spring
## 1842       17      2.4        0     0.78       17      236       17   Winter
## 3371       10     18.2        0     1.99       10      708       36   Spring
##      col 1046 col 1047 col 1048 col 1049   col 1050 col 1051 col 1052 col 1053
## 2463      5.4       43     2.43       43 No Holiday     1509     18.3      2.2
## 2511     11.6       97     0.20       97 No Holiday      177     12.1      2.0
## 8718    -12.4       34     0.00       34 No Holiday     1990      1.8      0.9
## 2986      7.2       81     0.36       81 No Holiday     2000     10.4      1.4
## 1842    -20.2       17     0.78       17    Holiday     1990      2.4      3.1
## 3371      2.8       36     1.99       36 No Holiday      620     18.2      1.0
##      col 1054   col 1055 col 1056 col 1057 col 1058 col 1059 col 1060
## 2463        0 No Holiday       43      5.4     18.3     1509      5.4
## 2511        0 No Holiday       97     11.6     12.1      177     11.6
## 8718        0 No Holiday       34    -12.4      1.8     1990    -12.4
## 2986        0 No Holiday       81      7.2     10.4     2000      7.2
## 1842        0    Holiday       17    -20.2      2.4     1990    -20.2
## 3371        0 No Holiday       36      2.8     18.2      620      2.8
##        col 1061 col 1062 col 1063 col 1064 col 1065 col 1066   col 1067
## 2463 No Holiday       14      2.2     18.3       14   Spring 13/03/2018
## 2511 No Holiday       14      2.0     12.1       14   Spring 15/03/2018
## 8718 No Holiday        5      0.9      1.8        5   Autumn 29/11/2018
## 2986 No Holiday        9      1.4     10.4        9   Spring   4/4/2018
## 1842    Holiday       17      3.1      2.4       17   Winter 15/02/2018
## 3371 No Holiday       10      1.0     18.2       10   Spring 20/04/2018
##      col 1068 col 1069 col 1070 col 1071 col 1072 col 1073 col 1074 col 1075
## 2463        0      5.4     2.43       14      705        0     18.3        0
## 2511        0     11.6     0.20       14      289        0     12.1        0
## 8718        0    -12.4     0.00        5      126        0      1.8        0
## 2986        0      7.2     0.36        9      378        0     10.4        0
## 1842        0    -20.2     0.78       17      236        0      2.4        0
## 3371        0      2.8     1.99       10      708        0     18.2        0
##      col 1076 col 1077 col 1078 col 1079   col 1080 col 1081 col 1082
## 2463   Spring        0   Spring      5.4 13/03/2018   Spring      5.4
## 2511   Spring        0   Spring     11.6 15/03/2018   Spring     11.6
## 8718   Autumn        0   Autumn    -12.4 29/11/2018   Autumn    -12.4
## 2986   Spring        0   Spring      7.2   4/4/2018   Spring      7.2
## 1842   Winter        0   Winter    -20.2 15/02/2018   Winter    -20.2
## 3371   Spring        0   Spring      2.8 20/04/2018   Spring      2.8
##        col 1083 col 1084   col 1085 col 1086 col 1087 col 1088 col 1089
## 2463 13/03/2018      705 13/03/2018       14        0      2.2     2.43
## 2511 15/03/2018      289 15/03/2018       14        0      2.0     0.20
## 8718 29/11/2018      126 29/11/2018        5        0      0.9     0.00
## 2986   4/4/2018      378   4/4/2018        9        0      1.4     0.36
## 1842 15/02/2018      236 15/02/2018       17        0      3.1     0.78
## 3371 20/04/2018      708 20/04/2018       10        0      1.0     1.99
##      col 1090 col 1091 col 1092 col 1093 col 1094 col 1095 col 1096   col 1097
## 2463        0        0   Spring      705      Yes       14      5.4 13/03/2018
## 2511        0        0   Spring      289      Yes       14     11.6 15/03/2018
## 8718        0        0   Autumn      126      Yes        5    -12.4 29/11/2018
## 2986        0        0   Spring      378      Yes        9      7.2   4/4/2018
## 1842        0        0   Winter      236      Yes       17    -20.2 15/02/2018
## 3371        0        0   Spring      708      Yes       10      2.8 20/04/2018
##      col 1098 col 1099 col 1100   col 1101 col 1102 col 1103 col 1104 col 1105
## 2463        0     1509     2.43 13/03/2018        0        0       14        0
## 2511        0      177     0.20 15/03/2018        0        0       14        0
## 8718        0     1990     0.00 29/11/2018        0        0        5        0
## 2986        0     2000     0.36   4/4/2018        0        0        9        0
## 1842        0     1990     0.78 15/02/2018        0        0       17        0
## 3371        0      620     1.99 20/04/2018        0        0       10        0
##        col 1106   col 1107 col 1108 col 1109   col 1110 col 1111 col 1112
## 2463 13/03/2018 No Holiday        0      Yes No Holiday      Yes     18.3
## 2511 15/03/2018 No Holiday        0      Yes No Holiday      Yes     12.1
## 8718 29/11/2018 No Holiday        0      Yes No Holiday      Yes      1.8
## 2986   4/4/2018 No Holiday        0      Yes No Holiday      Yes     10.4
## 1842 15/02/2018    Holiday        0      Yes    Holiday      Yes      2.4
## 3371 20/04/2018 No Holiday        0      Yes No Holiday      Yes     18.2
##      col 1113 col 1114 col 1115 col 1116 col 1117   col 1118 col 1119 col 1120
## 2463      2.2     2.43      5.4     18.3     1509 13/03/2018        0       43
## 2511      2.0     0.20     11.6     12.1      177 15/03/2018        0       97
## 8718      0.9     0.00    -12.4      1.8     1990 29/11/2018        0       34
## 2986      1.4     0.36      7.2     10.4     2000   4/4/2018        0       81
## 1842      3.1     0.78    -20.2      2.4     1990 15/02/2018        0       17
## 3371      1.0     1.99      2.8     18.2      620 20/04/2018        0       36
##      col 1121   col 1122   col 1123   col 1124   col 1125 col 1126 col 1127
## 2463        0 No Holiday 13/03/2018 No Holiday 13/03/2018      5.4       14
## 2511        0 No Holiday 15/03/2018 No Holiday 15/03/2018     11.6       14
## 8718        0 No Holiday 29/11/2018 No Holiday 29/11/2018    -12.4        5
## 2986        0 No Holiday   4/4/2018 No Holiday   4/4/2018      7.2        9
## 1842        0    Holiday 15/02/2018    Holiday 15/02/2018    -20.2       17
## 3371        0 No Holiday 20/04/2018 No Holiday 20/04/2018      2.8       10
##      col 1128 col 1129 col 1130   col 1131   col 1132 col 1133 col 1134
## 2463       14      5.4      705 13/03/2018 13/03/2018     1509       14
## 2511       14     11.6      289 15/03/2018 15/03/2018      177       14
## 8718        5    -12.4      126 29/11/2018 29/11/2018     1990        5
## 2986        9      7.2      378   4/4/2018   4/4/2018     2000        9
## 1842       17    -20.2      236 15/02/2018 15/02/2018     1990       17
## 3371       10      2.8      708 20/04/2018 20/04/2018      620       10
##      col 1135 col 1136 col 1137 col 1138 col 1139 col 1140 col 1141 col 1142
## 2463     18.3        0     18.3     1509      2.2        0     18.3     1509
## 2511     12.1        0     12.1      177      2.0        0     12.1      177
## 8718      1.8        0      1.8     1990      0.9        0      1.8     1990
## 2986     10.4        0     10.4     2000      1.4        0     10.4     2000
## 1842      2.4        0      2.4     1990      3.1        0      2.4     1990
## 3371     18.2        0     18.2      620      1.0        0     18.2      620
##      col 1143   col 1144 col 1145 col 1146 col 1147 col 1148 col 1149 col 1150
## 2463       14 No Holiday   Spring      2.2      705      5.4       14      5.4
## 2511       14 No Holiday   Spring      2.0      289     11.6       14     11.6
## 8718        5 No Holiday   Autumn      0.9      126    -12.4        5    -12.4
## 2986        9 No Holiday   Spring      1.4      378      7.2        9      7.2
## 1842       17    Holiday   Winter      3.1      236    -20.2       17    -20.2
## 3371       10 No Holiday   Spring      1.0      708      2.8       10      2.8
##      col 1151 col 1152 col 1153 col 1154 col 1155 col 1156 col 1157 col 1158
## 2463     18.3        0       14        0       14      5.4     18.3      5.4
## 2511     12.1        0       14        0       14     11.6     12.1     11.6
## 8718      1.8        0        5        0        5    -12.4      1.8    -12.4
## 2986     10.4        0        9        0        9      7.2     10.4      7.2
## 1842      2.4        0       17        0       17    -20.2      2.4    -20.2
## 3371     18.2        0       10        0       10      2.8     18.2      2.8
##        col 1159 col 1160 col 1161 col 1162 col 1163 col 1164   col 1165
## 2463 No Holiday        0     1509     1509       43   Spring No Holiday
## 2511 No Holiday        0      177      177       97   Spring No Holiday
## 8718 No Holiday        0     1990     1990       34   Autumn No Holiday
## 2986 No Holiday        0     2000     2000       81   Spring No Holiday
## 1842    Holiday        0     1990     1990       17   Winter    Holiday
## 3371 No Holiday        0      620      620       36   Spring No Holiday
##      col 1166 col 1167 col 1168 col 1169 col 1170 col 1171   col 1172
## 2463   Spring        0     18.3     18.3       14      705 13/03/2018
## 2511   Spring        0     12.1     12.1       14      289 15/03/2018
## 8718   Autumn        0      1.8      1.8        5      126 29/11/2018
## 2986   Spring        0     10.4     10.4        9      378   4/4/2018
## 1842   Winter        0      2.4      2.4       17      236 15/02/2018
## 3371   Spring        0     18.2     18.2       10      708 20/04/2018
##        col 1173 col 1174 col 1175 col 1176 col 1177   col 1178   col 1179
## 2463 13/03/2018     2.43       43       14        0 13/03/2018 13/03/2018
## 2511 15/03/2018     0.20       97       14        0 15/03/2018 15/03/2018
## 8718 29/11/2018     0.00       34        5        0 29/11/2018 29/11/2018
## 2986   4/4/2018     0.36       81        9        0   4/4/2018   4/4/2018
## 1842 15/02/2018     0.78       17       17        0 15/02/2018 15/02/2018
## 3371 20/04/2018     1.99       36       10        0 20/04/2018 20/04/2018
##        col 1180 col 1181 col 1182 col 1183 col 1184 col 1185 col 1186 col 1187
## 2463 No Holiday      2.2      Yes   Spring      5.4      705     1509       14
## 2511 No Holiday      2.0      Yes   Spring     11.6      289      177       14
## 8718 No Holiday      0.9      Yes   Autumn    -12.4      126     1990        5
## 2986 No Holiday      1.4      Yes   Spring      7.2      378     2000        9
## 1842    Holiday      3.1      Yes   Winter    -20.2      236     1990       17
## 3371 No Holiday      1.0      Yes   Spring      2.8      708      620       10
##      col 1188 col 1189 col 1190 col 1191 col 1192 col 1193 col 1194   col 1195
## 2463     1509     2.43   Spring      2.2     2.43     1509      2.2 No Holiday
## 2511      177     0.20   Spring      2.0     0.20      177      2.0 No Holiday
## 8718     1990     0.00   Autumn      0.9     0.00     1990      0.9 No Holiday
## 2986     2000     0.36   Spring      1.4     0.36     2000      1.4 No Holiday
## 1842     1990     0.78   Winter      3.1     0.78     1990      3.1    Holiday
## 3371      620     1.99   Spring      1.0     1.99      620      1.0 No Holiday
##      col 1196 col 1197 col 1198 col 1199 col 1200 col 1201 col 1202 col 1203
## 2463        0     18.3      Yes     2.43        0      5.4      5.4      Yes
## 2511        0     12.1      Yes     0.20        0     11.6     11.6      Yes
## 8718        0      1.8      Yes     0.00        0    -12.4    -12.4      Yes
## 2986        0     10.4      Yes     0.36        0      7.2      7.2      Yes
## 1842        0      2.4      Yes     0.78        0    -20.2    -20.2      Yes
## 3371        0     18.2      Yes     1.99        0      2.8      2.8      Yes
##      col 1204   col 1205 col 1206 col 1207 col 1208 col 1209 col 1210 col 1211
## 2463      5.4 13/03/2018   Spring   Spring      Yes        0   Spring      Yes
## 2511     11.6 15/03/2018   Spring   Spring      Yes        0   Spring      Yes
## 8718    -12.4 29/11/2018   Autumn   Autumn      Yes        0   Autumn      Yes
## 2986      7.2   4/4/2018   Spring   Spring      Yes        0   Spring      Yes
## 1842    -20.2 15/02/2018   Winter   Winter      Yes        0   Winter      Yes
## 3371      2.8 20/04/2018   Spring   Spring      Yes        0   Spring      Yes
##      col 1212 col 1213 col 1214   col 1215   col 1216 col 1217 col 1218
## 2463   Spring        0       43 No Holiday 13/03/2018        0   Spring
## 2511   Spring        0       97 No Holiday 15/03/2018        0   Spring
## 8718   Autumn        0       34 No Holiday 29/11/2018        0   Autumn
## 2986   Spring        0       81 No Holiday   4/4/2018        0   Spring
## 1842   Winter        0       17    Holiday 15/02/2018        0   Winter
## 3371   Spring        0       36 No Holiday 20/04/2018        0   Spring
##      col 1219 col 1220 col 1221 col 1222 col 1223   col 1224 col 1225 col 1226
## 2463      705        0      2.2        0      705 13/03/2018      5.4        0
## 2511      289        0      2.0        0      289 15/03/2018     11.6        0
## 8718      126        0      0.9        0      126 29/11/2018    -12.4        0
## 2986      378        0      1.4        0      378   4/4/2018      7.2        0
## 1842      236        0      3.1        0      236 15/02/2018    -20.2        0
## 3371      708        0      1.0        0      708 20/04/2018      2.8        0
##      col 1227 col 1228 col 1229   col 1230 col 1231 col 1232 col 1233
## 2463        0      2.2      2.2 No Holiday        0     1509       14
## 2511        0      2.0      2.0 No Holiday        0      177       14
## 8718        0      0.9      0.9 No Holiday        0     1990        5
## 2986        0      1.4      1.4 No Holiday        0     2000        9
## 1842        0      3.1      3.1    Holiday        0     1990       17
## 3371        0      1.0      1.0 No Holiday        0      620       10
##        col 1234 col 1235 col 1236   col 1237 col 1238 col 1239 col 1240
## 2463 No Holiday       43       43 No Holiday        0      5.4       43
## 2511 No Holiday       97       97 No Holiday        0     11.6       97
## 8718 No Holiday       34       34 No Holiday        0    -12.4       34
## 2986 No Holiday       81       81 No Holiday        0      7.2       81
## 1842    Holiday       17       17    Holiday        0    -20.2       17
## 3371 No Holiday       36       36 No Holiday        0      2.8       36
##      col 1241 col 1242   col 1243 col 1244 col 1245 col 1246 col 1247 col 1248
## 2463       43      705 No Holiday      705      2.2     1509        0     2.43
## 2511       97      289 No Holiday      289      2.0      177        0     0.20
## 8718       34      126 No Holiday      126      0.9     1990        0     0.00
## 2986       81      378 No Holiday      378      1.4     2000        0     0.36
## 1842       17      236    Holiday      236      3.1     1990        0     0.78
## 3371       36      708 No Holiday      708      1.0      620        0     1.99
##      col 1249   col 1250 col 1251 col 1252 col 1253 col 1254 col 1255 col 1256
## 2463     2.43 13/03/2018     18.3     1509      5.4      Yes        0     2.43
## 2511     0.20 15/03/2018     12.1      177     11.6      Yes        0     0.20
## 8718     0.00 29/11/2018      1.8     1990    -12.4      Yes        0     0.00
## 2986     0.36   4/4/2018     10.4     2000      7.2      Yes        0     0.36
## 1842     0.78 15/02/2018      2.4     1990    -20.2      Yes        0     0.78
## 3371     1.99 20/04/2018     18.2      620      2.8      Yes        0     1.99
##      col 1257 col 1258 col 1259 col 1260 col 1261 col 1262 col 1263 col 1264
## 2463      705       43     2.43        0     18.3   Spring      705      2.2
## 2511      289       97     0.20        0     12.1   Spring      289      2.0
## 8718      126       34     0.00        0      1.8   Autumn      126      0.9
## 2986      378       81     0.36        0     10.4   Spring      378      1.4
## 1842      236       17     0.78        0      2.4   Winter      236      3.1
## 3371      708       36     1.99        0     18.2   Spring      708      1.0
##      col 1265   col 1266 col 1267 col 1268   col 1269 col 1270 col 1271
## 2463        0 No Holiday      705      2.2 No Holiday       43   Spring
## 2511        0 No Holiday      289      2.0 No Holiday       97   Spring
## 8718        0 No Holiday      126      0.9 No Holiday       34   Autumn
## 2986        0 No Holiday      378      1.4 No Holiday       81   Spring
## 1842        0    Holiday      236      3.1    Holiday       17   Winter
## 3371        0 No Holiday      708      1.0 No Holiday       36   Spring
##      col 1272 col 1273 col 1274 col 1275 col 1276 col 1277 col 1278 col 1279
## 2463       14     18.3     18.3     2.43      Yes     2.43      705     18.3
## 2511       14     12.1     12.1     0.20      Yes     0.20      289     12.1
## 8718        5      1.8      1.8     0.00      Yes     0.00      126      1.8
## 2986        9     10.4     10.4     0.36      Yes     0.36      378     10.4
## 1842       17      2.4      2.4     0.78      Yes     0.78      236      2.4
## 3371       10     18.2     18.2     1.99      Yes     1.99      708     18.2
##        col 1280 col 1281 col 1282 col 1283   col 1284 col 1285 col 1286
## 2463 13/03/2018       43       43     18.3 No Holiday      705       14
## 2511 15/03/2018       97       97     12.1 No Holiday      289       14
## 8718 29/11/2018       34       34      1.8 No Holiday      126        5
## 2986   4/4/2018       81       81     10.4 No Holiday      378        9
## 1842 15/02/2018       17       17      2.4    Holiday      236       17
## 3371 20/04/2018       36       36     18.2 No Holiday      708       10
##      col 1287 col 1288   col 1289 col 1290 col 1291 col 1292 col 1293 col 1294
## 2463     2.43     1509 No Holiday       43     18.3     1509     2.43     18.3
## 2511     0.20      177 No Holiday       97     12.1      177     0.20     12.1
## 8718     0.00     1990 No Holiday       34      1.8     1990     0.00      1.8
## 2986     0.36     2000 No Holiday       81     10.4     2000     0.36     10.4
## 1842     0.78     1990    Holiday       17      2.4     1990     0.78      2.4
## 3371     1.99      620 No Holiday       36     18.2      620     1.99     18.2
##      col 1295 col 1296 col 1297 col 1298 col 1299 col 1300 col 1301 col 1302
## 2463        0     18.3     2.43     18.3      Yes     2.43      2.2     18.3
## 2511        0     12.1     0.20     12.1      Yes     0.20      2.0     12.1
## 8718        0      1.8     0.00      1.8      Yes     0.00      0.9      1.8
## 2986        0     10.4     0.36     10.4      Yes     0.36      1.4     10.4
## 1842        0      2.4     0.78      2.4      Yes     0.78      3.1      2.4
## 3371        0     18.2     1.99     18.2      Yes     1.99      1.0     18.2
##      col 1303 col 1304 col 1305 col 1306 col 1307 col 1308 col 1309 col 1310
## 2463      5.4     18.3     1509      Yes      5.4     2.43      2.2   Spring
## 2511     11.6     12.1      177      Yes     11.6     0.20      2.0   Spring
## 8718    -12.4      1.8     1990      Yes    -12.4     0.00      0.9   Autumn
## 2986      7.2     10.4     2000      Yes      7.2     0.36      1.4   Spring
## 1842    -20.2      2.4     1990      Yes    -20.2     0.78      3.1   Winter
## 3371      2.8     18.2      620      Yes      2.8     1.99      1.0   Spring
##        col 1311 col 1312 col 1313   col 1314 col 1315 col 1316 col 1317
## 2463 No Holiday     18.3      705 13/03/2018      705       43     1509
## 2511 No Holiday     12.1      289 15/03/2018      289       97      177
## 8718 No Holiday      1.8      126 29/11/2018      126       34     1990
## 2986 No Holiday     10.4      378   4/4/2018      378       81     2000
## 1842    Holiday      2.4      236 15/02/2018      236       17     1990
## 3371 No Holiday     18.2      708 20/04/2018      708       36      620
##      col 1318 col 1319 col 1320 col 1321 col 1322 col 1323 col 1324 col 1325
## 2463       14        0       43     1509     2.43        0     1509        0
## 2511       14        0       97      177     0.20        0      177        0
## 8718        5        0       34     1990     0.00        0     1990        0
## 2986        9        0       81     2000     0.36        0     2000        0
## 1842       17        0       17     1990     0.78        0     1990        0
## 3371       10        0       36      620     1.99        0      620        0
##        col 1326 col 1327 col 1328   col 1329 col 1330 col 1331 col 1332
## 2463 No Holiday     18.3   Spring 13/03/2018      2.2       14       43
## 2511 No Holiday     12.1   Spring 15/03/2018      2.0       14       97
## 8718 No Holiday      1.8   Autumn 29/11/2018      0.9        5       34
## 2986 No Holiday     10.4   Spring   4/4/2018      1.4        9       81
## 1842    Holiday      2.4   Winter 15/02/2018      3.1       17       17
## 3371 No Holiday     18.2   Spring 20/04/2018      1.0       10       36
##        col 1333 col 1334 col 1335 col 1336 col 1337 col 1338 col 1339 col 1340
## 2463 13/03/2018      5.4      705      2.2       43      705      Yes      Yes
## 2511 15/03/2018     11.6      289      2.0       97      289      Yes      Yes
## 8718 29/11/2018    -12.4      126      0.9       34      126      Yes      Yes
## 2986   4/4/2018      7.2      378      1.4       81      378      Yes      Yes
## 1842 15/02/2018    -20.2      236      3.1       17      236      Yes      Yes
## 3371 20/04/2018      2.8      708      1.0       36      708      Yes      Yes
##      col 1341   col 1342 col 1343 col 1344 col 1345 col 1346 col 1347 col 1348
## 2463      705 No Holiday        0      Yes     18.3      5.4     1509       43
## 2511      289 No Holiday        0      Yes     12.1     11.6      177       97
## 8718      126 No Holiday        0      Yes      1.8    -12.4     1990       34
## 2986      378 No Holiday        0      Yes     10.4      7.2     2000       81
## 1842      236    Holiday        0      Yes      2.4    -20.2     1990       17
## 3371      708 No Holiday        0      Yes     18.2      2.8      620       36
##      col 1349   col 1350 col 1351 col 1352 col 1353   col 1354 col 1355
## 2463      705 13/03/2018     18.3     18.3        0 13/03/2018     18.3
## 2511      289 15/03/2018     12.1     12.1        0 15/03/2018     12.1
## 8718      126 29/11/2018      1.8      1.8        0 29/11/2018      1.8
## 2986      378   4/4/2018     10.4     10.4        0   4/4/2018     10.4
## 1842      236 15/02/2018      2.4      2.4        0 15/02/2018      2.4
## 3371      708 20/04/2018     18.2     18.2        0 20/04/2018     18.2
##      col 1356 col 1357 col 1358 col 1359 col 1360   col 1361   col 1362
## 2463      2.2      5.4     18.3   Spring        0 13/03/2018 13/03/2018
## 2511      2.0     11.6     12.1   Spring        0 15/03/2018 15/03/2018
## 8718      0.9    -12.4      1.8   Autumn        0 29/11/2018 29/11/2018
## 2986      1.4      7.2     10.4   Spring        0   4/4/2018   4/4/2018
## 1842      3.1    -20.2      2.4   Winter        0 15/02/2018 15/02/2018
## 3371      1.0      2.8     18.2   Spring        0 20/04/2018 20/04/2018
##      col 1363 col 1364 col 1365 col 1366 col 1367   col 1368   col 1369
## 2463     1509   Spring     2.43   Spring   Spring No Holiday 13/03/2018
## 2511      177   Spring     0.20   Spring   Spring No Holiday 15/03/2018
## 8718     1990   Autumn     0.00   Autumn   Autumn No Holiday 29/11/2018
## 2986     2000   Spring     0.36   Spring   Spring No Holiday   4/4/2018
## 1842     1990   Winter     0.78   Winter   Winter    Holiday 15/02/2018
## 3371      620   Spring     1.99   Spring   Spring No Holiday 20/04/2018
##      col 1370 col 1371 col 1372 col 1373   col 1374 col 1375 col 1376 col 1377
## 2463       43      5.4        0   Spring 13/03/2018      705     2.43      2.2
## 2511       97     11.6        0   Spring 15/03/2018      289     0.20      2.0
## 8718       34    -12.4        0   Autumn 29/11/2018      126     0.00      0.9
## 2986       81      7.2        0   Spring   4/4/2018      378     0.36      1.4
## 1842       17    -20.2        0   Winter 15/02/2018      236     0.78      3.1
## 3371       36      2.8        0   Spring 20/04/2018      708     1.99      1.0
##      col 1378 col 1379   col 1380   col 1381 col 1382 col 1383 col 1384
## 2463     2.43     2.43 No Holiday 13/03/2018        0      705      5.4
## 2511     0.20     0.20 No Holiday 15/03/2018        0      289     11.6
## 8718     0.00     0.00 No Holiday 29/11/2018        0      126    -12.4
## 2986     0.36     0.36 No Holiday   4/4/2018        0      378      7.2
## 1842     0.78     0.78    Holiday 15/02/2018        0      236    -20.2
## 3371     1.99     1.99 No Holiday 20/04/2018        0      708      2.8
##      col 1385   col 1386 col 1387   col 1388 col 1389   col 1390 col 1391
## 2463       14 No Holiday       43 13/03/2018      2.2 13/03/2018       14
## 2511       14 No Holiday       97 15/03/2018      2.0 15/03/2018       14
## 8718        5 No Holiday       34 29/11/2018      0.9 29/11/2018        5
## 2986        9 No Holiday       81   4/4/2018      1.4   4/4/2018        9
## 1842       17    Holiday       17 15/02/2018      3.1 15/02/2018       17
## 3371       10 No Holiday       36 20/04/2018      1.0 20/04/2018       10
##      col 1392 col 1393 col 1394 col 1395 col 1396 col 1397 col 1398 col 1399
## 2463      Yes      2.2      5.4     18.3     2.43     1509      2.2     1509
## 2511      Yes      2.0     11.6     12.1     0.20      177      2.0      177
## 8718      Yes      0.9    -12.4      1.8     0.00     1990      0.9     1990
## 2986      Yes      1.4      7.2     10.4     0.36     2000      1.4     2000
## 1842      Yes      3.1    -20.2      2.4     0.78     1990      3.1     1990
## 3371      Yes      1.0      2.8     18.2     1.99      620      1.0      620
##      col 1400 col 1401 col 1402   col 1403 col 1404 col 1405 col 1406 col 1407
## 2463       14     2.43      5.4 No Holiday        0        0     2.43        0
## 2511       14     0.20     11.6 No Holiday        0        0     0.20        0
## 8718        5     0.00    -12.4 No Holiday        0        0     0.00        0
## 2986        9     0.36      7.2 No Holiday        0        0     0.36        0
## 1842       17     0.78    -20.2    Holiday        0        0     0.78        0
## 3371       10     1.99      2.8 No Holiday        0        0     1.99        0
##      col 1408   col 1409   col 1410 col 1411 col 1412 col 1413 col 1414
## 2463        0 13/03/2018 No Holiday      705        0       43       43
## 2511        0 15/03/2018 No Holiday      289        0       97       97
## 8718        0 29/11/2018 No Holiday      126        0       34       34
## 2986        0   4/4/2018 No Holiday      378        0       81       81
## 1842        0 15/02/2018    Holiday      236        0       17       17
## 3371        0 20/04/2018 No Holiday      708        0       36       36
##      col 1415 col 1416 col 1417 col 1418 col 1419 col 1420 col 1421 col 1422
## 2463        0      705        0       43      5.4       43     18.3      2.2
## 2511        0      289        0       97     11.6       97     12.1      2.0
## 8718        0      126        0       34    -12.4       34      1.8      0.9
## 2986        0      378        0       81      7.2       81     10.4      1.4
## 1842        0      236        0       17    -20.2       17      2.4      3.1
## 3371        0      708        0       36      2.8       36     18.2      1.0
##      col 1423 col 1424 col 1425 col 1426 col 1427   col 1428 col 1429 col 1430
## 2463       43     2.43        0      705      705 13/03/2018        0       14
## 2511       97     0.20        0      289      289 15/03/2018        0       14
## 8718       34     0.00        0      126      126 29/11/2018        0        5
## 2986       81     0.36        0      378      378   4/4/2018        0        9
## 1842       17     0.78        0      236      236 15/02/2018        0       17
## 3371       36     1.99        0      708      708 20/04/2018        0       10
##      col 1431 col 1432 col 1433 col 1434   col 1435 col 1436 col 1437 col 1438
## 2463        0       14      5.4     2.43 No Holiday      2.2      5.4     18.3
## 2511        0       14     11.6     0.20 No Holiday      2.0     11.6     12.1
## 8718        0        5    -12.4     0.00 No Holiday      0.9    -12.4      1.8
## 2986        0        9      7.2     0.36 No Holiday      1.4      7.2     10.4
## 1842        0       17    -20.2     0.78    Holiday      3.1    -20.2      2.4
## 3371        0       10      2.8     1.99 No Holiday      1.0      2.8     18.2
##      col 1439 col 1440 col 1441 col 1442 col 1443 col 1444   col 1445 col 1446
## 2463       14      Yes     2.43       43      Yes     2.43 13/03/2018      Yes
## 2511       14      Yes     0.20       97      Yes     0.20 15/03/2018      Yes
## 8718        5      Yes     0.00       34      Yes     0.00 29/11/2018      Yes
## 2986        9      Yes     0.36       81      Yes     0.36   4/4/2018      Yes
## 1842       17      Yes     0.78       17      Yes     0.78 15/02/2018      Yes
## 3371       10      Yes     1.99       36      Yes     1.99 20/04/2018      Yes
##      col 1447   col 1448 col 1449   col 1450   col 1451 col 1452 col 1453
## 2463      2.2 13/03/2018      5.4 No Holiday 13/03/2018      2.2       43
## 2511      2.0 15/03/2018     11.6 No Holiday 15/03/2018      2.0       97
## 8718      0.9 29/11/2018    -12.4 No Holiday 29/11/2018      0.9       34
## 2986      1.4   4/4/2018      7.2 No Holiday   4/4/2018      1.4       81
## 1842      3.1 15/02/2018    -20.2    Holiday 15/02/2018      3.1       17
## 3371      1.0 20/04/2018      2.8 No Holiday 20/04/2018      1.0       36
##      col 1454 col 1455 col 1456   col 1457 col 1458 col 1459 col 1460 col 1461
## 2463        0       14     2.43 No Holiday      2.2       14       14     2.43
## 2511        0       14     0.20 No Holiday      2.0       14       14     0.20
## 8718        0        5     0.00 No Holiday      0.9        5        5     0.00
## 2986        0        9     0.36 No Holiday      1.4        9        9     0.36
## 1842        0       17     0.78    Holiday      3.1       17       17     0.78
## 3371        0       10     1.99 No Holiday      1.0       10       10     1.99
##      col 1462 col 1463 col 1464 col 1465 col 1466 col 1467 col 1468 col 1469
## 2463        0     2.43      5.4      Yes      Yes     18.3      5.4   Spring
## 2511        0     0.20     11.6      Yes      Yes     12.1     11.6   Spring
## 8718        0     0.00    -12.4      Yes      Yes      1.8    -12.4   Autumn
## 2986        0     0.36      7.2      Yes      Yes     10.4      7.2   Spring
## 1842        0     0.78    -20.2      Yes      Yes      2.4    -20.2   Winter
## 3371        0     1.99      2.8      Yes      Yes     18.2      2.8   Spring
##      col 1470 col 1471 col 1472 col 1473 col 1474 col 1475 col 1476 col 1477
## 2463      2.2     2.43        0        0       14      705   Spring     2.43
## 2511      2.0     0.20        0        0       14      289   Spring     0.20
## 8718      0.9     0.00        0        0        5      126   Autumn     0.00
## 2986      1.4     0.36        0        0        9      378   Spring     0.36
## 1842      3.1     0.78        0        0       17      236   Winter     0.78
## 3371      1.0     1.99        0        0       10      708   Spring     1.99
##      col 1478 col 1479 col 1480   col 1481 col 1482 col 1483 col 1484 col 1485
## 2463      705      5.4     2.43 13/03/2018      2.2     2.43     18.3        0
## 2511      289     11.6     0.20 15/03/2018      2.0     0.20     12.1        0
## 8718      126    -12.4     0.00 29/11/2018      0.9     0.00      1.8        0
## 2986      378      7.2     0.36   4/4/2018      1.4     0.36     10.4        0
## 1842      236    -20.2     0.78 15/02/2018      3.1     0.78      2.4        0
## 3371      708      2.8     1.99 20/04/2018      1.0     1.99     18.2        0
##        col 1486 col 1487   col 1488 col 1489 col 1490 col 1491 col 1492
## 2463 No Holiday        0 13/03/2018   Spring     2.43      5.4      2.2
## 2511 No Holiday        0 15/03/2018   Spring     0.20     11.6      2.0
## 8718 No Holiday        0 29/11/2018   Autumn     0.00    -12.4      0.9
## 2986 No Holiday        0   4/4/2018   Spring     0.36      7.2      1.4
## 1842    Holiday        0 15/02/2018   Winter     0.78    -20.2      3.1
## 3371 No Holiday        0 20/04/2018   Spring     1.99      2.8      1.0
##      col 1493   col 1494 col 1495 col 1496   col 1497   col 1498 col 1499
## 2463       14 No Holiday     1509     18.3 13/03/2018 13/03/2018     1509
## 2511       14 No Holiday      177     12.1 15/03/2018 15/03/2018      177
## 8718        5 No Holiday     1990      1.8 29/11/2018 29/11/2018     1990
## 2986        9 No Holiday     2000     10.4   4/4/2018   4/4/2018     2000
## 1842       17    Holiday     1990      2.4 15/02/2018 15/02/2018     1990
## 3371       10 No Holiday      620     18.2 20/04/2018 20/04/2018      620
##        col 1500 col 1501 col 1502 col 1503 col 1504 col 1505 col 1506 col 1507
## 2463 No Holiday      Yes      705      705   Spring       14     2.43      2.2
## 2511 No Holiday      Yes      289      289   Spring       14     0.20      2.0
## 8718 No Holiday      Yes      126      126   Autumn        5     0.00      0.9
## 2986 No Holiday      Yes      378      378   Spring        9     0.36      1.4
## 1842    Holiday      Yes      236      236   Winter       17     0.78      3.1
## 3371 No Holiday      Yes      708      708   Spring       10     1.99      1.0
##      col 1508 col 1509 col 1510 col 1511 col 1512 col 1513 col 1514 col 1515
## 2463       14       14       14      2.2      5.4        0        0       14
## 2511       14       14       14      2.0     11.6        0        0       14
## 8718        5        5        5      0.9    -12.4        0        0        5
## 2986        9        9        9      1.4      7.2        0        0        9
## 1842       17       17       17      3.1    -20.2        0        0       17
## 3371       10       10       10      1.0      2.8        0        0       10
##      col 1516   col 1517 col 1518   col 1519 col 1520 col 1521 col 1522
## 2463      705 13/03/2018   Spring No Holiday       14     18.3     2.43
## 2511      289 15/03/2018   Spring No Holiday       14     12.1     0.20
## 8718      126 29/11/2018   Autumn No Holiday        5      1.8     0.00
## 2986      378   4/4/2018   Spring No Holiday        9     10.4     0.36
## 1842      236 15/02/2018   Winter    Holiday       17      2.4     0.78
## 3371      708 20/04/2018   Spring No Holiday       10     18.2     1.99
##      col 1523 col 1524 col 1525 col 1526 col 1527 col 1528 col 1529 col 1530
## 2463     18.3      Yes      705       14   Spring        0       14     2.43
## 2511     12.1      Yes      289       14   Spring        0       14     0.20
## 8718      1.8      Yes      126        5   Autumn        0        5     0.00
## 2986     10.4      Yes      378        9   Spring        0        9     0.36
## 1842      2.4      Yes      236       17   Winter        0       17     0.78
## 3371     18.2      Yes      708       10   Spring        0       10     1.99
##      col 1531 col 1532 col 1533 col 1534 col 1535 col 1536 col 1537 col 1538
## 2463        0      Yes      5.4      705   Spring     2.43     1509      705
## 2511        0      Yes     11.6      289   Spring     0.20      177      289
## 8718        0      Yes    -12.4      126   Autumn     0.00     1990      126
## 2986        0      Yes      7.2      378   Spring     0.36     2000      378
## 1842        0      Yes    -20.2      236   Winter     0.78     1990      236
## 3371        0      Yes      2.8      708   Spring     1.99      620      708
##        col 1539 col 1540 col 1541 col 1542 col 1543 col 1544   col 1545
## 2463 13/03/2018   Spring       43     2.43        0      Yes No Holiday
## 2511 15/03/2018   Spring       97     0.20        0      Yes No Holiday
## 8718 29/11/2018   Autumn       34     0.00        0      Yes No Holiday
## 2986   4/4/2018   Spring       81     0.36        0      Yes No Holiday
## 1842 15/02/2018   Winter       17     0.78        0      Yes    Holiday
## 3371 20/04/2018   Spring       36     1.99        0      Yes No Holiday
##        col 1546 col 1547 col 1548 col 1549   col 1550 col 1551 col 1552
## 2463 No Holiday     18.3     1509       14 No Holiday      705       14
## 2511 No Holiday     12.1      177       14 No Holiday      289       14
## 8718 No Holiday      1.8     1990        5 No Holiday      126        5
## 2986 No Holiday     10.4     2000        9 No Holiday      378        9
## 1842    Holiday      2.4     1990       17    Holiday      236       17
## 3371 No Holiday     18.2      620       10 No Holiday      708       10
##      col 1553 col 1554 col 1555   col 1556 col 1557 col 1558 col 1559 col 1560
## 2463       43        0        0 No Holiday   Spring      Yes       14      Yes
## 2511       97        0        0 No Holiday   Spring      Yes       14      Yes
## 8718       34        0        0 No Holiday   Autumn      Yes        5      Yes
## 2986       81        0        0 No Holiday   Spring      Yes        9      Yes
## 1842       17        0        0    Holiday   Winter      Yes       17      Yes
## 3371       36        0        0 No Holiday   Spring      Yes       10      Yes
##      col 1561 col 1562   col 1563 col 1564 col 1565 col 1566 col 1567 col 1568
## 2463     18.3     18.3 13/03/2018        0      Yes   Spring      5.4       14
## 2511     12.1     12.1 15/03/2018        0      Yes   Spring     11.6       14
## 8718      1.8      1.8 29/11/2018        0      Yes   Autumn    -12.4        5
## 2986     10.4     10.4   4/4/2018        0      Yes   Spring      7.2        9
## 1842      2.4      2.4 15/02/2018        0      Yes   Winter    -20.2       17
## 3371     18.2     18.2 20/04/2018        0      Yes   Spring      2.8       10
##      col 1569 col 1570 col 1571 col 1572 col 1573 col 1574 col 1575   col 1576
## 2463      2.2        0      705      5.4     1509      2.2     18.3 13/03/2018
## 2511      2.0        0      289     11.6      177      2.0     12.1 15/03/2018
## 8718      0.9        0      126    -12.4     1990      0.9      1.8 29/11/2018
## 2986      1.4        0      378      7.2     2000      1.4     10.4   4/4/2018
## 1842      3.1        0      236    -20.2     1990      3.1      2.4 15/02/2018
## 3371      1.0        0      708      2.8      620      1.0     18.2 20/04/2018
##      col 1577   col 1578   col 1579 col 1580 col 1581 col 1582 col 1583
## 2463      705 No Holiday No Holiday      5.4      2.2      5.4        0
## 2511      289 No Holiday No Holiday     11.6      2.0     11.6        0
## 8718      126 No Holiday No Holiday    -12.4      0.9    -12.4        0
## 2986      378 No Holiday No Holiday      7.2      1.4      7.2        0
## 1842      236    Holiday    Holiday    -20.2      3.1    -20.2        0
## 3371      708 No Holiday No Holiday      2.8      1.0      2.8        0
##        col 1584 col 1585   col 1586 col 1587 col 1588 col 1589   col 1590
## 2463 13/03/2018        0 No Holiday        0       43      705 13/03/2018
## 2511 15/03/2018        0 No Holiday        0       97      289 15/03/2018
## 8718 29/11/2018        0 No Holiday        0       34      126 29/11/2018
## 2986   4/4/2018        0 No Holiday        0       81      378   4/4/2018
## 1842 15/02/2018        0    Holiday        0       17      236 15/02/2018
## 3371 20/04/2018        0 No Holiday        0       36      708 20/04/2018
##      col 1591 col 1592 col 1593 col 1594 col 1595 col 1596   col 1597
## 2463      Yes       14      Yes        0       14      2.2 No Holiday
## 2511      Yes       14      Yes        0       14      2.0 No Holiday
## 8718      Yes        5      Yes        0        5      0.9 No Holiday
## 2986      Yes        9      Yes        0        9      1.4 No Holiday
## 1842      Yes       17      Yes        0       17      3.1    Holiday
## 3371      Yes       10      Yes        0       10      1.0 No Holiday
##        col 1598   col 1599 col 1600 col 1601 col 1602 col 1603   col 1604
## 2463 13/03/2018 No Holiday      Yes      Yes      5.4      Yes No Holiday
## 2511 15/03/2018 No Holiday      Yes      Yes     11.6      Yes No Holiday
## 8718 29/11/2018 No Holiday      Yes      Yes    -12.4      Yes No Holiday
## 2986   4/4/2018 No Holiday      Yes      Yes      7.2      Yes No Holiday
## 1842 15/02/2018    Holiday      Yes      Yes    -20.2      Yes    Holiday
## 3371 20/04/2018 No Holiday      Yes      Yes      2.8      Yes No Holiday
##      col 1605 col 1606 col 1607 col 1608 col 1609 col 1610 col 1611 col 1612
## 2463        0   Spring       14      5.4       14       14     18.3     1509
## 2511        0   Spring       14     11.6       14       14     12.1      177
## 8718        0   Autumn        5    -12.4        5        5      1.8     1990
## 2986        0   Spring        9      7.2        9        9     10.4     2000
## 1842        0   Winter       17    -20.2       17       17      2.4     1990
## 3371        0   Spring       10      2.8       10       10     18.2      620
##      col 1613 col 1614 col 1615 col 1616 col 1617 col 1618 col 1619 col 1620
## 2463     1509      5.4     18.3      Yes     2.43      5.4       14   Spring
## 2511      177     11.6     12.1      Yes     0.20     11.6       14   Spring
## 8718     1990    -12.4      1.8      Yes     0.00    -12.4        5   Autumn
## 2986     2000      7.2     10.4      Yes     0.36      7.2        9   Spring
## 1842     1990    -20.2      2.4      Yes     0.78    -20.2       17   Winter
## 3371      620      2.8     18.2      Yes     1.99      2.8       10   Spring
##      col 1621 col 1622 col 1623   col 1624 col 1625 col 1626 col 1627 col 1628
## 2463        0        0   Spring No Holiday        0      705        0      2.2
## 2511        0        0   Spring No Holiday        0      289        0      2.0
## 8718        0        0   Autumn No Holiday        0      126        0      0.9
## 2986        0        0   Spring No Holiday        0      378        0      1.4
## 1842        0        0   Winter    Holiday        0      236        0      3.1
## 3371        0        0   Spring No Holiday        0      708        0      1.0
##      col 1629 col 1630 col 1631 col 1632 col 1633 col 1634 col 1635 col 1636
## 2463      Yes   Spring        0       43     1509   Spring      2.2        0
## 2511      Yes   Spring        0       97      177   Spring      2.0        0
## 8718      Yes   Autumn        0       34     1990   Autumn      0.9        0
## 2986      Yes   Spring        0       81     2000   Spring      1.4        0
## 1842      Yes   Winter        0       17     1990   Winter      3.1        0
## 3371      Yes   Spring        0       36      620   Spring      1.0        0
##      col 1637 col 1638   col 1639 col 1640 col 1641 col 1642 col 1643 col 1644
## 2463      Yes        0 13/03/2018        0        0       43      2.2        0
## 2511      Yes        0 15/03/2018        0        0       97      2.0        0
## 8718      Yes        0 29/11/2018        0        0       34      0.9        0
## 2986      Yes        0   4/4/2018        0        0       81      1.4        0
## 1842      Yes        0 15/02/2018        0        0       17      3.1        0
## 3371      Yes        0 20/04/2018        0        0       36      1.0        0
##      col 1645 col 1646 col 1647 col 1648 col 1649 col 1650 col 1651 col 1652
## 2463   Spring     18.3      2.2     1509      2.2        0   Spring       14
## 2511   Spring     12.1      2.0      177      2.0        0   Spring       14
## 8718   Autumn      1.8      0.9     1990      0.9        0   Autumn        5
## 2986   Spring     10.4      1.4     2000      1.4        0   Spring        9
## 1842   Winter      2.4      3.1     1990      3.1        0   Winter       17
## 3371   Spring     18.2      1.0      620      1.0        0   Spring       10
##      col 1653 col 1654   col 1655 col 1656 col 1657 col 1658 col 1659
## 2463     2.43      2.2 13/03/2018     1509      2.2       14      5.4
## 2511     0.20      2.0 15/03/2018      177      2.0       14     11.6
## 8718     0.00      0.9 29/11/2018     1990      0.9        5    -12.4
## 2986     0.36      1.4   4/4/2018     2000      1.4        9      7.2
## 1842     0.78      3.1 15/02/2018     1990      3.1       17    -20.2
## 3371     1.99      1.0 20/04/2018      620      1.0       10      2.8
##        col 1660 col 1661 col 1662 col 1663   col 1664 col 1665 col 1666
## 2463 No Holiday        0      5.4   Spring No Holiday     2.43       43
## 2511 No Holiday        0     11.6   Spring No Holiday     0.20       97
## 8718 No Holiday        0    -12.4   Autumn No Holiday     0.00       34
## 2986 No Holiday        0      7.2   Spring No Holiday     0.36       81
## 1842    Holiday        0    -20.2   Winter    Holiday     0.78       17
## 3371 No Holiday        0      2.8   Spring No Holiday     1.99       36
##      col 1667 col 1668 col 1669 col 1670 col 1671 col 1672 col 1673 col 1674
## 2463     18.3      Yes     2.43      705      705     2.43      2.2        0
## 2511     12.1      Yes     0.20      289      289     0.20      2.0        0
## 8718      1.8      Yes     0.00      126      126     0.00      0.9        0
## 2986     10.4      Yes     0.36      378      378     0.36      1.4        0
## 1842      2.4      Yes     0.78      236      236     0.78      3.1        0
## 3371     18.2      Yes     1.99      708      708     1.99      1.0        0
##      col 1675 col 1676 col 1677 col 1678 col 1679 col 1680 col 1681 col 1682
## 2463     18.3      Yes        0     18.3       43     2.43     2.43      Yes
## 2511     12.1      Yes        0     12.1       97     0.20     0.20      Yes
## 8718      1.8      Yes        0      1.8       34     0.00     0.00      Yes
## 2986     10.4      Yes        0     10.4       81     0.36     0.36      Yes
## 1842      2.4      Yes        0      2.4       17     0.78     0.78      Yes
## 3371     18.2      Yes        0     18.2       36     1.99     1.99      Yes
##      col 1683 col 1684 col 1685 col 1686 col 1687   col 1688 col 1689 col 1690
## 2463      2.2      2.2     18.3      2.2      2.2 No Holiday      705       14
## 2511      2.0      2.0     12.1      2.0      2.0 No Holiday      289       14
## 8718      0.9      0.9      1.8      0.9      0.9 No Holiday      126        5
## 2986      1.4      1.4     10.4      1.4      1.4 No Holiday      378        9
## 1842      3.1      3.1      2.4      3.1      3.1    Holiday      236       17
## 3371      1.0      1.0     18.2      1.0      1.0 No Holiday      708       10
##      col 1691   col 1692   col 1693   col 1694 col 1695 col 1696 col 1697
## 2463       14 13/03/2018 13/03/2018 No Holiday   Spring     2.43   Spring
## 2511       14 15/03/2018 15/03/2018 No Holiday   Spring     0.20   Spring
## 8718        5 29/11/2018 29/11/2018 No Holiday   Autumn     0.00   Autumn
## 2986        9   4/4/2018   4/4/2018 No Holiday   Spring     0.36   Spring
## 1842       17 15/02/2018 15/02/2018    Holiday   Winter     0.78   Winter
## 3371       10 20/04/2018 20/04/2018 No Holiday   Spring     1.99   Spring
##      col 1698 col 1699 col 1700   col 1701 col 1702 col 1703 col 1704
## 2463      705      705      Yes 13/03/2018        0   Spring      2.2
## 2511      289      289      Yes 15/03/2018        0   Spring      2.0
## 8718      126      126      Yes 29/11/2018        0   Autumn      0.9
## 2986      378      378      Yes   4/4/2018        0   Spring      1.4
## 1842      236      236      Yes 15/02/2018        0   Winter      3.1
## 3371      708      708      Yes 20/04/2018        0   Spring      1.0
##        col 1705 col 1706 col 1707 col 1708 col 1709   col 1710 col 1711
## 2463 13/03/2018        0        0     2.43       14 No Holiday      5.4
## 2511 15/03/2018        0        0     0.20       14 No Holiday     11.6
## 8718 29/11/2018        0        0     0.00        5 No Holiday    -12.4
## 2986   4/4/2018        0        0     0.36        9 No Holiday      7.2
## 1842 15/02/2018        0        0     0.78       17    Holiday    -20.2
## 3371 20/04/2018        0        0     1.99       10 No Holiday      2.8
##      col 1712 col 1713 col 1714 col 1715 col 1716 col 1717 col 1718 col 1719
## 2463   Spring        0   Spring       43       43     2.43      Yes     2.43
## 2511   Spring        0   Spring       97       97     0.20      Yes     0.20
## 8718   Autumn        0   Autumn       34       34     0.00      Yes     0.00
## 2986   Spring        0   Spring       81       81     0.36      Yes     0.36
## 1842   Winter        0   Winter       17       17     0.78      Yes     0.78
## 3371   Spring        0   Spring       36       36     1.99      Yes     1.99
##      col 1720 col 1721 col 1722 col 1723 col 1724 col 1725 col 1726 col 1727
## 2463       43      Yes        0      5.4      5.4   Spring     1509       43
## 2511       97      Yes        0     11.6     11.6   Spring      177       97
## 8718       34      Yes        0    -12.4    -12.4   Autumn     1990       34
## 2986       81      Yes        0      7.2      7.2   Spring     2000       81
## 1842       17      Yes        0    -20.2    -20.2   Winter     1990       17
## 3371       36      Yes        0      2.8      2.8   Spring      620       36
##      col 1728 col 1729 col 1730 col 1731 col 1732 col 1733   col 1734 col 1735
## 2463      705      2.2      5.4       14   Spring        0 No Holiday      2.2
## 2511      289      2.0     11.6       14   Spring        0 No Holiday      2.0
## 8718      126      0.9    -12.4        5   Autumn        0 No Holiday      0.9
## 2986      378      1.4      7.2        9   Spring        0 No Holiday      1.4
## 1842      236      3.1    -20.2       17   Winter        0    Holiday      3.1
## 3371      708      1.0      2.8       10   Spring        0 No Holiday      1.0
##      col 1736 col 1737 col 1738 col 1739   col 1740 col 1741   col 1742
## 2463      2.2   Spring     2.43   Spring 13/03/2018      Yes 13/03/2018
## 2511      2.0   Spring     0.20   Spring 15/03/2018      Yes 15/03/2018
## 8718      0.9   Autumn     0.00   Autumn 29/11/2018      Yes 29/11/2018
## 2986      1.4   Spring     0.36   Spring   4/4/2018      Yes   4/4/2018
## 1842      3.1   Winter     0.78   Winter 15/02/2018      Yes 15/02/2018
## 3371      1.0   Spring     1.99   Spring 20/04/2018      Yes 20/04/2018
##      col 1743 col 1744 col 1745 col 1746 col 1747 col 1748 col 1749   col 1750
## 2463        0        0      705       14      5.4     18.3     2.43 No Holiday
## 2511        0        0      289       14     11.6     12.1     0.20 No Holiday
## 8718        0        0      126        5    -12.4      1.8     0.00 No Holiday
## 2986        0        0      378        9      7.2     10.4     0.36 No Holiday
## 1842        0        0      236       17    -20.2      2.4     0.78    Holiday
## 3371        0        0      708       10      2.8     18.2     1.99 No Holiday
##      col 1751 col 1752 col 1753 col 1754 col 1755 col 1756   col 1757
## 2463      5.4      5.4        0     1509        0     1509 13/03/2018
## 2511     11.6     11.6        0      177        0      177 15/03/2018
## 8718    -12.4    -12.4        0     1990        0     1990 29/11/2018
## 2986      7.2      7.2        0     2000        0     2000   4/4/2018
## 1842    -20.2    -20.2        0     1990        0     1990 15/02/2018
## 3371      2.8      2.8        0      620        0      620 20/04/2018
##        col 1758 col 1759 col 1760 col 1761 col 1762 col 1763 col 1764 col 1765
## 2463 No Holiday        0     18.3   Spring      2.2        0     1509       14
## 2511 No Holiday        0     12.1   Spring      2.0        0      177       14
## 8718 No Holiday        0      1.8   Autumn      0.9        0     1990        5
## 2986 No Holiday        0     10.4   Spring      1.4        0     2000        9
## 1842    Holiday        0      2.4   Winter      3.1        0     1990       17
## 3371 No Holiday        0     18.2   Spring      1.0        0      620       10
##      col 1766 col 1767 col 1768 col 1769   col 1770 col 1771 col 1772
## 2463      2.2     1509      5.4       14 13/03/2018       43        0
## 2511      2.0      177     11.6       14 15/03/2018       97        0
## 8718      0.9     1990    -12.4        5 29/11/2018       34        0
## 2986      1.4     2000      7.2        9   4/4/2018       81        0
## 1842      3.1     1990    -20.2       17 15/02/2018       17        0
## 3371      1.0      620      2.8       10 20/04/2018       36        0
##        col 1773 col 1774 col 1775 col 1776 col 1777   col 1778 col 1779
## 2463 13/03/2018     18.3        0     18.3     1509 No Holiday   Spring
## 2511 15/03/2018     12.1        0     12.1      177 No Holiday   Spring
## 8718 29/11/2018      1.8        0      1.8     1990 No Holiday   Autumn
## 2986   4/4/2018     10.4        0     10.4     2000 No Holiday   Spring
## 1842 15/02/2018      2.4        0      2.4     1990    Holiday   Winter
## 3371 20/04/2018     18.2        0     18.2      620 No Holiday   Spring
##      col 1780 col 1781 col 1782   col 1783 col 1784 col 1785 col 1786
## 2463     2.43     1509       14 13/03/2018        0      5.4   Spring
## 2511     0.20      177       14 15/03/2018        0     11.6   Spring
## 8718     0.00     1990        5 29/11/2018        0    -12.4   Autumn
## 2986     0.36     2000        9   4/4/2018        0      7.2   Spring
## 1842     0.78     1990       17 15/02/2018        0    -20.2   Winter
## 3371     1.99      620       10 20/04/2018        0      2.8   Spring
##        col 1787 col 1788 col 1789 col 1790 col 1791 col 1792 col 1793 col 1794
## 2463 13/03/2018       14     18.3   Spring        0       14       43       14
## 2511 15/03/2018       14     12.1   Spring        0       14       97       14
## 8718 29/11/2018        5      1.8   Autumn        0        5       34        5
## 2986   4/4/2018        9     10.4   Spring        0        9       81        9
## 1842 15/02/2018       17      2.4   Winter        0       17       17       17
## 3371 20/04/2018       10     18.2   Spring        0       10       36       10
##      col 1795 col 1796   col 1797   col 1798 col 1799 col 1800 col 1801
## 2463       43     18.3 13/03/2018 No Holiday        0        0     18.3
## 2511       97     12.1 15/03/2018 No Holiday        0        0     12.1
## 8718       34      1.8 29/11/2018 No Holiday        0        0      1.8
## 2986       81     10.4   4/4/2018 No Holiday        0        0     10.4
## 1842       17      2.4 15/02/2018    Holiday        0        0      2.4
## 3371       36     18.2 20/04/2018 No Holiday        0        0     18.2
##      col 1802 col 1803 col 1804 col 1805 col 1806 col 1807 col 1808 col 1809
## 2463       14        0      2.2     1509     1509      5.4      705        0
## 2511       14        0      2.0      177      177     11.6      289        0
## 8718        5        0      0.9     1990     1990    -12.4      126        0
## 2986        9        0      1.4     2000     2000      7.2      378        0
## 1842       17        0      3.1     1990     1990    -20.2      236        0
## 3371       10        0      1.0      620      620      2.8      708        0
##      col 1810 col 1811 col 1812   col 1813 col 1814   col 1815 col 1816
## 2463      Yes     18.3       43 13/03/2018        0 No Holiday   Spring
## 2511      Yes     12.1       97 15/03/2018        0 No Holiday   Spring
## 8718      Yes      1.8       34 29/11/2018        0 No Holiday   Autumn
## 2986      Yes     10.4       81   4/4/2018        0 No Holiday   Spring
## 1842      Yes      2.4       17 15/02/2018        0    Holiday   Winter
## 3371      Yes     18.2       36 20/04/2018        0 No Holiday   Spring
##      col 1817 col 1818 col 1819 col 1820 col 1821 col 1822 col 1823   col 1824
## 2463     2.43      Yes      705     1509       14      705       43 No Holiday
## 2511     0.20      Yes      289      177       14      289       97 No Holiday
## 8718     0.00      Yes      126     1990        5      126       34 No Holiday
## 2986     0.36      Yes      378     2000        9      378       81 No Holiday
## 1842     0.78      Yes      236     1990       17      236       17    Holiday
## 3371     1.99      Yes      708      620       10      708       36 No Holiday
##      col 1825 col 1826 col 1827 col 1828 col 1829 col 1830 col 1831 col 1832
## 2463        0      Yes      Yes        0     1509     18.3   Spring       43
## 2511        0      Yes      Yes        0      177     12.1   Spring       97
## 8718        0      Yes      Yes        0     1990      1.8   Autumn       34
## 2986        0      Yes      Yes        0     2000     10.4   Spring       81
## 1842        0      Yes      Yes        0     1990      2.4   Winter       17
## 3371        0      Yes      Yes        0      620     18.2   Spring       36
##      col 1833 col 1834 col 1835 col 1836 col 1837 col 1838 col 1839 col 1840
## 2463     1509       14      Yes       43   Spring     18.3     2.43      5.4
## 2511      177       14      Yes       97   Spring     12.1     0.20     11.6
## 8718     1990        5      Yes       34   Autumn      1.8     0.00    -12.4
## 2986     2000        9      Yes       81   Spring     10.4     0.36      7.2
## 1842     1990       17      Yes       17   Winter      2.4     0.78    -20.2
## 3371      620       10      Yes       36   Spring     18.2     1.99      2.8
##      col 1841 col 1842 col 1843 col 1844 col 1845 col 1846 col 1847 col 1848
## 2463        0      5.4        0       14        0      705       43      Yes
## 2511        0     11.6        0       14        0      289       97      Yes
## 8718        0    -12.4        0        5        0      126       34      Yes
## 2986        0      7.2        0        9        0      378       81      Yes
## 1842        0    -20.2        0       17        0      236       17      Yes
## 3371        0      2.8        0       10        0      708       36      Yes
##      col 1849 col 1850 col 1851 col 1852 col 1853 col 1854 col 1855 col 1856
## 2463      Yes     1509        0     18.3      Yes      5.4     2.43       14
## 2511      Yes      177        0     12.1      Yes     11.6     0.20       14
## 8718      Yes     1990        0      1.8      Yes    -12.4     0.00        5
## 2986      Yes     2000        0     10.4      Yes      7.2     0.36        9
## 1842      Yes     1990        0      2.4      Yes    -20.2     0.78       17
## 3371      Yes      620        0     18.2      Yes      2.8     1.99       10
##      col 1857 col 1858 col 1859 col 1860 col 1861 col 1862 col 1863 col 1864
## 2463       43       14     18.3     18.3      2.2     1509      2.2   Spring
## 2511       97       14     12.1     12.1      2.0      177      2.0   Spring
## 8718       34        5      1.8      1.8      0.9     1990      0.9   Autumn
## 2986       81        9     10.4     10.4      1.4     2000      1.4   Spring
## 1842       17       17      2.4      2.4      3.1     1990      3.1   Winter
## 3371       36       10     18.2     18.2      1.0      620      1.0   Spring
##      col 1865 col 1866 col 1867 col 1868 col 1869 col 1870 col 1871 col 1872
## 2463      2.2      Yes        0      705        0        0     18.3     18.3
## 2511      2.0      Yes        0      289        0        0     12.1     12.1
## 8718      0.9      Yes        0      126        0        0      1.8      1.8
## 2986      1.4      Yes        0      378        0        0     10.4     10.4
## 1842      3.1      Yes        0      236        0        0      2.4      2.4
## 3371      1.0      Yes        0      708        0        0     18.2     18.2
##      col 1873 col 1874 col 1875   col 1876 col 1877 col 1878 col 1879 col 1880
## 2463        0     1509     2.43 No Holiday       14     1509     18.3     18.3
## 2511        0      177     0.20 No Holiday       14      177     12.1     12.1
## 8718        0     1990     0.00 No Holiday        5     1990      1.8      1.8
## 2986        0     2000     0.36 No Holiday        9     2000     10.4     10.4
## 1842        0     1990     0.78    Holiday       17     1990      2.4      2.4
## 3371        0      620     1.99 No Holiday       10      620     18.2     18.2
##        col 1881 col 1882   col 1883 col 1884 col 1885 col 1886 col 1887
## 2463 No Holiday      5.4 No Holiday        0     1509     2.43      705
## 2511 No Holiday     11.6 No Holiday        0      177     0.20      289
## 8718 No Holiday    -12.4 No Holiday        0     1990     0.00      126
## 2986 No Holiday      7.2 No Holiday        0     2000     0.36      378
## 1842    Holiday    -20.2    Holiday        0     1990     0.78      236
## 3371 No Holiday      2.8 No Holiday        0      620     1.99      708
##      col 1888 col 1889 col 1890 col 1891 col 1892 col 1893 col 1894 col 1895
## 2463      Yes        0     1509       14     2.43      5.4        0        0
## 2511      Yes        0      177       14     0.20     11.6        0        0
## 8718      Yes        0     1990        5     0.00    -12.4        0        0
## 2986      Yes        0     2000        9     0.36      7.2        0        0
## 1842      Yes        0     1990       17     0.78    -20.2        0        0
## 3371      Yes        0      620       10     1.99      2.8        0        0
##      col 1896 col 1897 col 1898 col 1899 col 1900 col 1901 col 1902 col 1903
## 2463       43        0     2.43        0      Yes      2.2       14     1509
## 2511       97        0     0.20        0      Yes      2.0       14      177
## 8718       34        0     0.00        0      Yes      0.9        5     1990
## 2986       81        0     0.36        0      Yes      1.4        9     2000
## 1842       17        0     0.78        0      Yes      3.1       17     1990
## 3371       36        0     1.99        0      Yes      1.0       10      620
##      col 1904 col 1905   col 1906 col 1907 col 1908 col 1909 col 1910
## 2463     2.43       14 13/03/2018       14        0        0      2.2
## 2511     0.20       14 15/03/2018       14        0        0      2.0
## 8718     0.00        5 29/11/2018        5        0        0      0.9
## 2986     0.36        9   4/4/2018        9        0        0      1.4
## 1842     0.78       17 15/02/2018       17        0        0      3.1
## 3371     1.99       10 20/04/2018       10        0        0      1.0
##        col 1911 col 1912 col 1913 col 1914 col 1915 col 1916 col 1917 col 1918
## 2463 13/03/2018      5.4      705      Yes       14     18.3      5.4      2.2
## 2511 15/03/2018     11.6      289      Yes       14     12.1     11.6      2.0
## 8718 29/11/2018    -12.4      126      Yes        5      1.8    -12.4      0.9
## 2986   4/4/2018      7.2      378      Yes        9     10.4      7.2      1.4
## 1842 15/02/2018    -20.2      236      Yes       17      2.4    -20.2      3.1
## 3371 20/04/2018      2.8      708      Yes       10     18.2      2.8      1.0
##      col 1919 col 1920 col 1921 col 1922   col 1923 col 1924   col 1925
## 2463     1509     2.43      5.4     1509 No Holiday        0 No Holiday
## 2511      177     0.20     11.6      177 No Holiday        0 No Holiday
## 8718     1990     0.00    -12.4     1990 No Holiday        0 No Holiday
## 2986     2000     0.36      7.2     2000 No Holiday        0 No Holiday
## 1842     1990     0.78    -20.2     1990    Holiday        0    Holiday
## 3371      620     1.99      2.8      620 No Holiday        0 No Holiday
##      col 1926 col 1927 col 1928 col 1929 col 1930 col 1931 col 1932   col 1933
## 2463      2.2     1509       43      5.4      705     18.3      Yes No Holiday
## 2511      2.0      177       97     11.6      289     12.1      Yes No Holiday
## 8718      0.9     1990       34    -12.4      126      1.8      Yes No Holiday
## 2986      1.4     2000       81      7.2      378     10.4      Yes No Holiday
## 1842      3.1     1990       17    -20.2      236      2.4      Yes    Holiday
## 3371      1.0      620       36      2.8      708     18.2      Yes No Holiday
##        col 1934 col 1935 col 1936 col 1937 col 1938 col 1939 col 1940 col 1941
## 2463 13/03/2018      Yes      705     2.43        0       43     1509      Yes
## 2511 15/03/2018      Yes      289     0.20        0       97      177      Yes
## 8718 29/11/2018      Yes      126     0.00        0       34     1990      Yes
## 2986   4/4/2018      Yes      378     0.36        0       81     2000      Yes
## 1842 15/02/2018      Yes      236     0.78        0       17     1990      Yes
## 3371 20/04/2018      Yes      708     1.99        0       36      620      Yes
##      col 1942   col 1943 col 1944 col 1945 col 1946 col 1947 col 1948 col 1949
## 2463     18.3 13/03/2018      5.4      2.2        0     18.3        0       43
## 2511     12.1 15/03/2018     11.6      2.0        0     12.1        0       97
## 8718      1.8 29/11/2018    -12.4      0.9        0      1.8        0       34
## 2986     10.4   4/4/2018      7.2      1.4        0     10.4        0       81
## 1842      2.4 15/02/2018    -20.2      3.1        0      2.4        0       17
## 3371     18.2 20/04/2018      2.8      1.0        0     18.2        0       36
##      col 1950   col 1951 col 1952 col 1953 col 1954 col 1955 col 1956 col 1957
## 2463     1509 13/03/2018        0      2.2       43      Yes   Spring        0
## 2511      177 15/03/2018        0      2.0       97      Yes   Spring        0
## 8718     1990 29/11/2018        0      0.9       34      Yes   Autumn        0
## 2986     2000   4/4/2018        0      1.4       81      Yes   Spring        0
## 1842     1990 15/02/2018        0      3.1       17      Yes   Winter        0
## 3371      620 20/04/2018        0      1.0       36      Yes   Spring        0
##      col 1958 col 1959 col 1960 col 1961 col 1962 col 1963 col 1964 col 1965
## 2463       14     1509   Spring   Spring       43      705   Spring      705
## 2511       14      177   Spring   Spring       97      289   Spring      289
## 8718        5     1990   Autumn   Autumn       34      126   Autumn      126
## 2986        9     2000   Spring   Spring       81      378   Spring      378
## 1842       17     1990   Winter   Winter       17      236   Winter      236
## 3371       10      620   Spring   Spring       36      708   Spring      708
##      col 1966 col 1967   col 1968 col 1969 col 1970 col 1971 col 1972
## 2463      705     2.43 13/03/2018      2.2     18.3   Spring        0
## 2511      289     0.20 15/03/2018      2.0     12.1   Spring        0
## 8718      126     0.00 29/11/2018      0.9      1.8   Autumn        0
## 2986      378     0.36   4/4/2018      1.4     10.4   Spring        0
## 1842      236     0.78 15/02/2018      3.1      2.4   Winter        0
## 3371      708     1.99 20/04/2018      1.0     18.2   Spring        0
##        col 1973   col 1974 col 1975 col 1976 col 1977 col 1978   col 1979
## 2463 No Holiday No Holiday       43     1509       43     18.3 No Holiday
## 2511 No Holiday No Holiday       97      177       97     12.1 No Holiday
## 8718 No Holiday No Holiday       34     1990       34      1.8 No Holiday
## 2986 No Holiday No Holiday       81     2000       81     10.4 No Holiday
## 1842    Holiday    Holiday       17     1990       17      2.4    Holiday
## 3371 No Holiday No Holiday       36      620       36     18.2 No Holiday
##      col 1980 col 1981 col 1982   col 1983 col 1984 col 1985 col 1986 col 1987
## 2463      Yes        0       43 No Holiday        0       14      2.2      2.2
## 2511      Yes        0       97 No Holiday        0       14      2.0      2.0
## 8718      Yes        0       34 No Holiday        0        5      0.9      0.9
## 2986      Yes        0       81 No Holiday        0        9      1.4      1.4
## 1842      Yes        0       17    Holiday        0       17      3.1      3.1
## 3371      Yes        0       36 No Holiday        0       10      1.0      1.0
##      col 1988   col 1989   col 1990 col 1991   col 1992   col 1993   col 1994
## 2463      5.4 No Holiday 13/03/2018     1509 13/03/2018 13/03/2018 13/03/2018
## 2511     11.6 No Holiday 15/03/2018      177 15/03/2018 15/03/2018 15/03/2018
## 8718    -12.4 No Holiday 29/11/2018     1990 29/11/2018 29/11/2018 29/11/2018
## 2986      7.2 No Holiday   4/4/2018     2000   4/4/2018   4/4/2018   4/4/2018
## 1842    -20.2    Holiday 15/02/2018     1990 15/02/2018 15/02/2018 15/02/2018
## 3371      2.8 No Holiday 20/04/2018      620 20/04/2018 20/04/2018 20/04/2018
##      col 1995 col 1996 col 1997 col 1998   col 1999 col 2000 col 2001 col 2002
## 2463      705      2.2      5.4        0 No Holiday       43     1509      2.2
## 2511      289      2.0     11.6        0 No Holiday       97      177      2.0
## 8718      126      0.9    -12.4        0 No Holiday       34     1990      0.9
## 2986      378      1.4      7.2        0 No Holiday       81     2000      1.4
## 1842      236      3.1    -20.2        0    Holiday       17     1990      3.1
## 3371      708      1.0      2.8        0 No Holiday       36      620      1.0
##      col 2003 col 2004 col 2005 col 2006 col 2007 col 2008   col 2009 col 2010
## 2463       14      705     18.3      2.2   Spring       14 13/03/2018     2.43
## 2511       14      289     12.1      2.0   Spring       14 15/03/2018     0.20
## 8718        5      126      1.8      0.9   Autumn        5 29/11/2018     0.00
## 2986        9      378     10.4      1.4   Spring        9   4/4/2018     0.36
## 1842       17      236      2.4      3.1   Winter       17 15/02/2018     0.78
## 3371       10      708     18.2      1.0   Spring       10 20/04/2018     1.99
##      col 2011 col 2012 col 2013 col 2014 col 2015 col 2016 col 2017 col 2018
## 2463      Yes   Spring      2.2     2.43       43       14   Spring       43
## 2511      Yes   Spring      2.0     0.20       97       14   Spring       97
## 8718      Yes   Autumn      0.9     0.00       34        5   Autumn       34
## 2986      Yes   Spring      1.4     0.36       81        9   Spring       81
## 1842      Yes   Winter      3.1     0.78       17       17   Winter       17
## 3371      Yes   Spring      1.0     1.99       36       10   Spring       36
##      col 2019   col 2020 col 2021 col 2022 col 2023 col 2024 col 2025 col 2026
## 2463       14 13/03/2018     1509      705     2.43      5.4        0        0
## 2511       14 15/03/2018      177      289     0.20     11.6        0        0
## 8718        5 29/11/2018     1990      126     0.00    -12.4        0        0
## 2986        9   4/4/2018     2000      378     0.36      7.2        0        0
## 1842       17 15/02/2018     1990      236     0.78    -20.2        0        0
## 3371       10 20/04/2018      620      708     1.99      2.8        0        0
##      col 2027 col 2028 col 2029 col 2030 col 2031   col 2032 col 2033 col 2034
## 2463     18.3     1509     2.43     18.3     1509 No Holiday      2.2     2.43
## 2511     12.1      177     0.20     12.1      177 No Holiday      2.0     0.20
## 8718      1.8     1990     0.00      1.8     1990 No Holiday      0.9     0.00
## 2986     10.4     2000     0.36     10.4     2000 No Holiday      1.4     0.36
## 1842      2.4     1990     0.78      2.4     1990    Holiday      3.1     0.78
## 3371     18.2      620     1.99     18.2      620 No Holiday      1.0     1.99
##      col 2035 col 2036   col 2037   col 2038 col 2039 col 2040 col 2041
## 2463     18.3        0 13/03/2018 No Holiday        0     1509      2.2
## 2511     12.1        0 15/03/2018 No Holiday        0      177      2.0
## 8718      1.8        0 29/11/2018 No Holiday        0     1990      0.9
## 2986     10.4        0   4/4/2018 No Holiday        0     2000      1.4
## 1842      2.4        0 15/02/2018    Holiday        0     1990      3.1
## 3371     18.2        0 20/04/2018 No Holiday        0      620      1.0
##      col 2042 col 2043 col 2044   col 2045 col 2046 col 2047 col 2048
## 2463     2.43     1509        0 13/03/2018     18.3       43     2.43
## 2511     0.20      177        0 15/03/2018     12.1       97     0.20
## 8718     0.00     1990        0 29/11/2018      1.8       34     0.00
## 2986     0.36     2000        0   4/4/2018     10.4       81     0.36
## 1842     0.78     1990        0 15/02/2018      2.4       17     0.78
## 3371     1.99      620        0 20/04/2018     18.2       36     1.99
##        col 2049 col 2050 col 2051 col 2052 col 2053 col 2054 col 2055 col 2056
## 2463 13/03/2018      705        0     18.3      5.4       14      705      2.2
## 2511 15/03/2018      289        0     12.1     11.6       14      289      2.0
## 8718 29/11/2018      126        0      1.8    -12.4        5      126      0.9
## 2986   4/4/2018      378        0     10.4      7.2        9      378      1.4
## 1842 15/02/2018      236        0      2.4    -20.2       17      236      3.1
## 3371 20/04/2018      708        0     18.2      2.8       10      708      1.0
##      col 2057   col 2058 col 2059 col 2060 col 2061 col 2062 col 2063
## 2463        0 13/03/2018   Spring      2.2      705      Yes        0
## 2511        0 15/03/2018   Spring      2.0      289      Yes        0
## 8718        0 29/11/2018   Autumn      0.9      126      Yes        0
## 2986        0   4/4/2018   Spring      1.4      378      Yes        0
## 1842        0 15/02/2018   Winter      3.1      236      Yes        0
## 3371        0 20/04/2018   Spring      1.0      708      Yes        0
##        col 2064 col 2065 col 2066 col 2067 col 2068 col 2069   col 2070
## 2463 No Holiday     2.43       43     1509      2.2      5.4 No Holiday
## 2511 No Holiday     0.20       97      177      2.0     11.6 No Holiday
## 8718 No Holiday     0.00       34     1990      0.9    -12.4 No Holiday
## 2986 No Holiday     0.36       81     2000      1.4      7.2 No Holiday
## 1842    Holiday     0.78       17     1990      3.1    -20.2    Holiday
## 3371 No Holiday     1.99       36      620      1.0      2.8 No Holiday
##        col 2071 col 2072 col 2073 col 2074 col 2075 col 2076 col 2077 col 2078
## 2463 13/03/2018      5.4      5.4      2.2      705       14     2.43        0
## 2511 15/03/2018     11.6     11.6      2.0      289       14     0.20        0
## 8718 29/11/2018    -12.4    -12.4      0.9      126        5     0.00        0
## 2986   4/4/2018      7.2      7.2      1.4      378        9     0.36        0
## 1842 15/02/2018    -20.2    -20.2      3.1      236       17     0.78        0
## 3371 20/04/2018      2.8      2.8      1.0      708       10     1.99        0
##      col 2079   col 2080   col 2081 col 2082 col 2083 col 2084 col 2085
## 2463   Spring No Holiday 13/03/2018     2.43        0       14      705
## 2511   Spring No Holiday 15/03/2018     0.20        0       14      289
## 8718   Autumn No Holiday 29/11/2018     0.00        0        5      126
## 2986   Spring No Holiday   4/4/2018     0.36        0        9      378
## 1842   Winter    Holiday 15/02/2018     0.78        0       17      236
## 3371   Spring No Holiday 20/04/2018     1.99        0       10      708
##      col 2086 col 2087 col 2088 col 2089 col 2090 col 2091 col 2092 col 2093
## 2463      5.4      705      5.4      2.2      5.4        0        0      5.4
## 2511     11.6      289     11.6      2.0     11.6        0        0     11.6
## 8718    -12.4      126    -12.4      0.9    -12.4        0        0    -12.4
## 2986      7.2      378      7.2      1.4      7.2        0        0      7.2
## 1842    -20.2      236    -20.2      3.1    -20.2        0        0    -20.2
## 3371      2.8      708      2.8      1.0      2.8        0        0      2.8
##      col 2094 col 2095   col 2096 col 2097 col 2098 col 2099 col 2100 col 2101
## 2463       43        0 No Holiday      Yes       43        0     18.3       14
## 2511       97        0 No Holiday      Yes       97        0     12.1       14
## 8718       34        0 No Holiday      Yes       34        0      1.8        5
## 2986       81        0 No Holiday      Yes       81        0     10.4        9
## 1842       17        0    Holiday      Yes       17        0      2.4       17
## 3371       36        0 No Holiday      Yes       36        0     18.2       10
##      col 2102 col 2103 col 2104 col 2105   col 2106 col 2107 col 2108 col 2109
## 2463      2.2   Spring       43     18.3 No Holiday      705        0     1509
## 2511      2.0   Spring       97     12.1 No Holiday      289        0      177
## 8718      0.9   Autumn       34      1.8 No Holiday      126        0     1990
## 2986      1.4   Spring       81     10.4 No Holiday      378        0     2000
## 1842      3.1   Winter       17      2.4    Holiday      236        0     1990
## 3371      1.0   Spring       36     18.2 No Holiday      708        0      620
##      col 2110 col 2111   col 2112 col 2113 col 2114 col 2115   col 2116
## 2463      Yes       14 13/03/2018      705      705     1509 No Holiday
## 2511      Yes       14 15/03/2018      289      289      177 No Holiday
## 8718      Yes        5 29/11/2018      126      126     1990 No Holiday
## 2986      Yes        9   4/4/2018      378      378     2000 No Holiday
## 1842      Yes       17 15/02/2018      236      236     1990    Holiday
## 3371      Yes       10 20/04/2018      708      708      620 No Holiday
##      col 2117 col 2118 col 2119 col 2120 col 2121   col 2122 col 2123
## 2463       14     1509     1509      5.4        0 13/03/2018      705
## 2511       14      177      177     11.6        0 15/03/2018      289
## 8718        5     1990     1990    -12.4        0 29/11/2018      126
## 2986        9     2000     2000      7.2        0   4/4/2018      378
## 1842       17     1990     1990    -20.2        0 15/02/2018      236
## 3371       10      620      620      2.8        0 20/04/2018      708
##        col 2124   col 2125 col 2126 col 2127 col 2128 col 2129 col 2130
## 2463 13/03/2018 No Holiday      2.2     2.43      2.2        0       14
## 2511 15/03/2018 No Holiday      2.0     0.20      2.0        0       14
## 8718 29/11/2018 No Holiday      0.9     0.00      0.9        0        5
## 2986   4/4/2018 No Holiday      1.4     0.36      1.4        0        9
## 1842 15/02/2018    Holiday      3.1     0.78      3.1        0       17
## 3371 20/04/2018 No Holiday      1.0     1.99      1.0        0       10
##      col 2131 col 2132   col 2133 col 2134 col 2135 col 2136 col 2137 col 2138
## 2463     1509       43 No Holiday      5.4      5.4       43      2.2        0
## 2511      177       97 No Holiday     11.6     11.6       97      2.0        0
## 8718     1990       34 No Holiday    -12.4    -12.4       34      0.9        0
## 2986     2000       81 No Holiday      7.2      7.2       81      1.4        0
## 1842     1990       17    Holiday    -20.2    -20.2       17      3.1        0
## 3371      620       36 No Holiday      2.8      2.8       36      1.0        0
##      col 2139 col 2140 col 2141   col 2142   col 2143 col 2144 col 2145
## 2463      Yes     18.3     2.43 13/03/2018 13/03/2018     2.43        0
## 2511      Yes     12.1     0.20 15/03/2018 15/03/2018     0.20        0
## 8718      Yes      1.8     0.00 29/11/2018 29/11/2018     0.00        0
## 2986      Yes     10.4     0.36   4/4/2018   4/4/2018     0.36        0
## 1842      Yes      2.4     0.78 15/02/2018 15/02/2018     0.78        0
## 3371      Yes     18.2     1.99 20/04/2018 20/04/2018     1.99        0
##      col 2146 col 2147 col 2148 col 2149 col 2150 col 2151 col 2152 col 2153
## 2463   Spring      Yes        0      2.2        0       43       14     1509
## 2511   Spring      Yes        0      2.0        0       97       14      177
## 8718   Autumn      Yes        0      0.9        0       34        5     1990
## 2986   Spring      Yes        0      1.4        0       81        9     2000
## 1842   Winter      Yes        0      3.1        0       17       17     1990
## 3371   Spring      Yes        0      1.0        0       36       10      620
##      col 2154 col 2155 col 2156 col 2157 col 2158   col 2159   col 2160
## 2463        0   Spring     1509     18.3        0 No Holiday No Holiday
## 2511        0   Spring      177     12.1        0 No Holiday No Holiday
## 8718        0   Autumn     1990      1.8        0 No Holiday No Holiday
## 2986        0   Spring     2000     10.4        0 No Holiday No Holiday
## 1842        0   Winter     1990      2.4        0    Holiday    Holiday
## 3371        0   Spring      620     18.2        0 No Holiday No Holiday
##      col 2161 col 2162 col 2163   col 2164 col 2165 col 2166 col 2167 col 2168
## 2463      2.2      5.4      5.4 13/03/2018      Yes     18.3      Yes     18.3
## 2511      2.0     11.6     11.6 15/03/2018      Yes     12.1      Yes     12.1
## 8718      0.9    -12.4    -12.4 29/11/2018      Yes      1.8      Yes      1.8
## 2986      1.4      7.2      7.2   4/4/2018      Yes     10.4      Yes     10.4
## 1842      3.1    -20.2    -20.2 15/02/2018      Yes      2.4      Yes      2.4
## 3371      1.0      2.8      2.8 20/04/2018      Yes     18.2      Yes     18.2
##      col 2169 col 2170 col 2171 col 2172 col 2173 col 2174 col 2175 col 2176
## 2463      Yes      Yes       43      705       14      Yes      5.4        0
## 2511      Yes      Yes       97      289       14      Yes     11.6        0
## 8718      Yes      Yes       34      126        5      Yes    -12.4        0
## 2986      Yes      Yes       81      378        9      Yes      7.2        0
## 1842      Yes      Yes       17      236       17      Yes    -20.2        0
## 3371      Yes      Yes       36      708       10      Yes      2.8        0
##      col 2177 col 2178   col 2179   col 2180 col 2181 col 2182 col 2183
## 2463       14       14 13/03/2018 No Holiday     18.3      705      5.4
## 2511       14       14 15/03/2018 No Holiday     12.1      289     11.6
## 8718        5        5 29/11/2018 No Holiday      1.8      126    -12.4
## 2986        9        9   4/4/2018 No Holiday     10.4      378      7.2
## 1842       17       17 15/02/2018    Holiday      2.4      236    -20.2
## 3371       10       10 20/04/2018 No Holiday     18.2      708      2.8
##        col 2184 col 2185 col 2186 col 2187 col 2188 col 2189 col 2190 col 2191
## 2463 No Holiday     18.3       14     18.3      5.4     18.3       14     18.3
## 2511 No Holiday     12.1       14     12.1     11.6     12.1       14     12.1
## 8718 No Holiday      1.8        5      1.8    -12.4      1.8        5      1.8
## 2986 No Holiday     10.4        9     10.4      7.2     10.4        9     10.4
## 1842    Holiday      2.4       17      2.4    -20.2      2.4       17      2.4
## 3371 No Holiday     18.2       10     18.2      2.8     18.2       10     18.2
##      col 2192 col 2193   col 2194   col 2195 col 2196 col 2197 col 2198
## 2463      705      2.2 13/03/2018 13/03/2018        0       43      Yes
## 2511      289      2.0 15/03/2018 15/03/2018        0       97      Yes
## 8718      126      0.9 29/11/2018 29/11/2018        0       34      Yes
## 2986      378      1.4   4/4/2018   4/4/2018        0       81      Yes
## 1842      236      3.1 15/02/2018 15/02/2018        0       17      Yes
## 3371      708      1.0 20/04/2018 20/04/2018        0       36      Yes
##      col 2199 col 2200 col 2201 col 2202 col 2203 col 2204 col 2205   col 2206
## 2463     2.43      705        0   Spring       14       43      2.2 13/03/2018
## 2511     0.20      289        0   Spring       14       97      2.0 15/03/2018
## 8718     0.00      126        0   Autumn        5       34      0.9 29/11/2018
## 2986     0.36      378        0   Spring        9       81      1.4   4/4/2018
## 1842     0.78      236        0   Winter       17       17      3.1 15/02/2018
## 3371     1.99      708        0   Spring       10       36      1.0 20/04/2018
##      col 2207 col 2208 col 2209   col 2210 col 2211   col 2212   col 2213
## 2463      5.4      2.2       14 No Holiday        0 13/03/2018 No Holiday
## 2511     11.6      2.0       14 No Holiday        0 15/03/2018 No Holiday
## 8718    -12.4      0.9        5 No Holiday        0 29/11/2018 No Holiday
## 2986      7.2      1.4        9 No Holiday        0   4/4/2018 No Holiday
## 1842    -20.2      3.1       17    Holiday        0 15/02/2018    Holiday
## 3371      2.8      1.0       10 No Holiday        0 20/04/2018 No Holiday
##        col 2214 col 2215 col 2216 col 2217   col 2218 col 2219 col 2220
## 2463 No Holiday   Spring   Spring       14 13/03/2018        0      Yes
## 2511 No Holiday   Spring   Spring       14 15/03/2018        0      Yes
## 8718 No Holiday   Autumn   Autumn        5 29/11/2018        0      Yes
## 2986 No Holiday   Spring   Spring        9   4/4/2018        0      Yes
## 1842    Holiday   Winter   Winter       17 15/02/2018        0      Yes
## 3371 No Holiday   Spring   Spring       10 20/04/2018        0      Yes
##        col 2221 col 2222 col 2223   col 2224 col 2225 col 2226 col 2227
## 2463 No Holiday      705      5.4 13/03/2018        0       43        0
## 2511 No Holiday      289     11.6 15/03/2018        0       97        0
## 8718 No Holiday      126    -12.4 29/11/2018        0       34        0
## 2986 No Holiday      378      7.2   4/4/2018        0       81        0
## 1842    Holiday      236    -20.2 15/02/2018        0       17        0
## 3371 No Holiday      708      2.8 20/04/2018        0       36        0
##      col 2228 col 2229   col 2230 col 2231 col 2232 col 2233   col 2234
## 2463        0      5.4 No Holiday      5.4       14     1509 No Holiday
## 2511        0     11.6 No Holiday     11.6       14      177 No Holiday
## 8718        0    -12.4 No Holiday    -12.4        5     1990 No Holiday
## 2986        0      7.2 No Holiday      7.2        9     2000 No Holiday
## 1842        0    -20.2    Holiday    -20.2       17     1990    Holiday
## 3371        0      2.8 No Holiday      2.8       10      620 No Holiday
##      col 2235 col 2236 col 2237 col 2238 col 2239   col 2240 col 2241
## 2463      705      2.2      Yes       43      5.4 No Holiday      705
## 2511      289      2.0      Yes       97     11.6 No Holiday      289
## 8718      126      0.9      Yes       34    -12.4 No Holiday      126
## 2986      378      1.4      Yes       81      7.2 No Holiday      378
## 1842      236      3.1      Yes       17    -20.2    Holiday      236
## 3371      708      1.0      Yes       36      2.8 No Holiday      708
##        col 2242 col 2243 col 2244 col 2245 col 2246 col 2247 col 2248 col 2249
## 2463 No Holiday      705   Spring     1509      705        0        0     18.3
## 2511 No Holiday      289   Spring      177      289        0        0     12.1
## 8718 No Holiday      126   Autumn     1990      126        0        0      1.8
## 2986 No Holiday      378   Spring     2000      378        0        0     10.4
## 1842    Holiday      236   Winter     1990      236        0        0      2.4
## 3371 No Holiday      708   Spring      620      708        0        0     18.2
##      col 2250 col 2251 col 2252 col 2253 col 2254 col 2255 col 2256   col 2257
## 2463       43      5.4   Spring      Yes      2.2     2.43     1509 No Holiday
## 2511       97     11.6   Spring      Yes      2.0     0.20      177 No Holiday
## 8718       34    -12.4   Autumn      Yes      0.9     0.00     1990 No Holiday
## 2986       81      7.2   Spring      Yes      1.4     0.36     2000 No Holiday
## 1842       17    -20.2   Winter      Yes      3.1     0.78     1990    Holiday
## 3371       36      2.8   Spring      Yes      1.0     1.99      620 No Holiday
##      col 2258 col 2259 col 2260 col 2261   col 2262 col 2263 col 2264 col 2265
## 2463      705      Yes     2.43      Yes 13/03/2018       43        0      Yes
## 2511      289      Yes     0.20      Yes 15/03/2018       97        0      Yes
## 8718      126      Yes     0.00      Yes 29/11/2018       34        0      Yes
## 2986      378      Yes     0.36      Yes   4/4/2018       81        0      Yes
## 1842      236      Yes     0.78      Yes 15/02/2018       17        0      Yes
## 3371      708      Yes     1.99      Yes 20/04/2018       36        0      Yes
##        col 2266 col 2267   col 2268 col 2269 col 2270 col 2271   col 2272
## 2463 No Holiday       43 13/03/2018       43     1509       43 No Holiday
## 2511 No Holiday       97 15/03/2018       97      177       97 No Holiday
## 8718 No Holiday       34 29/11/2018       34     1990       34 No Holiday
## 2986 No Holiday       81   4/4/2018       81     2000       81 No Holiday
## 1842    Holiday       17 15/02/2018       17     1990       17    Holiday
## 3371 No Holiday       36 20/04/2018       36      620       36 No Holiday
##        col 2273 col 2274 col 2275 col 2276 col 2277 col 2278 col 2279 col 2280
## 2463 No Holiday        0       43     2.43        0      Yes       43        0
## 2511 No Holiday        0       97     0.20        0      Yes       97        0
## 8718 No Holiday        0       34     0.00        0      Yes       34        0
## 2986 No Holiday        0       81     0.36        0      Yes       81        0
## 1842    Holiday        0       17     0.78        0      Yes       17        0
## 3371 No Holiday        0       36     1.99        0      Yes       36        0
##        col 2281 col 2282 col 2283 col 2284 col 2285 col 2286 col 2287 col 2288
## 2463 No Holiday      705       14   Spring      Yes       14        0        0
## 2511 No Holiday      289       14   Spring      Yes       14        0        0
## 8718 No Holiday      126        5   Autumn      Yes        5        0        0
## 2986 No Holiday      378        9   Spring      Yes        9        0        0
## 1842    Holiday      236       17   Winter      Yes       17        0        0
## 3371 No Holiday      708       10   Spring      Yes       10        0        0
##      col 2289 col 2290 col 2291 col 2292 col 2293 col 2294 col 2295 col 2296
## 2463     1509      2.2     2.43        0      2.2      705      2.2      Yes
## 2511      177      2.0     0.20        0      2.0      289      2.0      Yes
## 8718     1990      0.9     0.00        0      0.9      126      0.9      Yes
## 2986     2000      1.4     0.36        0      1.4      378      1.4      Yes
## 1842     1990      3.1     0.78        0      3.1      236      3.1      Yes
## 3371      620      1.0     1.99        0      1.0      708      1.0      Yes
##        col 2297 col 2298   col 2299 col 2300 col 2301 col 2302 col 2303
## 2463 13/03/2018       14 No Holiday     1509     18.3     1509      705
## 2511 15/03/2018       14 No Holiday      177     12.1      177      289
## 8718 29/11/2018        5 No Holiday     1990      1.8     1990      126
## 2986   4/4/2018        9 No Holiday     2000     10.4     2000      378
## 1842 15/02/2018       17    Holiday     1990      2.4     1990      236
## 3371 20/04/2018       10 No Holiday      620     18.2      620      708
##      col 2304 col 2305   col 2306   col 2307 col 2308 col 2309 col 2310
## 2463     2.43        0 13/03/2018 13/03/2018      705     2.43   Spring
## 2511     0.20        0 15/03/2018 15/03/2018      289     0.20   Spring
## 8718     0.00        0 29/11/2018 29/11/2018      126     0.00   Autumn
## 2986     0.36        0   4/4/2018   4/4/2018      378     0.36   Spring
## 1842     0.78        0 15/02/2018 15/02/2018      236     0.78   Winter
## 3371     1.99        0 20/04/2018 20/04/2018      708     1.99   Spring
##      col 2311   col 2312 col 2313   col 2314 col 2315 col 2316 col 2317
## 2463        0 13/03/2018     1509 No Holiday      5.4     1509        0
## 2511        0 15/03/2018      177 No Holiday     11.6      177        0
## 8718        0 29/11/2018     1990 No Holiday    -12.4     1990        0
## 2986        0   4/4/2018     2000 No Holiday      7.2     2000        0
## 1842        0 15/02/2018     1990    Holiday    -20.2     1990        0
## 3371        0 20/04/2018      620 No Holiday      2.8      620        0
##      col 2318 col 2319 col 2320   col 2321 col 2322 col 2323 col 2324 col 2325
## 2463        0     18.3      5.4 13/03/2018     1509        0        0      Yes
## 2511        0     12.1     11.6 15/03/2018      177        0        0      Yes
## 8718        0      1.8    -12.4 29/11/2018     1990        0        0      Yes
## 2986        0     10.4      7.2   4/4/2018     2000        0        0      Yes
## 1842        0      2.4    -20.2 15/02/2018     1990        0        0      Yes
## 3371        0     18.2      2.8 20/04/2018      620        0        0      Yes
##      col 2326 col 2327 col 2328 col 2329 col 2330 col 2331 col 2332 col 2333
## 2463      705        0       14      2.2      5.4       43       43        0
## 2511      289        0       14      2.0     11.6       97       97        0
## 8718      126        0        5      0.9    -12.4       34       34        0
## 2986      378        0        9      1.4      7.2       81       81        0
## 1842      236        0       17      3.1    -20.2       17       17        0
## 3371      708        0       10      1.0      2.8       36       36        0
##      col 2334 col 2335 col 2336 col 2337 col 2338 col 2339 col 2340   col 2341
## 2463     1509        0       14   Spring     1509       14        0 13/03/2018
## 2511      177        0       14   Spring      177       14        0 15/03/2018
## 8718     1990        0        5   Autumn     1990        5        0 29/11/2018
## 2986     2000        0        9   Spring     2000        9        0   4/4/2018
## 1842     1990        0       17   Winter     1990       17        0 15/02/2018
## 3371      620        0       10   Spring      620       10        0 20/04/2018
##      col 2342 col 2343   col 2344 col 2345 col 2346 col 2347 col 2348 col 2349
## 2463      2.2        0 No Holiday     18.3      5.4       43      705     2.43
## 2511      2.0        0 No Holiday     12.1     11.6       97      289     0.20
## 8718      0.9        0 No Holiday      1.8    -12.4       34      126     0.00
## 2986      1.4        0 No Holiday     10.4      7.2       81      378     0.36
## 1842      3.1        0    Holiday      2.4    -20.2       17      236     0.78
## 3371      1.0        0 No Holiday     18.2      2.8       36      708     1.99
##        col 2350 col 2351 col 2352 col 2353 col 2354 col 2355 col 2356 col 2357
## 2463 13/03/2018      2.2      5.4      705     2.43     2.43     18.3        0
## 2511 15/03/2018      2.0     11.6      289     0.20     0.20     12.1        0
## 8718 29/11/2018      0.9    -12.4      126     0.00     0.00      1.8        0
## 2986   4/4/2018      1.4      7.2      378     0.36     0.36     10.4        0
## 1842 15/02/2018      3.1    -20.2      236     0.78     0.78      2.4        0
## 3371 20/04/2018      1.0      2.8      708     1.99     1.99     18.2        0
##      col 2358   col 2359 col 2360 col 2361 col 2362 col 2363 col 2364
## 2463      Yes 13/03/2018      705      705      705      2.2     2.43
## 2511      Yes 15/03/2018      289      289      289      2.0     0.20
## 8718      Yes 29/11/2018      126      126      126      0.9     0.00
## 2986      Yes   4/4/2018      378      378      378      1.4     0.36
## 1842      Yes 15/02/2018      236      236      236      3.1     0.78
## 3371      Yes 20/04/2018      708      708      708      1.0     1.99
##        col 2365 col 2366 col 2367 col 2368   col 2369 col 2370 col 2371
## 2463 No Holiday       43     2.43        0 No Holiday     2.43       43
## 2511 No Holiday       97     0.20        0 No Holiday     0.20       97
## 8718 No Holiday       34     0.00        0 No Holiday     0.00       34
## 2986 No Holiday       81     0.36        0 No Holiday     0.36       81
## 1842    Holiday       17     0.78        0    Holiday     0.78       17
## 3371 No Holiday       36     1.99        0 No Holiday     1.99       36
##      col 2372 col 2373 col 2374 col 2375 col 2376 col 2377 col 2378 col 2379
## 2463      5.4     18.3       43      5.4       14      705       14     18.3
## 2511     11.6     12.1       97     11.6       14      289       14     12.1
## 8718    -12.4      1.8       34    -12.4        5      126        5      1.8
## 2986      7.2     10.4       81      7.2        9      378        9     10.4
## 1842    -20.2      2.4       17    -20.2       17      236       17      2.4
## 3371      2.8     18.2       36      2.8       10      708       10     18.2
##      col 2380 col 2381   col 2382 col 2383 col 2384 col 2385 col 2386 col 2387
## 2463       14        0 13/03/2018      2.2     1509        0     18.3       14
## 2511       14        0 15/03/2018      2.0      177        0     12.1       14
## 8718        5        0 29/11/2018      0.9     1990        0      1.8        5
## 2986        9        0   4/4/2018      1.4     2000        0     10.4        9
## 1842       17        0 15/02/2018      3.1     1990        0      2.4       17
## 3371       10        0 20/04/2018      1.0      620        0     18.2       10
##      col 2388 col 2389   col 2390 col 2391 col 2392 col 2393 col 2394 col 2395
## 2463      Yes   Spring 13/03/2018       14   Spring        0     2.43     18.3
## 2511      Yes   Spring 15/03/2018       14   Spring        0     0.20     12.1
## 8718      Yes   Autumn 29/11/2018        5   Autumn        0     0.00      1.8
## 2986      Yes   Spring   4/4/2018        9   Spring        0     0.36     10.4
## 1842      Yes   Winter 15/02/2018       17   Winter        0     0.78      2.4
## 3371      Yes   Spring 20/04/2018       10   Spring        0     1.99     18.2
##        col 2396 col 2397 col 2398 col 2399 col 2400 col 2401   col 2402
## 2463 13/03/2018        0      5.4      5.4      Yes       14 13/03/2018
## 2511 15/03/2018        0     11.6     11.6      Yes       14 15/03/2018
## 8718 29/11/2018        0    -12.4    -12.4      Yes        5 29/11/2018
## 2986   4/4/2018        0      7.2      7.2      Yes        9   4/4/2018
## 1842 15/02/2018        0    -20.2    -20.2      Yes       17 15/02/2018
## 3371 20/04/2018        0      2.8      2.8      Yes       10 20/04/2018
##      col 2403 col 2404   col 2405 col 2406 col 2407 col 2408 col 2409 col 2410
## 2463        0      2.2 No Holiday       43        0        0        0     18.3
## 2511        0      2.0 No Holiday       97        0        0        0     12.1
## 8718        0      0.9 No Holiday       34        0        0        0      1.8
## 2986        0      1.4 No Holiday       81        0        0        0     10.4
## 1842        0      3.1    Holiday       17        0        0        0      2.4
## 3371        0      1.0 No Holiday       36        0        0        0     18.2
##        col 2411 col 2412   col 2413 col 2414 col 2415   col 2416 col 2417
## 2463 No Holiday      705 No Holiday        0     2.43 13/03/2018      705
## 2511 No Holiday      289 No Holiday        0     0.20 15/03/2018      289
## 8718 No Holiday      126 No Holiday        0     0.00 29/11/2018      126
## 2986 No Holiday      378 No Holiday        0     0.36   4/4/2018      378
## 1842    Holiday      236    Holiday        0     0.78 15/02/2018      236
## 3371 No Holiday      708 No Holiday        0     1.99 20/04/2018      708
##      col 2418 col 2419 col 2420   col 2421 col 2422 col 2423 col 2424
## 2463       14     2.43     2.43 13/03/2018   Spring      5.4       43
## 2511       14     0.20     0.20 15/03/2018   Spring     11.6       97
## 8718        5     0.00     0.00 29/11/2018   Autumn    -12.4       34
## 2986        9     0.36     0.36   4/4/2018   Spring      7.2       81
## 1842       17     0.78     0.78 15/02/2018   Winter    -20.2       17
## 3371       10     1.99     1.99 20/04/2018   Spring      2.8       36
##        col 2425 col 2426 col 2427 col 2428 col 2429 col 2430 col 2431 col 2432
## 2463 13/03/2018       43      5.4       43       43     1509        0      Yes
## 2511 15/03/2018       97     11.6       97       97      177        0      Yes
## 8718 29/11/2018       34    -12.4       34       34     1990        0      Yes
## 2986   4/4/2018       81      7.2       81       81     2000        0      Yes
## 1842 15/02/2018       17    -20.2       17       17     1990        0      Yes
## 3371 20/04/2018       36      2.8       36       36      620        0      Yes
##      col 2433 col 2434   col 2435 col 2436 col 2437 col 2438 col 2439 col 2440
## 2463      705     18.3 No Holiday     18.3      705     1509      705       14
## 2511      289     12.1 No Holiday     12.1      289      177      289       14
## 8718      126      1.8 No Holiday      1.8      126     1990      126        5
## 2986      378     10.4 No Holiday     10.4      378     2000      378        9
## 1842      236      2.4    Holiday      2.4      236     1990      236       17
## 3371      708     18.2 No Holiday     18.2      708      620      708       10
##      col 2441   col 2442   col 2443 col 2444   col 2445 col 2446 col 2447
## 2463     18.3 No Holiday 13/03/2018     1509 13/03/2018        0        0
## 2511     12.1 No Holiday 15/03/2018      177 15/03/2018        0        0
## 8718      1.8 No Holiday 29/11/2018     1990 29/11/2018        0        0
## 2986     10.4 No Holiday   4/4/2018     2000   4/4/2018        0        0
## 1842      2.4    Holiday 15/02/2018     1990 15/02/2018        0        0
## 3371     18.2 No Holiday 20/04/2018      620 20/04/2018        0        0
##      col 2448 col 2449   col 2450 col 2451   col 2452   col 2453 col 2454
## 2463        0       14 13/03/2018        0 13/03/2018 No Holiday     2.43
## 2511        0       14 15/03/2018        0 15/03/2018 No Holiday     0.20
## 8718        0        5 29/11/2018        0 29/11/2018 No Holiday     0.00
## 2986        0        9   4/4/2018        0   4/4/2018 No Holiday     0.36
## 1842        0       17 15/02/2018        0 15/02/2018    Holiday     0.78
## 3371        0       10 20/04/2018        0 20/04/2018 No Holiday     1.99
##      col 2455 col 2456 col 2457 col 2458 col 2459 col 2460 col 2461 col 2462
## 2463      705        0     18.3     1509     18.3        0      5.4     2.43
## 2511      289        0     12.1      177     12.1        0     11.6     0.20
## 8718      126        0      1.8     1990      1.8        0    -12.4     0.00
## 2986      378        0     10.4     2000     10.4        0      7.2     0.36
## 1842      236        0      2.4     1990      2.4        0    -20.2     0.78
## 3371      708        0     18.2      620     18.2        0      2.8     1.99
##      col 2463 col 2464 col 2465 col 2466 col 2467 col 2468 col 2469 col 2470
## 2463     2.43       43     2.43       14      705       43     18.3       14
## 2511     0.20       97     0.20       14      289       97     12.1       14
## 8718     0.00       34     0.00        5      126       34      1.8        5
## 2986     0.36       81     0.36        9      378       81     10.4        9
## 1842     0.78       17     0.78       17      236       17      2.4       17
## 3371     1.99       36     1.99       10      708       36     18.2       10
##        col 2471 col 2472   col 2473   col 2474 col 2475 col 2476   col 2477
## 2463 13/03/2018       14 No Holiday 13/03/2018        0      705 No Holiday
## 2511 15/03/2018       14 No Holiday 15/03/2018        0      289 No Holiday
## 8718 29/11/2018        5 No Holiday 29/11/2018        0      126 No Holiday
## 2986   4/4/2018        9 No Holiday   4/4/2018        0      378 No Holiday
## 1842 15/02/2018       17    Holiday 15/02/2018        0      236    Holiday
## 3371 20/04/2018       10 No Holiday 20/04/2018        0      708 No Holiday
##      col 2478   col 2479   col 2480 col 2481 col 2482 col 2483 col 2484
## 2463      Yes No Holiday No Holiday     1509        0     2.43        0
## 2511      Yes No Holiday No Holiday      177        0     0.20        0
## 8718      Yes No Holiday No Holiday     1990        0     0.00        0
## 2986      Yes No Holiday No Holiday     2000        0     0.36        0
## 1842      Yes    Holiday    Holiday     1990        0     0.78        0
## 3371      Yes No Holiday No Holiday      620        0     1.99        0
##      col 2485 col 2486 col 2487 col 2488   col 2489   col 2490 col 2491
## 2463        0      705       43      Yes No Holiday 13/03/2018      705
## 2511        0      289       97      Yes No Holiday 15/03/2018      289
## 8718        0      126       34      Yes No Holiday 29/11/2018      126
## 2986        0      378       81      Yes No Holiday   4/4/2018      378
## 1842        0      236       17      Yes    Holiday 15/02/2018      236
## 3371        0      708       36      Yes No Holiday 20/04/2018      708
##      col 2492 col 2493 col 2494 col 2495 col 2496 col 2497   col 2498 col 2499
## 2463        0     2.43        0     18.3     1509     1509 13/03/2018      2.2
## 2511        0     0.20        0     12.1      177      177 15/03/2018      2.0
## 8718        0     0.00        0      1.8     1990     1990 29/11/2018      0.9
## 2986        0     0.36        0     10.4     2000     2000   4/4/2018      1.4
## 1842        0     0.78        0      2.4     1990     1990 15/02/2018      3.1
## 3371        0     1.99        0     18.2      620      620 20/04/2018      1.0
##        col 2500 col 2501 col 2502 col 2503 col 2504 col 2505 col 2506 col 2507
## 2463 No Holiday      5.4      5.4   Spring        0        0       14   Spring
## 2511 No Holiday     11.6     11.6   Spring        0        0       14   Spring
## 8718 No Holiday    -12.4    -12.4   Autumn        0        0        5   Autumn
## 2986 No Holiday      7.2      7.2   Spring        0        0        9   Spring
## 1842    Holiday    -20.2    -20.2   Winter        0        0       17   Winter
## 3371 No Holiday      2.8      2.8   Spring        0        0       10   Spring
##      col 2508 col 2509 col 2510 col 2511 col 2512   col 2513 col 2514
## 2463      705        0     18.3       14      2.2 13/03/2018     2.43
## 2511      289        0     12.1       14      2.0 15/03/2018     0.20
## 8718      126        0      1.8        5      0.9 29/11/2018     0.00
## 2986      378        0     10.4        9      1.4   4/4/2018     0.36
## 1842      236        0      2.4       17      3.1 15/02/2018     0.78
## 3371      708        0     18.2       10      1.0 20/04/2018     1.99
##        col 2515   col 2516 col 2517 col 2518   col 2519 col 2520 col 2521
## 2463 No Holiday No Holiday        0   Spring No Holiday        0   Spring
## 2511 No Holiday No Holiday        0   Spring No Holiday        0   Spring
## 8718 No Holiday No Holiday        0   Autumn No Holiday        0   Autumn
## 2986 No Holiday No Holiday        0   Spring No Holiday        0   Spring
## 1842    Holiday    Holiday        0   Winter    Holiday        0   Winter
## 3371 No Holiday No Holiday        0   Spring No Holiday        0   Spring
##      col 2522 col 2523 col 2524 col 2525 col 2526 col 2527 col 2528 col 2529
## 2463      705       14      705       14      2.2     2.43      2.2      2.2
## 2511      289       14      289       14      2.0     0.20      2.0      2.0
## 8718      126        5      126        5      0.9     0.00      0.9      0.9
## 2986      378        9      378        9      1.4     0.36      1.4      1.4
## 1842      236       17      236       17      3.1     0.78      3.1      3.1
## 3371      708       10      708       10      1.0     1.99      1.0      1.0
##      col 2530 col 2531 col 2532 col 2533 col 2534   col 2535 col 2536 col 2537
## 2463     1509      705        0      2.2      705 No Holiday     1509       14
## 2511      177      289        0      2.0      289 No Holiday      177       14
## 8718     1990      126        0      0.9      126 No Holiday     1990        5
## 2986     2000      378        0      1.4      378 No Holiday     2000        9
## 1842     1990      236        0      3.1      236    Holiday     1990       17
## 3371      620      708        0      1.0      708 No Holiday      620       10
##      col 2538 col 2539 col 2540   col 2541 col 2542 col 2543 col 2544 col 2545
## 2463   Spring        0      Yes 13/03/2018      5.4      705     2.43     1509
## 2511   Spring        0      Yes 15/03/2018     11.6      289     0.20      177
## 8718   Autumn        0      Yes 29/11/2018    -12.4      126     0.00     1990
## 2986   Spring        0      Yes   4/4/2018      7.2      378     0.36     2000
## 1842   Winter        0      Yes 15/02/2018    -20.2      236     0.78     1990
## 3371   Spring        0      Yes 20/04/2018      2.8      708     1.99      620
##      col 2546 col 2547 col 2548 col 2549 col 2550 col 2551 col 2552 col 2553
## 2463        0      5.4     2.43      2.2   Spring       14      2.2      705
## 2511        0     11.6     0.20      2.0   Spring       14      2.0      289
## 8718        0    -12.4     0.00      0.9   Autumn        5      0.9      126
## 2986        0      7.2     0.36      1.4   Spring        9      1.4      378
## 1842        0    -20.2     0.78      3.1   Winter       17      3.1      236
## 3371        0      2.8     1.99      1.0   Spring       10      1.0      708
##      col 2554 col 2555 col 2556 col 2557 col 2558 col 2559 col 2560 col 2561
## 2463       43     1509   Spring      705        0     2.43      5.4     1509
## 2511       97      177   Spring      289        0     0.20     11.6      177
## 8718       34     1990   Autumn      126        0     0.00    -12.4     1990
## 2986       81     2000   Spring      378        0     0.36      7.2     2000
## 1842       17     1990   Winter      236        0     0.78    -20.2     1990
## 3371       36      620   Spring      708        0     1.99      2.8      620
##      col 2562 col 2563 col 2564 col 2565   col 2566 col 2567 col 2568 col 2569
## 2463      Yes       43        0      5.4 13/03/2018      2.2       43        0
## 2511      Yes       97        0     11.6 15/03/2018      2.0       97        0
## 8718      Yes       34        0    -12.4 29/11/2018      0.9       34        0
## 2986      Yes       81        0      7.2   4/4/2018      1.4       81        0
## 1842      Yes       17        0    -20.2 15/02/2018      3.1       17        0
## 3371      Yes       36        0      2.8 20/04/2018      1.0       36        0
##      col 2570 col 2571 col 2572 col 2573 col 2574 col 2575 col 2576 col 2577
## 2463   Spring       43     1509      Yes      2.2     1509        0   Spring
## 2511   Spring       97      177      Yes      2.0      177        0   Spring
## 8718   Autumn       34     1990      Yes      0.9     1990        0   Autumn
## 2986   Spring       81     2000      Yes      1.4     2000        0   Spring
## 1842   Winter       17     1990      Yes      3.1     1990        0   Winter
## 3371   Spring       36      620      Yes      1.0      620        0   Spring
##      col 2578   col 2579 col 2580   col 2581 col 2582 col 2583 col 2584
## 2463   Spring 13/03/2018     1509 No Holiday     18.3   Spring     1509
## 2511   Spring 15/03/2018      177 No Holiday     12.1   Spring      177
## 8718   Autumn 29/11/2018     1990 No Holiday      1.8   Autumn     1990
## 2986   Spring   4/4/2018     2000 No Holiday     10.4   Spring     2000
## 1842   Winter 15/02/2018     1990    Holiday      2.4   Winter     1990
## 3371   Spring 20/04/2018      620 No Holiday     18.2   Spring      620
##      col 2585 col 2586   col 2587   col 2588   col 2589 col 2590 col 2591
## 2463     2.43     18.3 13/03/2018 No Holiday No Holiday      2.2   Spring
## 2511     0.20     12.1 15/03/2018 No Holiday No Holiday      2.0   Spring
## 8718     0.00      1.8 29/11/2018 No Holiday No Holiday      0.9   Autumn
## 2986     0.36     10.4   4/4/2018 No Holiday No Holiday      1.4   Spring
## 1842     0.78      2.4 15/02/2018    Holiday    Holiday      3.1   Winter
## 3371     1.99     18.2 20/04/2018 No Holiday No Holiday      1.0   Spring
##      col 2592 col 2593 col 2594   col 2595   col 2596 col 2597 col 2598
## 2463      5.4     18.3       43 No Holiday No Holiday      5.4        0
## 2511     11.6     12.1       97 No Holiday No Holiday     11.6        0
## 8718    -12.4      1.8       34 No Holiday No Holiday    -12.4        0
## 2986      7.2     10.4       81 No Holiday No Holiday      7.2        0
## 1842    -20.2      2.4       17    Holiday    Holiday    -20.2        0
## 3371      2.8     18.2       36 No Holiday No Holiday      2.8        0
##      col 2599 col 2600 col 2601 col 2602 col 2603 col 2604   col 2605 col 2606
## 2463        0      Yes     2.43       14      2.2      Yes No Holiday     1509
## 2511        0      Yes     0.20       14      2.0      Yes No Holiday      177
## 8718        0      Yes     0.00        5      0.9      Yes No Holiday     1990
## 2986        0      Yes     0.36        9      1.4      Yes No Holiday     2000
## 1842        0      Yes     0.78       17      3.1      Yes    Holiday     1990
## 3371        0      Yes     1.99       10      1.0      Yes No Holiday      620
##      col 2607 col 2608 col 2609   col 2610 col 2611 col 2612 col 2613
## 2463      705       14     2.43 13/03/2018       43      5.4      5.4
## 2511      289       14     0.20 15/03/2018       97     11.6     11.6
## 8718      126        5     0.00 29/11/2018       34    -12.4    -12.4
## 2986      378        9     0.36   4/4/2018       81      7.2      7.2
## 1842      236       17     0.78 15/02/2018       17    -20.2    -20.2
## 3371      708       10     1.99 20/04/2018       36      2.8      2.8
##        col 2614   col 2615 col 2616 col 2617 col 2618 col 2619   col 2620
## 2463 No Holiday 13/03/2018       14      Yes      Yes      705 13/03/2018
## 2511 No Holiday 15/03/2018       14      Yes      Yes      289 15/03/2018
## 8718 No Holiday 29/11/2018        5      Yes      Yes      126 29/11/2018
## 2986 No Holiday   4/4/2018        9      Yes      Yes      378   4/4/2018
## 1842    Holiday 15/02/2018       17      Yes      Yes      236 15/02/2018
## 3371 No Holiday 20/04/2018       10      Yes      Yes      708 20/04/2018
##      col 2621 col 2622 col 2623 col 2624 col 2625 col 2626 col 2627 col 2628
## 2463     2.43     18.3        0        0   Spring        0     2.43   Spring
## 2511     0.20     12.1        0        0   Spring        0     0.20   Spring
## 8718     0.00      1.8        0        0   Autumn        0     0.00   Autumn
## 2986     0.36     10.4        0        0   Spring        0     0.36   Spring
## 1842     0.78      2.4        0        0   Winter        0     0.78   Winter
## 3371     1.99     18.2        0        0   Spring        0     1.99   Spring
##      col 2629 col 2630 col 2631 col 2632   col 2633 col 2634 col 2635 col 2636
## 2463      5.4   Spring     18.3       14 No Holiday       14      Yes       14
## 2511     11.6   Spring     12.1       14 No Holiday       14      Yes       14
## 8718    -12.4   Autumn      1.8        5 No Holiday        5      Yes        5
## 2986      7.2   Spring     10.4        9 No Holiday        9      Yes        9
## 1842    -20.2   Winter      2.4       17    Holiday       17      Yes       17
## 3371      2.8   Spring     18.2       10 No Holiday       10      Yes       10
##      col 2637 col 2638 col 2639 col 2640 col 2641 col 2642 col 2643   col 2644
## 2463     1509        0       14      705   Spring      5.4       43 13/03/2018
## 2511      177        0       14      289   Spring     11.6       97 15/03/2018
## 8718     1990        0        5      126   Autumn    -12.4       34 29/11/2018
## 2986     2000        0        9      378   Spring      7.2       81   4/4/2018
## 1842     1990        0       17      236   Winter    -20.2       17 15/02/2018
## 3371      620        0       10      708   Spring      2.8       36 20/04/2018
##      col 2645 col 2646 col 2647 col 2648 col 2649 col 2650   col 2651 col 2652
## 2463     1509      5.4      Yes   Spring     18.3      Yes No Holiday       43
## 2511      177     11.6      Yes   Spring     12.1      Yes No Holiday       97
## 8718     1990    -12.4      Yes   Autumn      1.8      Yes No Holiday       34
## 2986     2000      7.2      Yes   Spring     10.4      Yes No Holiday       81
## 1842     1990    -20.2      Yes   Winter      2.4      Yes    Holiday       17
## 3371      620      2.8      Yes   Spring     18.2      Yes No Holiday       36
##      col 2653   col 2654 col 2655 col 2656 col 2657 col 2658 col 2659 col 2660
## 2463      Yes No Holiday       43       43      Yes      705       14   Spring
## 2511      Yes No Holiday       97       97      Yes      289       14   Spring
## 8718      Yes No Holiday       34       34      Yes      126        5   Autumn
## 2986      Yes No Holiday       81       81      Yes      378        9   Spring
## 1842      Yes    Holiday       17       17      Yes      236       17   Winter
## 3371      Yes No Holiday       36       36      Yes      708       10   Spring
##      col 2661 col 2662 col 2663 col 2664 col 2665 col 2666 col 2667 col 2668
## 2463   Spring     1509        0     1509      Yes       14      5.4     2.43
## 2511   Spring      177        0      177      Yes       14     11.6     0.20
## 8718   Autumn     1990        0     1990      Yes        5    -12.4     0.00
## 2986   Spring     2000        0     2000      Yes        9      7.2     0.36
## 1842   Winter     1990        0     1990      Yes       17    -20.2     0.78
## 3371   Spring      620        0      620      Yes       10      2.8     1.99
##      col 2669 col 2670 col 2671 col 2672 col 2673   col 2674   col 2675
## 2463       14      705       43     1509        0 No Holiday No Holiday
## 2511       14      289       97      177        0 No Holiday No Holiday
## 8718        5      126       34     1990        0 No Holiday No Holiday
## 2986        9      378       81     2000        0 No Holiday No Holiday
## 1842       17      236       17     1990        0    Holiday    Holiday
## 3371       10      708       36      620        0 No Holiday No Holiday
##        col 2676 col 2677 col 2678   col 2679 col 2680 col 2681 col 2682
## 2463 No Holiday       14        0 13/03/2018      Yes        0      2.2
## 2511 No Holiday       14        0 15/03/2018      Yes        0      2.0
## 8718 No Holiday        5        0 29/11/2018      Yes        0      0.9
## 2986 No Holiday        9        0   4/4/2018      Yes        0      1.4
## 1842    Holiday       17        0 15/02/2018      Yes        0      3.1
## 3371 No Holiday       10        0 20/04/2018      Yes        0      1.0
##      col 2683 col 2684 col 2685 col 2686 col 2687 col 2688 col 2689 col 2690
## 2463      2.2       43      5.4      2.2      5.4        0      Yes        0
## 2511      2.0       97     11.6      2.0     11.6        0      Yes        0
## 8718      0.9       34    -12.4      0.9    -12.4        0      Yes        0
## 2986      1.4       81      7.2      1.4      7.2        0      Yes        0
## 1842      3.1       17    -20.2      3.1    -20.2        0      Yes        0
## 3371      1.0       36      2.8      1.0      2.8        0      Yes        0
##        col 2691 col 2692 col 2693   col 2694 col 2695 col 2696 col 2697
## 2463 13/03/2018       14     18.3 No Holiday      Yes      5.4      Yes
## 2511 15/03/2018       14     12.1 No Holiday      Yes     11.6      Yes
## 8718 29/11/2018        5      1.8 No Holiday      Yes    -12.4      Yes
## 2986   4/4/2018        9     10.4 No Holiday      Yes      7.2      Yes
## 1842 15/02/2018       17      2.4    Holiday      Yes    -20.2      Yes
## 3371 20/04/2018       10     18.2 No Holiday      Yes      2.8      Yes
##      col 2698 col 2699 col 2700 col 2701 col 2702   col 2703   col 2704
## 2463        0        0        0      5.4        0 13/03/2018 13/03/2018
## 2511        0        0        0     11.6        0 15/03/2018 15/03/2018
## 8718        0        0        0    -12.4        0 29/11/2018 29/11/2018
## 2986        0        0        0      7.2        0   4/4/2018   4/4/2018
## 1842        0        0        0    -20.2        0 15/02/2018 15/02/2018
## 3371        0        0        0      2.8        0 20/04/2018 20/04/2018
##      col 2705 col 2706   col 2707 col 2708   col 2709 col 2710   col 2711
## 2463        0      2.2 No Holiday       43 No Holiday      5.4 13/03/2018
## 2511        0      2.0 No Holiday       97 No Holiday     11.6 15/03/2018
## 8718        0      0.9 No Holiday       34 No Holiday    -12.4 29/11/2018
## 2986        0      1.4 No Holiday       81 No Holiday      7.2   4/4/2018
## 1842        0      3.1    Holiday       17    Holiday    -20.2 15/02/2018
## 3371        0      1.0 No Holiday       36 No Holiday      2.8 20/04/2018
##      col 2712 col 2713   col 2714 col 2715 col 2716   col 2717 col 2718
## 2463      2.2       43 No Holiday      705     2.43 No Holiday        0
## 2511      2.0       97 No Holiday      289     0.20 No Holiday        0
## 8718      0.9       34 No Holiday      126     0.00 No Holiday        0
## 2986      1.4       81 No Holiday      378     0.36 No Holiday        0
## 1842      3.1       17    Holiday      236     0.78    Holiday        0
## 3371      1.0       36 No Holiday      708     1.99 No Holiday        0
##      col 2719 col 2720 col 2721 col 2722 col 2723   col 2724   col 2725
## 2463      2.2        0     1509       43   Spring 13/03/2018 No Holiday
## 2511      2.0        0      177       97   Spring 15/03/2018 No Holiday
## 8718      0.9        0     1990       34   Autumn 29/11/2018 No Holiday
## 2986      1.4        0     2000       81   Spring   4/4/2018 No Holiday
## 1842      3.1        0     1990       17   Winter 15/02/2018    Holiday
## 3371      1.0        0      620       36   Spring 20/04/2018 No Holiday
##      col 2726 col 2727 col 2728 col 2729 col 2730 col 2731 col 2732 col 2733
## 2463        0      2.2        0     18.3     2.43      Yes      2.2      2.2
## 2511        0      2.0        0     12.1     0.20      Yes      2.0      2.0
## 8718        0      0.9        0      1.8     0.00      Yes      0.9      0.9
## 2986        0      1.4        0     10.4     0.36      Yes      1.4      1.4
## 1842        0      3.1        0      2.4     0.78      Yes      3.1      3.1
## 3371        0      1.0        0     18.2     1.99      Yes      1.0      1.0
##      col 2734 col 2735 col 2736 col 2737 col 2738 col 2739 col 2740 col 2741
## 2463       43        0      Yes     18.3     2.43   Spring        0        0
## 2511       97        0      Yes     12.1     0.20   Spring        0        0
## 8718       34        0      Yes      1.8     0.00   Autumn        0        0
## 2986       81        0      Yes     10.4     0.36   Spring        0        0
## 1842       17        0      Yes      2.4     0.78   Winter        0        0
## 3371       36        0      Yes     18.2     1.99   Spring        0        0
##        col 2742 col 2743 col 2744 col 2745 col 2746 col 2747 col 2748 col 2749
## 2463 13/03/2018       14   Spring      5.4      5.4      5.4     1509       14
## 2511 15/03/2018       14   Spring     11.6     11.6     11.6      177       14
## 8718 29/11/2018        5   Autumn    -12.4    -12.4    -12.4     1990        5
## 2986   4/4/2018        9   Spring      7.2      7.2      7.2     2000        9
## 1842 15/02/2018       17   Winter    -20.2    -20.2    -20.2     1990       17
## 3371 20/04/2018       10   Spring      2.8      2.8      2.8      620       10
##      col 2750 col 2751 col 2752   col 2753 col 2754 col 2755 col 2756 col 2757
## 2463     1509        0      Yes 13/03/2018        0      2.2     18.3       43
## 2511      177        0      Yes 15/03/2018        0      2.0     12.1       97
## 8718     1990        0      Yes 29/11/2018        0      0.9      1.8       34
## 2986     2000        0      Yes   4/4/2018        0      1.4     10.4       81
## 1842     1990        0      Yes 15/02/2018        0      3.1      2.4       17
## 3371      620        0      Yes 20/04/2018        0      1.0     18.2       36
##        col 2758 col 2759 col 2760   col 2761 col 2762   col 2763 col 2764
## 2463 No Holiday      Yes       14 No Holiday   Spring 13/03/2018      2.2
## 2511 No Holiday      Yes       14 No Holiday   Spring 15/03/2018      2.0
## 8718 No Holiday      Yes        5 No Holiday   Autumn 29/11/2018      0.9
## 2986 No Holiday      Yes        9 No Holiday   Spring   4/4/2018      1.4
## 1842    Holiday      Yes       17    Holiday   Winter 15/02/2018      3.1
## 3371 No Holiday      Yes       10 No Holiday   Spring 20/04/2018      1.0
##        col 2765 col 2766 col 2767 col 2768 col 2769 col 2770 col 2771 col 2772
## 2463 No Holiday        0        0      Yes   Spring      705      Yes      5.4
## 2511 No Holiday        0        0      Yes   Spring      289      Yes     11.6
## 8718 No Holiday        0        0      Yes   Autumn      126      Yes    -12.4
## 2986 No Holiday        0        0      Yes   Spring      378      Yes      7.2
## 1842    Holiday        0        0      Yes   Winter      236      Yes    -20.2
## 3371 No Holiday        0        0      Yes   Spring      708      Yes      2.8
##      col 2773 col 2774 col 2775 col 2776 col 2777 col 2778 col 2779 col 2780
## 2463       14       14      2.2      5.4       43       14      705        0
## 2511       14       14      2.0     11.6       97       14      289        0
## 8718        5        5      0.9    -12.4       34        5      126        0
## 2986        9        9      1.4      7.2       81        9      378        0
## 1842       17       17      3.1    -20.2       17       17      236        0
## 3371       10       10      1.0      2.8       36       10      708        0
##        col 2781 col 2782 col 2783 col 2784 col 2785 col 2786 col 2787 col 2788
## 2463 No Holiday       14       14      705     2.43      Yes        0       43
## 2511 No Holiday       14       14      289     0.20      Yes        0       97
## 8718 No Holiday        5        5      126     0.00      Yes        0       34
## 2986 No Holiday        9        9      378     0.36      Yes        0       81
## 1842    Holiday       17       17      236     0.78      Yes        0       17
## 3371 No Holiday       10       10      708     1.99      Yes        0       36
##      col 2789 col 2790 col 2791   col 2792   col 2793 col 2794 col 2795
## 2463        0        0      2.2 13/03/2018 13/03/2018     18.3        0
## 2511        0        0      2.0 15/03/2018 15/03/2018     12.1        0
## 8718        0        0      0.9 29/11/2018 29/11/2018      1.8        0
## 2986        0        0      1.4   4/4/2018   4/4/2018     10.4        0
## 1842        0        0      3.1 15/02/2018 15/02/2018      2.4        0
## 3371        0        0      1.0 20/04/2018 20/04/2018     18.2        0
##      col 2796 col 2797 col 2798 col 2799 col 2800 col 2801 col 2802 col 2803
## 2463     1509     18.3       43      Yes      Yes      2.2     2.43     2.43
## 2511      177     12.1       97      Yes      Yes      2.0     0.20     0.20
## 8718     1990      1.8       34      Yes      Yes      0.9     0.00     0.00
## 2986     2000     10.4       81      Yes      Yes      1.4     0.36     0.36
## 1842     1990      2.4       17      Yes      Yes      3.1     0.78     0.78
## 3371      620     18.2       36      Yes      Yes      1.0     1.99     1.99
##      col 2804 col 2805 col 2806 col 2807 col 2808 col 2809 col 2810 col 2811
## 2463   Spring      705        0     18.3        0     1509      5.4        0
## 2511   Spring      289        0     12.1        0      177     11.6        0
## 8718   Autumn      126        0      1.8        0     1990    -12.4        0
## 2986   Spring      378        0     10.4        0     2000      7.2        0
## 1842   Winter      236        0      2.4        0     1990    -20.2        0
## 3371   Spring      708        0     18.2        0      620      2.8        0
##      col 2812 col 2813 col 2814   col 2815 col 2816 col 2817 col 2818 col 2819
## 2463   Spring     18.3        0 13/03/2018        0      Yes       14        0
## 2511   Spring     12.1        0 15/03/2018        0      Yes       14        0
## 8718   Autumn      1.8        0 29/11/2018        0      Yes        5        0
## 2986   Spring     10.4        0   4/4/2018        0      Yes        9        0
## 1842   Winter      2.4        0 15/02/2018        0      Yes       17        0
## 3371   Spring     18.2        0 20/04/2018        0      Yes       10        0
##      col 2820 col 2821 col 2822 col 2823 col 2824 col 2825 col 2826   col 2827
## 2463      5.4     1509      5.4        0       14        0      2.2 No Holiday
## 2511     11.6      177     11.6        0       14        0      2.0 No Holiday
## 8718    -12.4     1990    -12.4        0        5        0      0.9 No Holiday
## 2986      7.2     2000      7.2        0        9        0      1.4 No Holiday
## 1842    -20.2     1990    -20.2        0       17        0      3.1    Holiday
## 3371      2.8      620      2.8        0       10        0      1.0 No Holiday
##        col 2828 col 2829 col 2830 col 2831 col 2832 col 2833 col 2834 col 2835
## 2463 No Holiday      Yes     1509     2.43      705        0       14      5.4
## 2511 No Holiday      Yes      177     0.20      289        0       14     11.6
## 8718 No Holiday      Yes     1990     0.00      126        0        5    -12.4
## 2986 No Holiday      Yes     2000     0.36      378        0        9      7.2
## 1842    Holiday      Yes     1990     0.78      236        0       17    -20.2
## 3371 No Holiday      Yes      620     1.99      708        0       10      2.8
##      col 2836   col 2837 col 2838 col 2839 col 2840   col 2841 col 2842
## 2463      Yes No Holiday      Yes     18.3       43 No Holiday     18.3
## 2511      Yes No Holiday      Yes     12.1       97 No Holiday     12.1
## 8718      Yes No Holiday      Yes      1.8       34 No Holiday      1.8
## 2986      Yes No Holiday      Yes     10.4       81 No Holiday     10.4
## 1842      Yes    Holiday      Yes      2.4       17    Holiday      2.4
## 3371      Yes No Holiday      Yes     18.2       36 No Holiday     18.2
##      col 2843   col 2844 col 2845   col 2846 col 2847   col 2848 col 2849
## 2463   Spring 13/03/2018       43 13/03/2018      5.4 13/03/2018       43
## 2511   Spring 15/03/2018       97 15/03/2018     11.6 15/03/2018       97
## 8718   Autumn 29/11/2018       34 29/11/2018    -12.4 29/11/2018       34
## 2986   Spring   4/4/2018       81   4/4/2018      7.2   4/4/2018       81
## 1842   Winter 15/02/2018       17 15/02/2018    -20.2 15/02/2018       17
## 3371   Spring 20/04/2018       36 20/04/2018      2.8 20/04/2018       36
##        col 2850 col 2851 col 2852 col 2853   col 2854 col 2855 col 2856
## 2463 13/03/2018     2.43     18.3   Spring 13/03/2018       43     2.43
## 2511 15/03/2018     0.20     12.1   Spring 15/03/2018       97     0.20
## 8718 29/11/2018     0.00      1.8   Autumn 29/11/2018       34     0.00
## 2986   4/4/2018     0.36     10.4   Spring   4/4/2018       81     0.36
## 1842 15/02/2018     0.78      2.4   Winter 15/02/2018       17     0.78
## 3371 20/04/2018     1.99     18.2   Spring 20/04/2018       36     1.99
##      col 2857 col 2858 col 2859 col 2860 col 2861 col 2862 col 2863 col 2864
## 2463       14     18.3        0      Yes     18.3     18.3        0        0
## 2511       14     12.1        0      Yes     12.1     12.1        0        0
## 8718        5      1.8        0      Yes      1.8      1.8        0        0
## 2986        9     10.4        0      Yes     10.4     10.4        0        0
## 1842       17      2.4        0      Yes      2.4      2.4        0        0
## 3371       10     18.2        0      Yes     18.2     18.2        0        0
##      col 2865 col 2866 col 2867 col 2868 col 2869   col 2870   col 2871
## 2463      Yes   Spring       14       14        0 No Holiday No Holiday
## 2511      Yes   Spring       14       14        0 No Holiday No Holiday
## 8718      Yes   Autumn        5        5        0 No Holiday No Holiday
## 2986      Yes   Spring        9        9        0 No Holiday No Holiday
## 1842      Yes   Winter       17       17        0    Holiday    Holiday
## 3371      Yes   Spring       10       10        0 No Holiday No Holiday
##        col 2872 col 2873 col 2874 col 2875 col 2876 col 2877 col 2878 col 2879
## 2463 No Holiday     2.43     18.3       14        0       14        0     18.3
## 2511 No Holiday     0.20     12.1       14        0       14        0     12.1
## 8718 No Holiday     0.00      1.8        5        0        5        0      1.8
## 2986 No Holiday     0.36     10.4        9        0        9        0     10.4
## 1842    Holiday     0.78      2.4       17        0       17        0      2.4
## 3371 No Holiday     1.99     18.2       10        0       10        0     18.2
##      col 2880 col 2881 col 2882 col 2883   col 2884 col 2885 col 2886 col 2887
## 2463        0        0   Spring      705 13/03/2018       43        0      2.2
## 2511        0        0   Spring      289 15/03/2018       97        0      2.0
## 8718        0        0   Autumn      126 29/11/2018       34        0      0.9
## 2986        0        0   Spring      378   4/4/2018       81        0      1.4
## 1842        0        0   Winter      236 15/02/2018       17        0      3.1
## 3371        0        0   Spring      708 20/04/2018       36        0      1.0
##      col 2888 col 2889 col 2890 col 2891 col 2892 col 2893 col 2894   col 2895
## 2463      2.2      Yes       43       43      705      5.4      Yes No Holiday
## 2511      2.0      Yes       97       97      289     11.6      Yes No Holiday
## 8718      0.9      Yes       34       34      126    -12.4      Yes No Holiday
## 2986      1.4      Yes       81       81      378      7.2      Yes No Holiday
## 1842      3.1      Yes       17       17      236    -20.2      Yes    Holiday
## 3371      1.0      Yes       36       36      708      2.8      Yes No Holiday
##      col 2896 col 2897 col 2898 col 2899 col 2900   col 2901 col 2902 col 2903
## 2463     2.43     2.43     1509        0      5.4 No Holiday   Spring     18.3
## 2511     0.20     0.20      177        0     11.6 No Holiday   Spring     12.1
## 8718     0.00     0.00     1990        0    -12.4 No Holiday   Autumn      1.8
## 2986     0.36     0.36     2000        0      7.2 No Holiday   Spring     10.4
## 1842     0.78     0.78     1990        0    -20.2    Holiday   Winter      2.4
## 3371     1.99     1.99      620        0      2.8 No Holiday   Spring     18.2
##      col 2904 col 2905 col 2906 col 2907 col 2908 col 2909 col 2910 col 2911
## 2463     18.3   Spring      705   Spring     2.43        0       14   Spring
## 2511     12.1   Spring      289   Spring     0.20        0       14   Spring
## 8718      1.8   Autumn      126   Autumn     0.00        0        5   Autumn
## 2986     10.4   Spring      378   Spring     0.36        0        9   Spring
## 1842      2.4   Winter      236   Winter     0.78        0       17   Winter
## 3371     18.2   Spring      708   Spring     1.99        0       10   Spring
##      col 2912 col 2913 col 2914 col 2915 col 2916   col 2917 col 2918 col 2919
## 2463      705     2.43   Spring       43        0 No Holiday   Spring      5.4
## 2511      289     0.20   Spring       97        0 No Holiday   Spring     11.6
## 8718      126     0.00   Autumn       34        0 No Holiday   Autumn    -12.4
## 2986      378     0.36   Spring       81        0 No Holiday   Spring      7.2
## 1842      236     0.78   Winter       17        0    Holiday   Winter    -20.2
## 3371      708     1.99   Spring       36        0 No Holiday   Spring      2.8
##      col 2920 col 2921 col 2922 col 2923 col 2924 col 2925 col 2926 col 2927
## 2463      5.4        0       14     18.3      5.4      705       14      2.2
## 2511     11.6        0       14     12.1     11.6      289       14      2.0
## 8718    -12.4        0        5      1.8    -12.4      126        5      0.9
## 2986      7.2        0        9     10.4      7.2      378        9      1.4
## 1842    -20.2        0       17      2.4    -20.2      236       17      3.1
## 3371      2.8        0       10     18.2      2.8      708       10      1.0
##      col 2928   col 2929 col 2930 col 2931 col 2932   col 2933   col 2934
## 2463      705 13/03/2018        0       14       14 No Holiday No Holiday
## 2511      289 15/03/2018        0       14       14 No Holiday No Holiday
## 8718      126 29/11/2018        0        5        5 No Holiday No Holiday
## 2986      378   4/4/2018        0        9        9 No Holiday No Holiday
## 1842      236 15/02/2018        0       17       17    Holiday    Holiday
## 3371      708 20/04/2018        0       10       10 No Holiday No Holiday
##      col 2935 col 2936 col 2937 col 2938 col 2939 col 2940 col 2941 col 2942
## 2463      2.2      5.4     1509      5.4     18.3       14      5.4        0
## 2511      2.0     11.6      177     11.6     12.1       14     11.6        0
## 8718      0.9    -12.4     1990    -12.4      1.8        5    -12.4        0
## 2986      1.4      7.2     2000      7.2     10.4        9      7.2        0
## 1842      3.1    -20.2     1990    -20.2      2.4       17    -20.2        0
## 3371      1.0      2.8      620      2.8     18.2       10      2.8        0
##        col 2943   col 2944 col 2945 col 2946 col 2947 col 2948 col 2949
## 2463 13/03/2018 No Holiday        0     2.43     1509      5.4   Spring
## 2511 15/03/2018 No Holiday        0     0.20      177     11.6   Spring
## 8718 29/11/2018 No Holiday        0     0.00     1990    -12.4   Autumn
## 2986   4/4/2018 No Holiday        0     0.36     2000      7.2   Spring
## 1842 15/02/2018    Holiday        0     0.78     1990    -20.2   Winter
## 3371 20/04/2018 No Holiday        0     1.99      620      2.8   Spring
##      col 2950 col 2951 col 2952 col 2953 col 2954 col 2955 col 2956   col 2957
## 2463      2.2        0   Spring      Yes     1509      Yes      2.2 No Holiday
## 2511      2.0        0   Spring      Yes      177      Yes      2.0 No Holiday
## 8718      0.9        0   Autumn      Yes     1990      Yes      0.9 No Holiday
## 2986      1.4        0   Spring      Yes     2000      Yes      1.4 No Holiday
## 1842      3.1        0   Winter      Yes     1990      Yes      3.1    Holiday
## 3371      1.0        0   Spring      Yes      620      Yes      1.0 No Holiday
##      col 2958 col 2959 col 2960 col 2961   col 2962 col 2963 col 2964
## 2463       14      Yes        0     1509 No Holiday        0      2.2
## 2511       14      Yes        0      177 No Holiday        0      2.0
## 8718        5      Yes        0     1990 No Holiday        0      0.9
## 2986        9      Yes        0     2000 No Holiday        0      1.4
## 1842       17      Yes        0     1990    Holiday        0      3.1
## 3371       10      Yes        0      620 No Holiday        0      1.0
##        col 2965 col 2966   col 2967 col 2968 col 2969 col 2970 col 2971
## 2463 No Holiday      Yes 13/03/2018      Yes     2.43        0      2.2
## 2511 No Holiday      Yes 15/03/2018      Yes     0.20        0      2.0
## 8718 No Holiday      Yes 29/11/2018      Yes     0.00        0      0.9
## 2986 No Holiday      Yes   4/4/2018      Yes     0.36        0      1.4
## 1842    Holiday      Yes 15/02/2018      Yes     0.78        0      3.1
## 3371 No Holiday      Yes 20/04/2018      Yes     1.99        0      1.0
##      col 2972 col 2973 col 2974 col 2975 col 2976 col 2977 col 2978 col 2979
## 2463   Spring      5.4   Spring       14      2.2      2.2     2.43      5.4
## 2511   Spring     11.6   Spring       14      2.0      2.0     0.20     11.6
## 8718   Autumn    -12.4   Autumn        5      0.9      0.9     0.00    -12.4
## 2986   Spring      7.2   Spring        9      1.4      1.4     0.36      7.2
## 1842   Winter    -20.2   Winter       17      3.1      3.1     0.78    -20.2
## 3371   Spring      2.8   Spring       10      1.0      1.0     1.99      2.8
##      col 2980 col 2981 col 2982   col 2983 col 2984 col 2985 col 2986 col 2987
## 2463       14     2.43        0 13/03/2018        0        0      2.2   Spring
## 2511       14     0.20        0 15/03/2018        0        0      2.0   Spring
## 8718        5     0.00        0 29/11/2018        0        0      0.9   Autumn
## 2986        9     0.36        0   4/4/2018        0        0      1.4   Spring
## 1842       17     0.78        0 15/02/2018        0        0      3.1   Winter
## 3371       10     1.99        0 20/04/2018        0        0      1.0   Spring
##      col 2988 col 2989 col 2990 col 2991 col 2992 col 2993   col 2994 col 2995
## 2463      705       14       43     2.43     18.3        0 No Holiday       14
## 2511      289       14       97     0.20     12.1        0 No Holiday       14
## 8718      126        5       34     0.00      1.8        0 No Holiday        5
## 2986      378        9       81     0.36     10.4        0 No Holiday        9
## 1842      236       17       17     0.78      2.4        0    Holiday       17
## 3371      708       10       36     1.99     18.2        0 No Holiday       10
##      col 2996 col 2997   col 2998 col 2999 col 3000 col 3001 col 3002 col 3003
## 2463      705      Yes No Holiday     2.43      705      Yes      2.2     18.3
## 2511      289      Yes No Holiday     0.20      289      Yes      2.0     12.1
## 8718      126      Yes No Holiday     0.00      126      Yes      0.9      1.8
## 2986      378      Yes No Holiday     0.36      378      Yes      1.4     10.4
## 1842      236      Yes    Holiday     0.78      236      Yes      3.1      2.4
## 3371      708      Yes No Holiday     1.99      708      Yes      1.0     18.2
##      col 3004 col 3005 col 3006 col 3007 col 3008 col 3009   col 3010 col 3011
## 2463       43      705     18.3        0   Spring      5.4 13/03/2018        0
## 2511       97      289     12.1        0   Spring     11.6 15/03/2018        0
## 8718       34      126      1.8        0   Autumn    -12.4 29/11/2018        0
## 2986       81      378     10.4        0   Spring      7.2   4/4/2018        0
## 1842       17      236      2.4        0   Winter    -20.2 15/02/2018        0
## 3371       36      708     18.2        0   Spring      2.8 20/04/2018        0
##      col 3012 col 3013 col 3014 col 3015   col 3016   col 3017 col 3018
## 2463       14     18.3        0       14 13/03/2018 No Holiday        0
## 2511       14     12.1        0       14 15/03/2018 No Holiday        0
## 8718        5      1.8        0        5 29/11/2018 No Holiday        0
## 2986        9     10.4        0        9   4/4/2018 No Holiday        0
## 1842       17      2.4        0       17 15/02/2018    Holiday        0
## 3371       10     18.2        0       10 20/04/2018 No Holiday        0
##      col 3019 col 3020 col 3021 col 3022 col 3023   col 3024 col 3025 col 3026
## 2463       14      2.2      Yes       14      5.4 No Holiday       14      5.4
## 2511       14      2.0      Yes       14     11.6 No Holiday       14     11.6
## 8718        5      0.9      Yes        5    -12.4 No Holiday        5    -12.4
## 2986        9      1.4      Yes        9      7.2 No Holiday        9      7.2
## 1842       17      3.1      Yes       17    -20.2    Holiday       17    -20.2
## 3371       10      1.0      Yes       10      2.8 No Holiday       10      2.8
##      col 3027 col 3028   col 3029 col 3030   col 3031 col 3032 col 3033
## 2463   Spring     2.43 No Holiday      5.4 13/03/2018     2.43      5.4
## 2511   Spring     0.20 No Holiday     11.6 15/03/2018     0.20     11.6
## 8718   Autumn     0.00 No Holiday    -12.4 29/11/2018     0.00    -12.4
## 2986   Spring     0.36 No Holiday      7.2   4/4/2018     0.36      7.2
## 1842   Winter     0.78    Holiday    -20.2 15/02/2018     0.78    -20.2
## 3371   Spring     1.99 No Holiday      2.8 20/04/2018     1.99      2.8
##      col 3034 col 3035 col 3036 col 3037 col 3038 col 3039 col 3040 col 3041
## 2463        0       43        0      Yes       43       43       43     1509
## 2511        0       97        0      Yes       97       97       97      177
## 8718        0       34        0      Yes       34       34       34     1990
## 2986        0       81        0      Yes       81       81       81     2000
## 1842        0       17        0      Yes       17       17       17     1990
## 3371        0       36        0      Yes       36       36       36      620
##      col 3042 col 3043 col 3044 col 3045 col 3046 col 3047 col 3048 col 3049
## 2463      2.2        0       14       14     18.3        0      2.2     2.43
## 2511      2.0        0       14       14     12.1        0      2.0     0.20
## 8718      0.9        0        5        5      1.8        0      0.9     0.00
## 2986      1.4        0        9        9     10.4        0      1.4     0.36
## 1842      3.1        0       17       17      2.4        0      3.1     0.78
## 3371      1.0        0       10       10     18.2        0      1.0     1.99
##      col 3050 col 3051 col 3052 col 3053 col 3054 col 3055 col 3056 col 3057
## 2463        0      2.2     1509       14   Spring        0      5.4     1509
## 2511        0      2.0      177       14   Spring        0     11.6      177
## 8718        0      0.9     1990        5   Autumn        0    -12.4     1990
## 2986        0      1.4     2000        9   Spring        0      7.2     2000
## 1842        0      3.1     1990       17   Winter        0    -20.2     1990
## 3371        0      1.0      620       10   Spring        0      2.8      620
##      col 3058 col 3059 col 3060 col 3061   col 3062 col 3063 col 3064 col 3065
## 2463      Yes      Yes      705      5.4 13/03/2018      5.4      5.4   Spring
## 2511      Yes      Yes      289     11.6 15/03/2018     11.6     11.6   Spring
## 8718      Yes      Yes      126    -12.4 29/11/2018    -12.4    -12.4   Autumn
## 2986      Yes      Yes      378      7.2   4/4/2018      7.2      7.2   Spring
## 1842      Yes      Yes      236    -20.2 15/02/2018    -20.2    -20.2   Winter
## 3371      Yes      Yes      708      2.8 20/04/2018      2.8      2.8   Spring
##        col 3066   col 3067 col 3068 col 3069 col 3070   col 3071 col 3072
## 2463 13/03/2018 No Holiday      2.2     2.43      5.4 No Holiday       43
## 2511 15/03/2018 No Holiday      2.0     0.20     11.6 No Holiday       97
## 8718 29/11/2018 No Holiday      0.9     0.00    -12.4 No Holiday       34
## 2986   4/4/2018 No Holiday      1.4     0.36      7.2 No Holiday       81
## 1842 15/02/2018    Holiday      3.1     0.78    -20.2    Holiday       17
## 3371 20/04/2018 No Holiday      1.0     1.99      2.8 No Holiday       36
##      col 3073 col 3074 col 3075 col 3076 col 3077 col 3078 col 3079 col 3080
## 2463       43      2.2     1509      Yes      705     2.43       43     2.43
## 2511       97      2.0      177      Yes      289     0.20       97     0.20
## 8718       34      0.9     1990      Yes      126     0.00       34     0.00
## 2986       81      1.4     2000      Yes      378     0.36       81     0.36
## 1842       17      3.1     1990      Yes      236     0.78       17     0.78
## 3371       36      1.0      620      Yes      708     1.99       36     1.99
##      col 3081 col 3082 col 3083 col 3084 col 3085 col 3086 col 3087 col 3088
## 2463   Spring      5.4     1509      Yes      Yes      2.2      705      5.4
## 2511   Spring     11.6      177      Yes      Yes      2.0      289     11.6
## 8718   Autumn    -12.4     1990      Yes      Yes      0.9      126    -12.4
## 2986   Spring      7.2     2000      Yes      Yes      1.4      378      7.2
## 1842   Winter    -20.2     1990      Yes      Yes      3.1      236    -20.2
## 3371   Spring      2.8      620      Yes      Yes      1.0      708      2.8
##      col 3089   col 3090 col 3091 col 3092 col 3093 col 3094 col 3095 col 3096
## 2463     1509 No Holiday     2.43     2.43       43        0       43        0
## 2511      177 No Holiday     0.20     0.20       97        0       97        0
## 8718     1990 No Holiday     0.00     0.00       34        0       34        0
## 2986     2000 No Holiday     0.36     0.36       81        0       81        0
## 1842     1990    Holiday     0.78     0.78       17        0       17        0
## 3371      620 No Holiday     1.99     1.99       36        0       36        0
##      col 3097   col 3098 col 3099   col 3100 col 3101 col 3102 col 3103
## 2463       43 13/03/2018     1509 No Holiday      5.4        0      2.2
## 2511       97 15/03/2018      177 No Holiday     11.6        0      2.0
## 8718       34 29/11/2018     1990 No Holiday    -12.4        0      0.9
## 2986       81   4/4/2018     2000 No Holiday      7.2        0      1.4
## 1842       17 15/02/2018     1990    Holiday    -20.2        0      3.1
## 3371       36 20/04/2018      620 No Holiday      2.8        0      1.0
##      col 3104 col 3105 col 3106 col 3107 col 3108 col 3109 col 3110 col 3111
## 2463        0       43       43        0     18.3     2.43     2.43     2.43
## 2511        0       97       97        0     12.1     0.20     0.20     0.20
## 8718        0       34       34        0      1.8     0.00     0.00     0.00
## 2986        0       81       81        0     10.4     0.36     0.36     0.36
## 1842        0       17       17        0      2.4     0.78     0.78     0.78
## 3371        0       36       36        0     18.2     1.99     1.99     1.99
##      col 3112 col 3113 col 3114 col 3115   col 3116   col 3117 col 3118
## 2463     2.43     18.3      5.4        0 13/03/2018 13/03/2018      2.2
## 2511     0.20     12.1     11.6        0 15/03/2018 15/03/2018      2.0
## 8718     0.00      1.8    -12.4        0 29/11/2018 29/11/2018      0.9
## 2986     0.36     10.4      7.2        0   4/4/2018   4/4/2018      1.4
## 1842     0.78      2.4    -20.2        0 15/02/2018 15/02/2018      3.1
## 3371     1.99     18.2      2.8        0 20/04/2018 20/04/2018      1.0
##      col 3119 col 3120 col 3121 col 3122 col 3123 col 3124   col 3125 col 3126
## 2463        0     2.43        0     18.3      Yes       43 13/03/2018        0
## 2511        0     0.20        0     12.1      Yes       97 15/03/2018        0
## 8718        0     0.00        0      1.8      Yes       34 29/11/2018        0
## 2986        0     0.36        0     10.4      Yes       81   4/4/2018        0
## 1842        0     0.78        0      2.4      Yes       17 15/02/2018        0
## 3371        0     1.99        0     18.2      Yes       36 20/04/2018        0
##        col 3127 col 3128 col 3129 col 3130 col 3131 col 3132 col 3133 col 3134
## 2463 No Holiday      705      2.2      2.2      Yes       14      5.4       14
## 2511 No Holiday      289      2.0      2.0      Yes       14     11.6       14
## 8718 No Holiday      126      0.9      0.9      Yes        5    -12.4        5
## 2986 No Holiday      378      1.4      1.4      Yes        9      7.2        9
## 1842    Holiday      236      3.1      3.1      Yes       17    -20.2       17
## 3371 No Holiday      708      1.0      1.0      Yes       10      2.8       10
##      col 3135 col 3136   col 3137 col 3138 col 3139 col 3140   col 3141
## 2463     1509       14 13/03/2018      Yes        0      5.4 No Holiday
## 2511      177       14 15/03/2018      Yes        0     11.6 No Holiday
## 8718     1990        5 29/11/2018      Yes        0    -12.4 No Holiday
## 2986     2000        9   4/4/2018      Yes        0      7.2 No Holiday
## 1842     1990       17 15/02/2018      Yes        0    -20.2    Holiday
## 3371      620       10 20/04/2018      Yes        0      2.8 No Holiday
##      col 3142 col 3143 col 3144 col 3145 col 3146 col 3147 col 3148 col 3149
## 2463      Yes      705     18.3      2.2      2.2       43      2.2      2.2
## 2511      Yes      289     12.1      2.0      2.0       97      2.0      2.0
## 8718      Yes      126      1.8      0.9      0.9       34      0.9      0.9
## 2986      Yes      378     10.4      1.4      1.4       81      1.4      1.4
## 1842      Yes      236      2.4      3.1      3.1       17      3.1      3.1
## 3371      Yes      708     18.2      1.0      1.0       36      1.0      1.0
##      col 3150 col 3151 col 3152 col 3153 col 3154   col 3155 col 3156
## 2463      2.2       43      Yes      705        0 13/03/2018      5.4
## 2511      2.0       97      Yes      289        0 15/03/2018     11.6
## 8718      0.9       34      Yes      126        0 29/11/2018    -12.4
## 2986      1.4       81      Yes      378        0   4/4/2018      7.2
## 1842      3.1       17      Yes      236        0 15/02/2018    -20.2
## 3371      1.0       36      Yes      708        0 20/04/2018      2.8
##        col 3157 col 3158 col 3159 col 3160 col 3161 col 3162 col 3163 col 3164
## 2463 13/03/2018        0   Spring      5.4      Yes      2.2      5.4       14
## 2511 15/03/2018        0   Spring     11.6      Yes      2.0     11.6       14
## 8718 29/11/2018        0   Autumn    -12.4      Yes      0.9    -12.4        5
## 2986   4/4/2018        0   Spring      7.2      Yes      1.4      7.2        9
## 1842 15/02/2018        0   Winter    -20.2      Yes      3.1    -20.2       17
## 3371 20/04/2018        0   Spring      2.8      Yes      1.0      2.8       10
##      col 3165 col 3166 col 3167 col 3168 col 3169 col 3170 col 3171 col 3172
## 2463        0     1509      2.2       43       43     1509      705        0
## 2511        0      177      2.0       97       97      177      289        0
## 8718        0     1990      0.9       34       34     1990      126        0
## 2986        0     2000      1.4       81       81     2000      378        0
## 1842        0     1990      3.1       17       17     1990      236        0
## 3371        0      620      1.0       36       36      620      708        0
##        col 3173 col 3174 col 3175 col 3176 col 3177   col 3178 col 3179
## 2463 13/03/2018      5.4   Spring   Spring     2.43 13/03/2018      Yes
## 2511 15/03/2018     11.6   Spring   Spring     0.20 15/03/2018      Yes
## 8718 29/11/2018    -12.4   Autumn   Autumn     0.00 29/11/2018      Yes
## 2986   4/4/2018      7.2   Spring   Spring     0.36   4/4/2018      Yes
## 1842 15/02/2018    -20.2   Winter   Winter     0.78 15/02/2018      Yes
## 3371 20/04/2018      2.8   Spring   Spring     1.99 20/04/2018      Yes
##      col 3180 col 3181 col 3182 col 3183 col 3184 col 3185 col 3186   col 3187
## 2463     2.43       43     2.43      5.4     1509      2.2        0 13/03/2018
## 2511     0.20       97     0.20     11.6      177      2.0        0 15/03/2018
## 8718     0.00       34     0.00    -12.4     1990      0.9        0 29/11/2018
## 2986     0.36       81     0.36      7.2     2000      1.4        0   4/4/2018
## 1842     0.78       17     0.78    -20.2     1990      3.1        0 15/02/2018
## 3371     1.99       36     1.99      2.8      620      1.0        0 20/04/2018
##        col 3188 col 3189 col 3190 col 3191 col 3192 col 3193 col 3194 col 3195
## 2463 No Holiday      Yes     1509     1509       14     1509        0      2.2
## 2511 No Holiday      Yes      177      177       14      177        0      2.0
## 8718 No Holiday      Yes     1990     1990        5     1990        0      0.9
## 2986 No Holiday      Yes     2000     2000        9     2000        0      1.4
## 1842    Holiday      Yes     1990     1990       17     1990        0      3.1
## 3371 No Holiday      Yes      620      620       10      620        0      1.0
##      col 3196 col 3197   col 3198 col 3199   col 3200 col 3201 col 3202
## 2463        0      705 No Holiday     1509 No Holiday       14     1509
## 2511        0      289 No Holiday      177 No Holiday       14      177
## 8718        0      126 No Holiday     1990 No Holiday        5     1990
## 2986        0      378 No Holiday     2000 No Holiday        9     2000
## 1842        0      236    Holiday     1990    Holiday       17     1990
## 3371        0      708 No Holiday      620 No Holiday       10      620
##      col 3203 col 3204 col 3205 col 3206 col 3207   col 3208 col 3209
## 2463     1509      2.2       43       43     2.43 No Holiday        0
## 2511      177      2.0       97       97     0.20 No Holiday        0
## 8718     1990      0.9       34       34     0.00 No Holiday        0
## 2986     2000      1.4       81       81     0.36 No Holiday        0
## 1842     1990      3.1       17       17     0.78    Holiday        0
## 3371      620      1.0       36       36     1.99 No Holiday        0
##        col 3210 col 3211 col 3212 col 3213 col 3214 col 3215 col 3216 col 3217
## 2463 13/03/2018       14   Spring      2.2        0       43      5.4      705
## 2511 15/03/2018       14   Spring      2.0        0       97     11.6      289
## 8718 29/11/2018        5   Autumn      0.9        0       34    -12.4      126
## 2986   4/4/2018        9   Spring      1.4        0       81      7.2      378
## 1842 15/02/2018       17   Winter      3.1        0       17    -20.2      236
## 3371 20/04/2018       10   Spring      1.0        0       36      2.8      708
##        col 3218 col 3219 col 3220   col 3221 col 3222   col 3223 col 3224
## 2463 13/03/2018      705     2.43 13/03/2018     2.43 No Holiday     2.43
## 2511 15/03/2018      289     0.20 15/03/2018     0.20 No Holiday     0.20
## 8718 29/11/2018      126     0.00 29/11/2018     0.00 No Holiday     0.00
## 2986   4/4/2018      378     0.36   4/4/2018     0.36 No Holiday     0.36
## 1842 15/02/2018      236     0.78 15/02/2018     0.78    Holiday     0.78
## 3371 20/04/2018      708     1.99 20/04/2018     1.99 No Holiday     1.99
##      col 3225 col 3226 col 3227 col 3228   col 3229 col 3230 col 3231 col 3232
## 2463       43     2.43        0      5.4 No Holiday      Yes     2.43     1509
## 2511       97     0.20        0     11.6 No Holiday      Yes     0.20      177
## 8718       34     0.00        0    -12.4 No Holiday      Yes     0.00     1990
## 2986       81     0.36        0      7.2 No Holiday      Yes     0.36     2000
## 1842       17     0.78        0    -20.2    Holiday      Yes     0.78     1990
## 3371       36     1.99        0      2.8 No Holiday      Yes     1.99      620
##      col 3233 col 3234 col 3235 col 3236 col 3237   col 3238 col 3239 col 3240
## 2463     2.43   Spring      Yes   Spring        0 13/03/2018      Yes   Spring
## 2511     0.20   Spring      Yes   Spring        0 15/03/2018      Yes   Spring
## 8718     0.00   Autumn      Yes   Autumn        0 29/11/2018      Yes   Autumn
## 2986     0.36   Spring      Yes   Spring        0   4/4/2018      Yes   Spring
## 1842     0.78   Winter      Yes   Winter        0 15/02/2018      Yes   Winter
## 3371     1.99   Spring      Yes   Spring        0 20/04/2018      Yes   Spring
##      col 3241 col 3242 col 3243 col 3244   col 3245 col 3246   col 3247
## 2463     2.43        0      2.2        0 No Holiday        0 13/03/2018
## 2511     0.20        0      2.0        0 No Holiday        0 15/03/2018
## 8718     0.00        0      0.9        0 No Holiday        0 29/11/2018
## 2986     0.36        0      1.4        0 No Holiday        0   4/4/2018
## 1842     0.78        0      3.1        0    Holiday        0 15/02/2018
## 3371     1.99        0      1.0        0 No Holiday        0 20/04/2018
##      col 3248 col 3249 col 3250 col 3251   col 3252 col 3253   col 3254
## 2463       43      Yes      5.4     1509 No Holiday       43 13/03/2018
## 2511       97      Yes     11.6      177 No Holiday       97 15/03/2018
## 8718       34      Yes    -12.4     1990 No Holiday       34 29/11/2018
## 2986       81      Yes      7.2     2000 No Holiday       81   4/4/2018
## 1842       17      Yes    -20.2     1990    Holiday       17 15/02/2018
## 3371       36      Yes      2.8      620 No Holiday       36 20/04/2018
##      col 3255 col 3256 col 3257   col 3258 col 3259 col 3260 col 3261
## 2463        0   Spring     2.43 No Holiday     18.3      2.2     18.3
## 2511        0   Spring     0.20 No Holiday     12.1      2.0     12.1
## 8718        0   Autumn     0.00 No Holiday      1.8      0.9      1.8
## 2986        0   Spring     0.36 No Holiday     10.4      1.4     10.4
## 1842        0   Winter     0.78    Holiday      2.4      3.1      2.4
## 3371        0   Spring     1.99 No Holiday     18.2      1.0     18.2
##        col 3262 col 3263 col 3264 col 3265 col 3266 col 3267 col 3268 col 3269
## 2463 No Holiday        0      705        0      5.4       43     1509       43
## 2511 No Holiday        0      289        0     11.6       97      177       97
## 8718 No Holiday        0      126        0    -12.4       34     1990       34
## 2986 No Holiday        0      378        0      7.2       81     2000       81
## 1842    Holiday        0      236        0    -20.2       17     1990       17
## 3371 No Holiday        0      708        0      2.8       36      620       36
##      col 3270 col 3271 col 3272 col 3273 col 3274 col 3275 col 3276   col 3277
## 2463        0       14     2.43      2.2       14      705      2.2 13/03/2018
## 2511        0       14     0.20      2.0       14      289      2.0 15/03/2018
## 8718        0        5     0.00      0.9        5      126      0.9 29/11/2018
## 2986        0        9     0.36      1.4        9      378      1.4   4/4/2018
## 1842        0       17     0.78      3.1       17      236      3.1 15/02/2018
## 3371        0       10     1.99      1.0       10      708      1.0 20/04/2018
##      col 3278 col 3279 col 3280 col 3281 col 3282 col 3283 col 3284 col 3285
## 2463        0       14      705     18.3        0     2.43     1509     18.3
## 2511        0       14      289     12.1        0     0.20      177     12.1
## 8718        0        5      126      1.8        0     0.00     1990      1.8
## 2986        0        9      378     10.4        0     0.36     2000     10.4
## 1842        0       17      236      2.4        0     0.78     1990      2.4
## 3371        0       10      708     18.2        0     1.99      620     18.2
##      col 3286 col 3287 col 3288 col 3289 col 3290 col 3291 col 3292 col 3293
## 2463        0     1509       43     2.43      5.4      2.2     1509        0
## 2511        0      177       97     0.20     11.6      2.0      177        0
## 8718        0     1990       34     0.00    -12.4      0.9     1990        0
## 2986        0     2000       81     0.36      7.2      1.4     2000        0
## 1842        0     1990       17     0.78    -20.2      3.1     1990        0
## 3371        0      620       36     1.99      2.8      1.0      620        0
##      col 3294 col 3295 col 3296 col 3297 col 3298 col 3299 col 3300 col 3301
## 2463        0       14     2.43      705     18.3      Yes        0      5.4
## 2511        0       14     0.20      289     12.1      Yes        0     11.6
## 8718        0        5     0.00      126      1.8      Yes        0    -12.4
## 2986        0        9     0.36      378     10.4      Yes        0      7.2
## 1842        0       17     0.78      236      2.4      Yes        0    -20.2
## 3371        0       10     1.99      708     18.2      Yes        0      2.8
##      col 3302 col 3303 col 3304 col 3305 col 3306 col 3307 col 3308   col 3309
## 2463      5.4     1509      705       14      705        0        0 13/03/2018
## 2511     11.6      177      289       14      289        0        0 15/03/2018
## 8718    -12.4     1990      126        5      126        0        0 29/11/2018
## 2986      7.2     2000      378        9      378        0        0   4/4/2018
## 1842    -20.2     1990      236       17      236        0        0 15/02/2018
## 3371      2.8      620      708       10      708        0        0 20/04/2018
##      col 3310 col 3311   col 3312 col 3313 col 3314 col 3315 col 3316 col 3317
## 2463        0     2.43 13/03/2018      5.4      705     1509       43       43
## 2511        0     0.20 15/03/2018     11.6      289      177       97       97
## 8718        0     0.00 29/11/2018    -12.4      126     1990       34       34
## 2986        0     0.36   4/4/2018      7.2      378     2000       81       81
## 1842        0     0.78 15/02/2018    -20.2      236     1990       17       17
## 3371        0     1.99 20/04/2018      2.8      708      620       36       36
##      col 3318 col 3319 col 3320   col 3321 col 3322 col 3323 col 3324 col 3325
## 2463       43     2.43        0 No Holiday     2.43       14      705        0
## 2511       97     0.20        0 No Holiday     0.20       14      289        0
## 8718       34     0.00        0 No Holiday     0.00        5      126        0
## 2986       81     0.36        0 No Holiday     0.36        9      378        0
## 1842       17     0.78        0    Holiday     0.78       17      236        0
## 3371       36     1.99        0 No Holiday     1.99       10      708        0
##      col 3326 col 3327   col 3328   col 3329 col 3330   col 3331 col 3332
## 2463        0       14 No Holiday No Holiday        0 13/03/2018      2.2
## 2511        0       14 No Holiday No Holiday        0 15/03/2018      2.0
## 8718        0        5 No Holiday No Holiday        0 29/11/2018      0.9
## 2986        0        9 No Holiday No Holiday        0   4/4/2018      1.4
## 1842        0       17    Holiday    Holiday        0 15/02/2018      3.1
## 3371        0       10 No Holiday No Holiday        0 20/04/2018      1.0
##      col 3333 col 3334 col 3335 col 3336   col 3337 col 3338 col 3339 col 3340
## 2463     1509     18.3        0   Spring 13/03/2018     2.43     2.43     1509
## 2511      177     12.1        0   Spring 15/03/2018     0.20     0.20      177
## 8718     1990      1.8        0   Autumn 29/11/2018     0.00     0.00     1990
## 2986     2000     10.4        0   Spring   4/4/2018     0.36     0.36     2000
## 1842     1990      2.4        0   Winter 15/02/2018     0.78     0.78     1990
## 3371      620     18.2        0   Spring 20/04/2018     1.99     1.99      620
##        col 3341 col 3342 col 3343 col 3344 col 3345 col 3346 col 3347 col 3348
## 2463 No Holiday      5.4      5.4     1509      2.2     2.43        0      2.2
## 2511 No Holiday     11.6     11.6      177      2.0     0.20        0      2.0
## 8718 No Holiday    -12.4    -12.4     1990      0.9     0.00        0      0.9
## 2986 No Holiday      7.2      7.2     2000      1.4     0.36        0      1.4
## 1842    Holiday    -20.2    -20.2     1990      3.1     0.78        0      3.1
## 3371 No Holiday      2.8      2.8      620      1.0     1.99        0      1.0
##      col 3349   col 3350 col 3351   col 3352 col 3353 col 3354 col 3355
## 2463       14 No Holiday     18.3 13/03/2018     18.3     2.43       14
## 2511       14 No Holiday     12.1 15/03/2018     12.1     0.20       14
## 8718        5 No Holiday      1.8 29/11/2018      1.8     0.00        5
## 2986        9 No Holiday     10.4   4/4/2018     10.4     0.36        9
## 1842       17    Holiday      2.4 15/02/2018      2.4     0.78       17
## 3371       10 No Holiday     18.2 20/04/2018     18.2     1.99       10
##      col 3356   col 3357 col 3358 col 3359 col 3360 col 3361 col 3362 col 3363
## 2463       43 No Holiday      2.2      705     18.3        0       14     18.3
## 2511       97 No Holiday      2.0      289     12.1        0       14     12.1
## 8718       34 No Holiday      0.9      126      1.8        0        5      1.8
## 2986       81 No Holiday      1.4      378     10.4        0        9     10.4
## 1842       17    Holiday      3.1      236      2.4        0       17      2.4
## 3371       36 No Holiday      1.0      708     18.2        0       10     18.2
##      col 3364 col 3365 col 3366 col 3367   col 3368 col 3369 col 3370 col 3371
## 2463        0       43      Yes        0 No Holiday   Spring     2.43   Spring
## 2511        0       97      Yes        0 No Holiday   Spring     0.20   Spring
## 8718        0       34      Yes        0 No Holiday   Autumn     0.00   Autumn
## 2986        0       81      Yes        0 No Holiday   Spring     0.36   Spring
## 1842        0       17      Yes        0    Holiday   Winter     0.78   Winter
## 3371        0       36      Yes        0 No Holiday   Spring     1.99   Spring
##      col 3372 col 3373 col 3374 col 3375 col 3376 col 3377   col 3378 col 3379
## 2463        0     2.43      5.4      Yes      5.4     1509 No Holiday     18.3
## 2511        0     0.20     11.6      Yes     11.6      177 No Holiday     12.1
## 8718        0     0.00    -12.4      Yes    -12.4     1990 No Holiday      1.8
## 2986        0     0.36      7.2      Yes      7.2     2000 No Holiday     10.4
## 1842        0     0.78    -20.2      Yes    -20.2     1990    Holiday      2.4
## 3371        0     1.99      2.8      Yes      2.8      620 No Holiday     18.2
##      col 3380 col 3381 col 3382 col 3383 col 3384 col 3385 col 3386 col 3387
## 2463      Yes      Yes      2.2      705      705     18.3      2.2     1509
## 2511      Yes      Yes      2.0      289      289     12.1      2.0      177
## 8718      Yes      Yes      0.9      126      126      1.8      0.9     1990
## 2986      Yes      Yes      1.4      378      378     10.4      1.4     2000
## 1842      Yes      Yes      3.1      236      236      2.4      3.1     1990
## 3371      Yes      Yes      1.0      708      708     18.2      1.0      620
##      col 3388 col 3389 col 3390   col 3391 col 3392 col 3393 col 3394 col 3395
## 2463   Spring        0       43 13/03/2018       14       14        0       43
## 2511   Spring        0       97 15/03/2018       14       14        0       97
## 8718   Autumn        0       34 29/11/2018        5        5        0       34
## 2986   Spring        0       81   4/4/2018        9        9        0       81
## 1842   Winter        0       17 15/02/2018       17       17        0       17
## 3371   Spring        0       36 20/04/2018       10       10        0       36
##      col 3396 col 3397 col 3398 col 3399 col 3400 col 3401 col 3402 col 3403
## 2463       43       43      5.4       14        0      5.4        0     18.3
## 2511       97       97     11.6       14        0     11.6        0     12.1
## 8718       34       34    -12.4        5        0    -12.4        0      1.8
## 2986       81       81      7.2        9        0      7.2        0     10.4
## 1842       17       17    -20.2       17        0    -20.2        0      2.4
## 3371       36       36      2.8       10        0      2.8        0     18.2
##      col 3404 col 3405 col 3406 col 3407   col 3408 col 3409 col 3410 col 3411
## 2463   Spring       14       43      5.4 13/03/2018        0        0      Yes
## 2511   Spring       14       97     11.6 15/03/2018        0        0      Yes
## 8718   Autumn        5       34    -12.4 29/11/2018        0        0      Yes
## 2986   Spring        9       81      7.2   4/4/2018        0        0      Yes
## 1842   Winter       17       17    -20.2 15/02/2018        0        0      Yes
## 3371   Spring       10       36      2.8 20/04/2018        0        0      Yes
##      col 3412 col 3413 col 3414 col 3415 col 3416 col 3417   col 3418 col 3419
## 2463     1509       43     2.43     2.43     2.43   Spring No Holiday       14
## 2511      177       97     0.20     0.20     0.20   Spring No Holiday       14
## 8718     1990       34     0.00     0.00     0.00   Autumn No Holiday        5
## 2986     2000       81     0.36     0.36     0.36   Spring No Holiday        9
## 1842     1990       17     0.78     0.78     0.78   Winter    Holiday       17
## 3371      620       36     1.99     1.99     1.99   Spring No Holiday       10
##      col 3420   col 3421 col 3422 col 3423 col 3424 col 3425 col 3426
## 2463      705 13/03/2018     2.43       43     18.3   Spring      705
## 2511      289 15/03/2018     0.20       97     12.1   Spring      289
## 8718      126 29/11/2018     0.00       34      1.8   Autumn      126
## 2986      378   4/4/2018     0.36       81     10.4   Spring      378
## 1842      236 15/02/2018     0.78       17      2.4   Winter      236
## 3371      708 20/04/2018     1.99       36     18.2   Spring      708
##        col 3427 col 3428   col 3429 col 3430 col 3431 col 3432   col 3433
## 2463 13/03/2018      Yes No Holiday     2.43     2.43   Spring 13/03/2018
## 2511 15/03/2018      Yes No Holiday     0.20     0.20   Spring 15/03/2018
## 8718 29/11/2018      Yes No Holiday     0.00     0.00   Autumn 29/11/2018
## 2986   4/4/2018      Yes No Holiday     0.36     0.36   Spring   4/4/2018
## 1842 15/02/2018      Yes    Holiday     0.78     0.78   Winter 15/02/2018
## 3371 20/04/2018      Yes No Holiday     1.99     1.99   Spring 20/04/2018
##      col 3434 col 3435 col 3436 col 3437 col 3438 col 3439 col 3440 col 3441
## 2463      Yes     1509       43        0      Yes        0      Yes     2.43
## 2511      Yes      177       97        0      Yes        0      Yes     0.20
## 8718      Yes     1990       34        0      Yes        0      Yes     0.00
## 2986      Yes     2000       81        0      Yes        0      Yes     0.36
## 1842      Yes     1990       17        0      Yes        0      Yes     0.78
## 3371      Yes      620       36        0      Yes        0      Yes     1.99
##      col 3442 col 3443 col 3444 col 3445 col 3446 col 3447 col 3448 col 3449
## 2463      Yes       43     2.43       43       43     18.3     1509     18.3
## 2511      Yes       97     0.20       97       97     12.1      177     12.1
## 8718      Yes       34     0.00       34       34      1.8     1990      1.8
## 2986      Yes       81     0.36       81       81     10.4     2000     10.4
## 1842      Yes       17     0.78       17       17      2.4     1990      2.4
## 3371      Yes       36     1.99       36       36     18.2      620     18.2
##      col 3450 col 3451 col 3452 col 3453 col 3454 col 3455 col 3456 col 3457
## 2463     1509        0      Yes      2.2      705        0        0        0
## 2511      177        0      Yes      2.0      289        0        0        0
## 8718     1990        0      Yes      0.9      126        0        0        0
## 2986     2000        0      Yes      1.4      378        0        0        0
## 1842     1990        0      Yes      3.1      236        0        0        0
## 3371      620        0      Yes      1.0      708        0        0        0
##      col 3458 col 3459 col 3460 col 3461   col 3462 col 3463 col 3464 col 3465
## 2463       43       14     2.43      2.2 No Holiday     1509      705        0
## 2511       97       14     0.20      2.0 No Holiday      177      289        0
## 8718       34        5     0.00      0.9 No Holiday     1990      126        0
## 2986       81        9     0.36      1.4 No Holiday     2000      378        0
## 1842       17       17     0.78      3.1    Holiday     1990      236        0
## 3371       36       10     1.99      1.0 No Holiday      620      708        0
##      col 3466   col 3467 col 3468 col 3469 col 3470 col 3471 col 3472 col 3473
## 2463      5.4 No Holiday        0        0      705     2.43        0      705
## 2511     11.6 No Holiday        0        0      289     0.20        0      289
## 8718    -12.4 No Holiday        0        0      126     0.00        0      126
## 2986      7.2 No Holiday        0        0      378     0.36        0      378
## 1842    -20.2    Holiday        0        0      236     0.78        0      236
## 3371      2.8 No Holiday        0        0      708     1.99        0      708
##      col 3474 col 3475 col 3476 col 3477 col 3478 col 3479   col 3480 col 3481
## 2463      2.2      705      5.4       14        0      Yes No Holiday       14
## 2511      2.0      289     11.6       14        0      Yes No Holiday       14
## 8718      0.9      126    -12.4        5        0      Yes No Holiday        5
## 2986      1.4      378      7.2        9        0      Yes No Holiday        9
## 1842      3.1      236    -20.2       17        0      Yes    Holiday       17
## 3371      1.0      708      2.8       10        0      Yes No Holiday       10
##      col 3482 col 3483 col 3484 col 3485   col 3486 col 3487 col 3488 col 3489
## 2463      705     2.43        0        0 13/03/2018     2.43      Yes      Yes
## 2511      289     0.20        0        0 15/03/2018     0.20      Yes      Yes
## 8718      126     0.00        0        0 29/11/2018     0.00      Yes      Yes
## 2986      378     0.36        0        0   4/4/2018     0.36      Yes      Yes
## 1842      236     0.78        0        0 15/02/2018     0.78      Yes      Yes
## 3371      708     1.99        0        0 20/04/2018     1.99      Yes      Yes
##      col 3490 col 3491 col 3492 col 3493 col 3494 col 3495 col 3496   col 3497
## 2463   Spring       14      5.4      5.4        0      5.4      Yes No Holiday
## 2511   Spring       14     11.6     11.6        0     11.6      Yes No Holiday
## 8718   Autumn        5    -12.4    -12.4        0    -12.4      Yes No Holiday
## 2986   Spring        9      7.2      7.2        0      7.2      Yes No Holiday
## 1842   Winter       17    -20.2    -20.2        0    -20.2      Yes    Holiday
## 3371   Spring       10      2.8      2.8        0      2.8      Yes No Holiday
##        col 3498 col 3499 col 3500 col 3501 col 3502 col 3503 col 3504 col 3505
## 2463 No Holiday     18.3      705      705      Yes     2.43      5.4        0
## 2511 No Holiday     12.1      289      289      Yes     0.20     11.6        0
## 8718 No Holiday      1.8      126      126      Yes     0.00    -12.4        0
## 2986 No Holiday     10.4      378      378      Yes     0.36      7.2        0
## 1842    Holiday      2.4      236      236      Yes     0.78    -20.2        0
## 3371 No Holiday     18.2      708      708      Yes     1.99      2.8        0
##        col 3506   col 3507 col 3508 col 3509 col 3510   col 3511 col 3512
## 2463 13/03/2018 No Holiday        0     1509       14 13/03/2018        0
## 2511 15/03/2018 No Holiday        0      177       14 15/03/2018        0
## 8718 29/11/2018 No Holiday        0     1990        5 29/11/2018        0
## 2986   4/4/2018 No Holiday        0     2000        9   4/4/2018        0
## 1842 15/02/2018    Holiday        0     1990       17 15/02/2018        0
## 3371 20/04/2018 No Holiday        0      620       10 20/04/2018        0
##        col 3513 col 3514 col 3515   col 3516   col 3517 col 3518 col 3519
## 2463 No Holiday     2.43      5.4 No Holiday 13/03/2018   Spring      705
## 2511 No Holiday     0.20     11.6 No Holiday 15/03/2018   Spring      289
## 8718 No Holiday     0.00    -12.4 No Holiday 29/11/2018   Autumn      126
## 2986 No Holiday     0.36      7.2 No Holiday   4/4/2018   Spring      378
## 1842    Holiday     0.78    -20.2    Holiday 15/02/2018   Winter      236
## 3371 No Holiday     1.99      2.8 No Holiday 20/04/2018   Spring      708
##      col 3520 col 3521 col 3522 col 3523 col 3524 col 3525 col 3526 col 3527
## 2463      705     1509       14        0      705     1509      5.4     18.3
## 2511      289      177       14        0      289      177     11.6     12.1
## 8718      126     1990        5        0      126     1990    -12.4      1.8
## 2986      378     2000        9        0      378     2000      7.2     10.4
## 1842      236     1990       17        0      236     1990    -20.2      2.4
## 3371      708      620       10        0      708      620      2.8     18.2
##      col 3528 col 3529 col 3530 col 3531 col 3532 col 3533 col 3534 col 3535
## 2463       14        0       43     1509       14        0     2.43      705
## 2511       14        0       97      177       14        0     0.20      289
## 8718        5        0       34     1990        5        0     0.00      126
## 2986        9        0       81     2000        9        0     0.36      378
## 1842       17        0       17     1990       17        0     0.78      236
## 3371       10        0       36      620       10        0     1.99      708
##      col 3536 col 3537 col 3538 col 3539 col 3540 col 3541   col 3542 col 3543
## 2463     2.43       43        0      705      2.2     18.3 No Holiday     2.43
## 2511     0.20       97        0      289      2.0     12.1 No Holiday     0.20
## 8718     0.00       34        0      126      0.9      1.8 No Holiday     0.00
## 2986     0.36       81        0      378      1.4     10.4 No Holiday     0.36
## 1842     0.78       17        0      236      3.1      2.4    Holiday     0.78
## 3371     1.99       36        0      708      1.0     18.2 No Holiday     1.99
##      col 3544 col 3545 col 3546 col 3547 col 3548   col 3549 col 3550 col 3551
## 2463     2.43     1509      2.2     1509      5.4 No Holiday      2.2      2.2
## 2511     0.20      177      2.0      177     11.6 No Holiday      2.0      2.0
## 8718     0.00     1990      0.9     1990    -12.4 No Holiday      0.9      0.9
## 2986     0.36     2000      1.4     2000      7.2 No Holiday      1.4      1.4
## 1842     0.78     1990      3.1     1990    -20.2    Holiday      3.1      3.1
## 3371     1.99      620      1.0      620      2.8 No Holiday      1.0      1.0
##      col 3552 col 3553 col 3554 col 3555 col 3556 col 3557 col 3558 col 3559
## 2463      2.2       14      5.4     18.3       43       14     2.43     1509
## 2511      2.0       14     11.6     12.1       97       14     0.20      177
## 8718      0.9        5    -12.4      1.8       34        5     0.00     1990
## 2986      1.4        9      7.2     10.4       81        9     0.36     2000
## 1842      3.1       17    -20.2      2.4       17       17     0.78     1990
## 3371      1.0       10      2.8     18.2       36       10     1.99      620
##      col 3560 col 3561 col 3562 col 3563 col 3564   col 3565 col 3566
## 2463      2.2        0      5.4      5.4      2.2 13/03/2018     18.3
## 2511      2.0        0     11.6     11.6      2.0 15/03/2018     12.1
## 8718      0.9        0    -12.4    -12.4      0.9 29/11/2018      1.8
## 2986      1.4        0      7.2      7.2      1.4   4/4/2018     10.4
## 1842      3.1        0    -20.2    -20.2      3.1 15/02/2018      2.4
## 3371      1.0        0      2.8      2.8      1.0 20/04/2018     18.2
##        col 3567   col 3568 col 3569 col 3570 col 3571 col 3572 col 3573
## 2463 13/03/2018 No Holiday       43        0      Yes        0      Yes
## 2511 15/03/2018 No Holiday       97        0      Yes        0      Yes
## 8718 29/11/2018 No Holiday       34        0      Yes        0      Yes
## 2986   4/4/2018 No Holiday       81        0      Yes        0      Yes
## 1842 15/02/2018    Holiday       17        0      Yes        0      Yes
## 3371 20/04/2018 No Holiday       36        0      Yes        0      Yes
##      col 3574 col 3575 col 3576 col 3577 col 3578 col 3579 col 3580 col 3581
## 2463      Yes        0     1509     18.3     1509       43     2.43     2.43
## 2511      Yes        0      177     12.1      177       97     0.20     0.20
## 8718      Yes        0     1990      1.8     1990       34     0.00     0.00
## 2986      Yes        0     2000     10.4     2000       81     0.36     0.36
## 1842      Yes        0     1990      2.4     1990       17     0.78     0.78
## 3371      Yes        0      620     18.2      620       36     1.99     1.99
##      col 3582 col 3583 col 3584 col 3585 col 3586 col 3587 col 3588   col 3589
## 2463      5.4        0        0       43      2.2   Spring       14 13/03/2018
## 2511     11.6        0        0       97      2.0   Spring       14 15/03/2018
## 8718    -12.4        0        0       34      0.9   Autumn        5 29/11/2018
## 2986      7.2        0        0       81      1.4   Spring        9   4/4/2018
## 1842    -20.2        0        0       17      3.1   Winter       17 15/02/2018
## 3371      2.8        0        0       36      1.0   Spring       10 20/04/2018
##        col 3590 col 3591 col 3592 col 3593   col 3594 col 3595   col 3596
## 2463 No Holiday      2.2   Spring      Yes 13/03/2018        0 13/03/2018
## 2511 No Holiday      2.0   Spring      Yes 15/03/2018        0 15/03/2018
## 8718 No Holiday      0.9   Autumn      Yes 29/11/2018        0 29/11/2018
## 2986 No Holiday      1.4   Spring      Yes   4/4/2018        0   4/4/2018
## 1842    Holiday      3.1   Winter      Yes 15/02/2018        0 15/02/2018
## 3371 No Holiday      1.0   Spring      Yes 20/04/2018        0 20/04/2018
##      col 3597 col 3598 col 3599 col 3600 col 3601 col 3602 col 3603 col 3604
## 2463       43   Spring        0     18.3        0      2.2      705       14
## 2511       97   Spring        0     12.1        0      2.0      289       14
## 8718       34   Autumn        0      1.8        0      0.9      126        5
## 2986       81   Spring        0     10.4        0      1.4      378        9
## 1842       17   Winter        0      2.4        0      3.1      236       17
## 3371       36   Spring        0     18.2        0      1.0      708       10
##      col 3605 col 3606 col 3607 col 3608 col 3609 col 3610 col 3611 col 3612
## 2463     1509       43        0        0     1509       14        0     1509
## 2511      177       97        0        0      177       14        0      177
## 8718     1990       34        0        0     1990        5        0     1990
## 2986     2000       81        0        0     2000        9        0     2000
## 1842     1990       17        0        0     1990       17        0     1990
## 3371      620       36        0        0      620       10        0      620
##      col 3613 col 3614 col 3615 col 3616 col 3617 col 3618 col 3619 col 3620
## 2463       14        0        0     1509      705      705      Yes        0
## 2511       14        0        0      177      289      289      Yes        0
## 8718        5        0        0     1990      126      126      Yes        0
## 2986        9        0        0     2000      378      378      Yes        0
## 1842       17        0        0     1990      236      236      Yes        0
## 3371       10        0        0      620      708      708      Yes        0
##        col 3621   col 3622 col 3623 col 3624 col 3625 col 3626 col 3627
## 2463 13/03/2018 13/03/2018        0        0       14     18.3      Yes
## 2511 15/03/2018 15/03/2018        0        0       14     12.1      Yes
## 8718 29/11/2018 29/11/2018        0        0        5      1.8      Yes
## 2986   4/4/2018   4/4/2018        0        0        9     10.4      Yes
## 1842 15/02/2018 15/02/2018        0        0       17      2.4      Yes
## 3371 20/04/2018 20/04/2018        0        0       10     18.2      Yes
##      col 3628 col 3629 col 3630 col 3631   col 3632 col 3633 col 3634 col 3635
## 2463     1509      705       14      Yes 13/03/2018        0      2.2     1509
## 2511      177      289       14      Yes 15/03/2018        0      2.0      177
## 8718     1990      126        5      Yes 29/11/2018        0      0.9     1990
## 2986     2000      378        9      Yes   4/4/2018        0      1.4     2000
## 1842     1990      236       17      Yes 15/02/2018        0      3.1     1990
## 3371      620      708       10      Yes 20/04/2018        0      1.0      620
##      col 3636 col 3637 col 3638   col 3639   col 3640 col 3641 col 3642
## 2463       14     2.43      5.4 13/03/2018 No Holiday      5.4      5.4
## 2511       14     0.20     11.6 15/03/2018 No Holiday     11.6     11.6
## 8718        5     0.00    -12.4 29/11/2018 No Holiday    -12.4    -12.4
## 2986        9     0.36      7.2   4/4/2018 No Holiday      7.2      7.2
## 1842       17     0.78    -20.2 15/02/2018    Holiday    -20.2    -20.2
## 3371       10     1.99      2.8 20/04/2018 No Holiday      2.8      2.8
##      col 3643 col 3644 col 3645 col 3646 col 3647 col 3648 col 3649 col 3650
## 2463        0     1509       14       43   Spring      Yes     18.3       14
## 2511        0      177       14       97   Spring      Yes     12.1       14
## 8718        0     1990        5       34   Autumn      Yes      1.8        5
## 2986        0     2000        9       81   Spring      Yes     10.4        9
## 1842        0     1990       17       17   Winter      Yes      2.4       17
## 3371        0      620       10       36   Spring      Yes     18.2       10
##      col 3651 col 3652 col 3653 col 3654 col 3655 col 3656 col 3657 col 3658
## 2463        0     1509     18.3     2.43     1509       43        0       14
## 2511        0      177     12.1     0.20      177       97        0       14
## 8718        0     1990      1.8     0.00     1990       34        0        5
## 2986        0     2000     10.4     0.36     2000       81        0        9
## 1842        0     1990      2.4     0.78     1990       17        0       17
## 3371        0      620     18.2     1.99      620       36        0       10
##      col 3659 col 3660   col 3661 col 3662   col 3663 col 3664 col 3665
## 2463       14   Spring 13/03/2018        0 13/03/2018      5.4       43
## 2511       14   Spring 15/03/2018        0 15/03/2018     11.6       97
## 8718        5   Autumn 29/11/2018        0 29/11/2018    -12.4       34
## 2986        9   Spring   4/4/2018        0   4/4/2018      7.2       81
## 1842       17   Winter 15/02/2018        0 15/02/2018    -20.2       17
## 3371       10   Spring 20/04/2018        0 20/04/2018      2.8       36
##      col 3666   col 3667 col 3668 col 3669 col 3670 col 3671 col 3672 col 3673
## 2463     1509 13/03/2018     2.43     2.43        0      Yes       14     18.3
## 2511      177 15/03/2018     0.20     0.20        0      Yes       14     12.1
## 8718     1990 29/11/2018     0.00     0.00        0      Yes        5      1.8
## 2986     2000   4/4/2018     0.36     0.36        0      Yes        9     10.4
## 1842     1990 15/02/2018     0.78     0.78        0      Yes       17      2.4
## 3371      620 20/04/2018     1.99     1.99        0      Yes       10     18.2
##      col 3674   col 3675 col 3676 col 3677 col 3678 col 3679   col 3680
## 2463     1509 13/03/2018      705       43      2.2        0 No Holiday
## 2511      177 15/03/2018      289       97      2.0        0 No Holiday
## 8718     1990 29/11/2018      126       34      0.9        0 No Holiday
## 2986     2000   4/4/2018      378       81      1.4        0 No Holiday
## 1842     1990 15/02/2018      236       17      3.1        0    Holiday
## 3371      620 20/04/2018      708       36      1.0        0 No Holiday
##      col 3681 col 3682 col 3683 col 3684 col 3685   col 3686   col 3687
## 2463        0      705      Yes       43        0 No Holiday 13/03/2018
## 2511        0      289      Yes       97        0 No Holiday 15/03/2018
## 8718        0      126      Yes       34        0 No Holiday 29/11/2018
## 2986        0      378      Yes       81        0 No Holiday   4/4/2018
## 1842        0      236      Yes       17        0    Holiday 15/02/2018
## 3371        0      708      Yes       36        0 No Holiday 20/04/2018
##      col 3688 col 3689 col 3690 col 3691 col 3692   col 3693 col 3694
## 2463      2.2      705     1509        0   Spring 13/03/2018      5.4
## 2511      2.0      289      177        0   Spring 15/03/2018     11.6
## 8718      0.9      126     1990        0   Autumn 29/11/2018    -12.4
## 2986      1.4      378     2000        0   Spring   4/4/2018      7.2
## 1842      3.1      236     1990        0   Winter 15/02/2018    -20.2
## 3371      1.0      708      620        0   Spring 20/04/2018      2.8
##        col 3695 col 3696 col 3697 col 3698   col 3699 col 3700 col 3701
## 2463 13/03/2018       43     2.43     1509 No Holiday     1509       43
## 2511 15/03/2018       97     0.20      177 No Holiday      177       97
## 8718 29/11/2018       34     0.00     1990 No Holiday     1990       34
## 2986   4/4/2018       81     0.36     2000 No Holiday     2000       81
## 1842 15/02/2018       17     0.78     1990    Holiday     1990       17
## 3371 20/04/2018       36     1.99      620 No Holiday      620       36
##        col 3702 col 3703 col 3704 col 3705 col 3706   col 3707 col 3708
## 2463 No Holiday      705      705        0       14 13/03/2018        0
## 2511 No Holiday      289      289        0       14 15/03/2018        0
## 8718 No Holiday      126      126        0        5 29/11/2018        0
## 2986 No Holiday      378      378        0        9   4/4/2018        0
## 1842    Holiday      236      236        0       17 15/02/2018        0
## 3371 No Holiday      708      708        0       10 20/04/2018        0
##      col 3709 col 3710 col 3711   col 3712 col 3713   col 3714 col 3715
## 2463      5.4      Yes       43 No Holiday      705 No Holiday      5.4
## 2511     11.6      Yes       97 No Holiday      289 No Holiday     11.6
## 8718    -12.4      Yes       34 No Holiday      126 No Holiday    -12.4
## 2986      7.2      Yes       81 No Holiday      378 No Holiday      7.2
## 1842    -20.2      Yes       17    Holiday      236    Holiday    -20.2
## 3371      2.8      Yes       36 No Holiday      708 No Holiday      2.8
##      col 3716 col 3717 col 3718 col 3719 col 3720 col 3721 col 3722   col 3723
## 2463      Yes       43     1509     2.43     1509        0      Yes No Holiday
## 2511      Yes       97      177     0.20      177        0      Yes No Holiday
## 8718      Yes       34     1990     0.00     1990        0      Yes No Holiday
## 2986      Yes       81     2000     0.36     2000        0      Yes No Holiday
## 1842      Yes       17     1990     0.78     1990        0      Yes    Holiday
## 3371      Yes       36      620     1.99      620        0      Yes No Holiday
##      col 3724 col 3725 col 3726 col 3727 col 3728   col 3729 col 3730 col 3731
## 2463        0      Yes        0   Spring      Yes 13/03/2018      2.2       43
## 2511        0      Yes        0   Spring      Yes 15/03/2018      2.0       97
## 8718        0      Yes        0   Autumn      Yes 29/11/2018      0.9       34
## 2986        0      Yes        0   Spring      Yes   4/4/2018      1.4       81
## 1842        0      Yes        0   Winter      Yes 15/02/2018      3.1       17
## 3371        0      Yes        0   Spring      Yes 20/04/2018      1.0       36
##      col 3732 col 3733 col 3734 col 3735 col 3736   col 3737   col 3738
## 2463     2.43      2.2   Spring     1509      5.4 13/03/2018 No Holiday
## 2511     0.20      2.0   Spring      177     11.6 15/03/2018 No Holiday
## 8718     0.00      0.9   Autumn     1990    -12.4 29/11/2018 No Holiday
## 2986     0.36      1.4   Spring     2000      7.2   4/4/2018 No Holiday
## 1842     0.78      3.1   Winter     1990    -20.2 15/02/2018    Holiday
## 3371     1.99      1.0   Spring      620      2.8 20/04/2018 No Holiday
##      col 3739   col 3740   col 3741 col 3742 col 3743   col 3744 col 3745
## 2463      2.2 13/03/2018 13/03/2018     2.43      5.4 No Holiday       43
## 2511      2.0 15/03/2018 15/03/2018     0.20     11.6 No Holiday       97
## 8718      0.9 29/11/2018 29/11/2018     0.00    -12.4 No Holiday       34
## 2986      1.4   4/4/2018   4/4/2018     0.36      7.2 No Holiday       81
## 1842      3.1 15/02/2018 15/02/2018     0.78    -20.2    Holiday       17
## 3371      1.0 20/04/2018 20/04/2018     1.99      2.8 No Holiday       36
##      col 3746 col 3747 col 3748 col 3749 col 3750 col 3751 col 3752 col 3753
## 2463   Spring      5.4   Spring        0      5.4       14      5.4      705
## 2511   Spring     11.6   Spring        0     11.6       14     11.6      289
## 8718   Autumn    -12.4   Autumn        0    -12.4        5    -12.4      126
## 2986   Spring      7.2   Spring        0      7.2        9      7.2      378
## 1842   Winter    -20.2   Winter        0    -20.2       17    -20.2      236
## 3371   Spring      2.8   Spring        0      2.8       10      2.8      708
##      col 3754 col 3755 col 3756 col 3757 col 3758 col 3759   col 3760 col 3761
## 2463     2.43     18.3        0        0       43        0 No Holiday      5.4
## 2511     0.20     12.1        0        0       97        0 No Holiday     11.6
## 8718     0.00      1.8        0        0       34        0 No Holiday    -12.4
## 2986     0.36     10.4        0        0       81        0 No Holiday      7.2
## 1842     0.78      2.4        0        0       17        0    Holiday    -20.2
## 3371     1.99     18.2        0        0       36        0 No Holiday      2.8
##      col 3762 col 3763 col 3764 col 3765 col 3766 col 3767 col 3768 col 3769
## 2463     1509   Spring        0     2.43     1509   Spring     2.43       43
## 2511      177   Spring        0     0.20      177   Spring     0.20       97
## 8718     1990   Autumn        0     0.00     1990   Autumn     0.00       34
## 2986     2000   Spring        0     0.36     2000   Spring     0.36       81
## 1842     1990   Winter        0     0.78     1990   Winter     0.78       17
## 3371      620   Spring        0     1.99      620   Spring     1.99       36
##      col 3770 col 3771 col 3772 col 3773 col 3774 col 3775   col 3776 col 3777
## 2463   Spring      Yes       14      5.4      Yes     2.43 No Holiday        0
## 2511   Spring      Yes       14     11.6      Yes     0.20 No Holiday        0
## 8718   Autumn      Yes        5    -12.4      Yes     0.00 No Holiday        0
## 2986   Spring      Yes        9      7.2      Yes     0.36 No Holiday        0
## 1842   Winter      Yes       17    -20.2      Yes     0.78    Holiday        0
## 3371   Spring      Yes       10      2.8      Yes     1.99 No Holiday        0
##      col 3778 col 3779 col 3780 col 3781 col 3782 col 3783 col 3784 col 3785
## 2463      705     1509        0        0       14     1509     1509      2.2
## 2511      289      177        0        0       14      177      177      2.0
## 8718      126     1990        0        0        5     1990     1990      0.9
## 2986      378     2000        0        0        9     2000     2000      1.4
## 1842      236     1990        0        0       17     1990     1990      3.1
## 3371      708      620        0        0       10      620      620      1.0
##      col 3786 col 3787 col 3788 col 3789 col 3790 col 3791 col 3792 col 3793
## 2463       43     18.3     2.43      Yes      Yes     2.43   Spring       14
## 2511       97     12.1     0.20      Yes      Yes     0.20   Spring       14
## 8718       34      1.8     0.00      Yes      Yes     0.00   Autumn        5
## 2986       81     10.4     0.36      Yes      Yes     0.36   Spring        9
## 1842       17      2.4     0.78      Yes      Yes     0.78   Winter       17
## 3371       36     18.2     1.99      Yes      Yes     1.99   Spring       10
##      col 3794 col 3795 col 3796 col 3797 col 3798 col 3799 col 3800 col 3801
## 2463       43        0     18.3      5.4      5.4     1509       14        0
## 2511       97        0     12.1     11.6     11.6      177       14        0
## 8718       34        0      1.8    -12.4    -12.4     1990        5        0
## 2986       81        0     10.4      7.2      7.2     2000        9        0
## 1842       17        0      2.4    -20.2    -20.2     1990       17        0
## 3371       36        0     18.2      2.8      2.8      620       10        0
##        col 3802   col 3803   col 3804 col 3805 col 3806 col 3807 col 3808
## 2463 No Holiday 13/03/2018 No Holiday      705     2.43     2.43       43
## 2511 No Holiday 15/03/2018 No Holiday      289     0.20     0.20       97
## 8718 No Holiday 29/11/2018 No Holiday      126     0.00     0.00       34
## 2986 No Holiday   4/4/2018 No Holiday      378     0.36     0.36       81
## 1842    Holiday 15/02/2018    Holiday      236     0.78     0.78       17
## 3371 No Holiday 20/04/2018 No Holiday      708     1.99     1.99       36
##      col 3809 col 3810   col 3811 col 3812 col 3813 col 3814 col 3815
## 2463       14       43 13/03/2018        0      2.2       14       43
## 2511       14       97 15/03/2018        0      2.0       14       97
## 8718        5       34 29/11/2018        0      0.9        5       34
## 2986        9       81   4/4/2018        0      1.4        9       81
## 1842       17       17 15/02/2018        0      3.1       17       17
## 3371       10       36 20/04/2018        0      1.0       10       36
##        col 3816   col 3817   col 3818 col 3819   col 3820   col 3821   col 3822
## 2463 13/03/2018 No Holiday No Holiday        0 13/03/2018 No Holiday 13/03/2018
## 2511 15/03/2018 No Holiday No Holiday        0 15/03/2018 No Holiday 15/03/2018
## 8718 29/11/2018 No Holiday No Holiday        0 29/11/2018 No Holiday 29/11/2018
## 2986   4/4/2018 No Holiday No Holiday        0   4/4/2018 No Holiday   4/4/2018
## 1842 15/02/2018    Holiday    Holiday        0 15/02/2018    Holiday 15/02/2018
## 3371 20/04/2018 No Holiday No Holiday        0 20/04/2018 No Holiday 20/04/2018
##      col 3823 col 3824 col 3825 col 3826 col 3827 col 3828 col 3829 col 3830
## 2463     2.43   Spring        0        0      Yes      705        0      705
## 2511     0.20   Spring        0        0      Yes      289        0      289
## 8718     0.00   Autumn        0        0      Yes      126        0      126
## 2986     0.36   Spring        0        0      Yes      378        0      378
## 1842     0.78   Winter        0        0      Yes      236        0      236
## 3371     1.99   Spring        0        0      Yes      708        0      708
##      col 3831   col 3832   col 3833 col 3834 col 3835 col 3836   col 3837
## 2463      5.4 13/03/2018 No Holiday     18.3      5.4        0 No Holiday
## 2511     11.6 15/03/2018 No Holiday     12.1     11.6        0 No Holiday
## 8718    -12.4 29/11/2018 No Holiday      1.8    -12.4        0 No Holiday
## 2986      7.2   4/4/2018 No Holiday     10.4      7.2        0 No Holiday
## 1842    -20.2 15/02/2018    Holiday      2.4    -20.2        0    Holiday
## 3371      2.8 20/04/2018 No Holiday     18.2      2.8        0 No Holiday
##      col 3838 col 3839 col 3840 col 3841 col 3842 col 3843 col 3844 col 3845
## 2463       14       14     2.43      705     1509     2.43      705       43
## 2511       14       14     0.20      289      177     0.20      289       97
## 8718        5        5     0.00      126     1990     0.00      126       34
## 2986        9        9     0.36      378     2000     0.36      378       81
## 1842       17       17     0.78      236     1990     0.78      236       17
## 3371       10       10     1.99      708      620     1.99      708       36
##      col 3846 col 3847   col 3848 col 3849 col 3850 col 3851   col 3852
## 2463      Yes      Yes 13/03/2018       43     18.3      2.2 No Holiday
## 2511      Yes      Yes 15/03/2018       97     12.1      2.0 No Holiday
## 8718      Yes      Yes 29/11/2018       34      1.8      0.9 No Holiday
## 2986      Yes      Yes   4/4/2018       81     10.4      1.4 No Holiday
## 1842      Yes      Yes 15/02/2018       17      2.4      3.1    Holiday
## 3371      Yes      Yes 20/04/2018       36     18.2      1.0 No Holiday
##      col 3853 col 3854 col 3855 col 3856 col 3857 col 3858 col 3859 col 3860
## 2463      Yes      2.2   Spring       14       14       43       14       14
## 2511      Yes      2.0   Spring       14       14       97       14       14
## 8718      Yes      0.9   Autumn        5        5       34        5        5
## 2986      Yes      1.4   Spring        9        9       81        9        9
## 1842      Yes      3.1   Winter       17       17       17       17       17
## 3371      Yes      1.0   Spring       10       10       36       10       10
##      col 3861   col 3862 col 3863 col 3864 col 3865   col 3866 col 3867
## 2463      Yes No Holiday     18.3      705      2.2 No Holiday        0
## 2511      Yes No Holiday     12.1      289      2.0 No Holiday        0
## 8718      Yes No Holiday      1.8      126      0.9 No Holiday        0
## 2986      Yes No Holiday     10.4      378      1.4 No Holiday        0
## 1842      Yes    Holiday      2.4      236      3.1    Holiday        0
## 3371      Yes No Holiday     18.2      708      1.0 No Holiday        0
##        col 3868   col 3869   col 3870 col 3871 col 3872 col 3873 col 3874
## 2463 13/03/2018 No Holiday 13/03/2018     1509      2.2      Yes      5.4
## 2511 15/03/2018 No Holiday 15/03/2018      177      2.0      Yes     11.6
## 8718 29/11/2018 No Holiday 29/11/2018     1990      0.9      Yes    -12.4
## 2986   4/4/2018 No Holiday   4/4/2018     2000      1.4      Yes      7.2
## 1842 15/02/2018    Holiday 15/02/2018     1990      3.1      Yes    -20.2
## 3371 20/04/2018 No Holiday 20/04/2018      620      1.0      Yes      2.8
##        col 3875   col 3876 col 3877 col 3878 col 3879 col 3880 col 3881
## 2463 13/03/2018 13/03/2018      Yes        0        0      5.4      705
## 2511 15/03/2018 15/03/2018      Yes        0        0     11.6      289
## 8718 29/11/2018 29/11/2018      Yes        0        0    -12.4      126
## 2986   4/4/2018   4/4/2018      Yes        0        0      7.2      378
## 1842 15/02/2018 15/02/2018      Yes        0        0    -20.2      236
## 3371 20/04/2018 20/04/2018      Yes        0        0      2.8      708
##      col 3882 col 3883 col 3884 col 3885 col 3886 col 3887 col 3888 col 3889
## 2463        0       43        0        0     2.43       43      2.2       43
## 2511        0       97        0        0     0.20       97      2.0       97
## 8718        0       34        0        0     0.00       34      0.9       34
## 2986        0       81        0        0     0.36       81      1.4       81
## 1842        0       17        0        0     0.78       17      3.1       17
## 3371        0       36        0        0     1.99       36      1.0       36
##      col 3890 col 3891 col 3892 col 3893 col 3894 col 3895 col 3896 col 3897
## 2463     2.43      Yes     18.3       43     18.3      705     2.43      2.2
## 2511     0.20      Yes     12.1       97     12.1      289     0.20      2.0
## 8718     0.00      Yes      1.8       34      1.8      126     0.00      0.9
## 2986     0.36      Yes     10.4       81     10.4      378     0.36      1.4
## 1842     0.78      Yes      2.4       17      2.4      236     0.78      3.1
## 3371     1.99      Yes     18.2       36     18.2      708     1.99      1.0
##      col 3898 col 3899 col 3900 col 3901 col 3902 col 3903 col 3904 col 3905
## 2463     2.43     2.43   Spring     2.43     1509      705       14     1509
## 2511     0.20     0.20   Spring     0.20      177      289       14      177
## 8718     0.00     0.00   Autumn     0.00     1990      126        5     1990
## 2986     0.36     0.36   Spring     0.36     2000      378        9     2000
## 1842     0.78     0.78   Winter     0.78     1990      236       17     1990
## 3371     1.99     1.99   Spring     1.99      620      708       10      620
##      col 3906 col 3907 col 3908 col 3909 col 3910 col 3911 col 3912 col 3913
## 2463       43        0      5.4   Spring       43      5.4      2.2      Yes
## 2511       97        0     11.6   Spring       97     11.6      2.0      Yes
## 8718       34        0    -12.4   Autumn       34    -12.4      0.9      Yes
## 2986       81        0      7.2   Spring       81      7.2      1.4      Yes
## 1842       17        0    -20.2   Winter       17    -20.2      3.1      Yes
## 3371       36        0      2.8   Spring       36      2.8      1.0      Yes
##      col 3914   col 3915 col 3916 col 3917 col 3918 col 3919   col 3920
## 2463        0 No Holiday   Spring       14      5.4        0 No Holiday
## 2511        0 No Holiday   Spring       14     11.6        0 No Holiday
## 8718        0 No Holiday   Autumn        5    -12.4        0 No Holiday
## 2986        0 No Holiday   Spring        9      7.2        0 No Holiday
## 1842        0    Holiday   Winter       17    -20.2        0    Holiday
## 3371        0 No Holiday   Spring       10      2.8        0 No Holiday
##      col 3921 col 3922 col 3923   col 3924   col 3925 col 3926   col 3927
## 2463     2.43     2.43       43 No Holiday 13/03/2018   Spring 13/03/2018
## 2511     0.20     0.20       97 No Holiday 15/03/2018   Spring 15/03/2018
## 8718     0.00     0.00       34 No Holiday 29/11/2018   Autumn 29/11/2018
## 2986     0.36     0.36       81 No Holiday   4/4/2018   Spring   4/4/2018
## 1842     0.78     0.78       17    Holiday 15/02/2018   Winter 15/02/2018
## 3371     1.99     1.99       36 No Holiday 20/04/2018   Spring 20/04/2018
##        col 3928 col 3929 col 3930 col 3931 col 3932 col 3933 col 3934 col 3935
## 2463 No Holiday       14     2.43      705      5.4     1509        0      Yes
## 2511 No Holiday       14     0.20      289     11.6      177        0      Yes
## 8718 No Holiday        5     0.00      126    -12.4     1990        0      Yes
## 2986 No Holiday        9     0.36      378      7.2     2000        0      Yes
## 1842    Holiday       17     0.78      236    -20.2     1990        0      Yes
## 3371 No Holiday       10     1.99      708      2.8      620        0      Yes
##      col 3936 col 3937 col 3938 col 3939 col 3940   col 3941 col 3942 col 3943
## 2463        0       14     2.43     2.43     18.3 13/03/2018     2.43      Yes
## 2511        0       14     0.20     0.20     12.1 15/03/2018     0.20      Yes
## 8718        0        5     0.00     0.00      1.8 29/11/2018     0.00      Yes
## 2986        0        9     0.36     0.36     10.4   4/4/2018     0.36      Yes
## 1842        0       17     0.78     0.78      2.4 15/02/2018     0.78      Yes
## 3371        0       10     1.99     1.99     18.2 20/04/2018     1.99      Yes
##      col 3944 col 3945 col 3946 col 3947 col 3948 col 3949 col 3950 col 3951
## 2463      Yes       14     2.43      705     2.43        0       43        0
## 2511      Yes       14     0.20      289     0.20        0       97        0
## 8718      Yes        5     0.00      126     0.00        0       34        0
## 2986      Yes        9     0.36      378     0.36        0       81        0
## 1842      Yes       17     0.78      236     0.78        0       17        0
## 3371      Yes       10     1.99      708     1.99        0       36        0
##      col 3952 col 3953 col 3954 col 3955 col 3956 col 3957 col 3958 col 3959
## 2463       14   Spring     2.43      2.2      2.2   Spring       43     18.3
## 2511       14   Spring     0.20      2.0      2.0   Spring       97     12.1
## 8718        5   Autumn     0.00      0.9      0.9   Autumn       34      1.8
## 2986        9   Spring     0.36      1.4      1.4   Spring       81     10.4
## 1842       17   Winter     0.78      3.1      3.1   Winter       17      2.4
## 3371       10   Spring     1.99      1.0      1.0   Spring       36     18.2
##      col 3960 col 3961 col 3962 col 3963   col 3964   col 3965 col 3966
## 2463   Spring      5.4      705        0 13/03/2018 No Holiday       43
## 2511   Spring     11.6      289        0 15/03/2018 No Holiday       97
## 8718   Autumn    -12.4      126        0 29/11/2018 No Holiday       34
## 2986   Spring      7.2      378        0   4/4/2018 No Holiday       81
## 1842   Winter    -20.2      236        0 15/02/2018    Holiday       17
## 3371   Spring      2.8      708        0 20/04/2018 No Holiday       36
##      col 3967 col 3968 col 3969 col 3970 col 3971 col 3972 col 3973 col 3974
## 2463        0        0   Spring        0      2.2     2.43      705     18.3
## 2511        0        0   Spring        0      2.0     0.20      289     12.1
## 8718        0        0   Autumn        0      0.9     0.00      126      1.8
## 2986        0        0   Spring        0      1.4     0.36      378     10.4
## 1842        0        0   Winter        0      3.1     0.78      236      2.4
## 3371        0        0   Spring        0      1.0     1.99      708     18.2
##      col 3975   col 3976 col 3977 col 3978 col 3979   col 3980 col 3981
## 2463     18.3 13/03/2018      5.4      705       43 13/03/2018     1509
## 2511     12.1 15/03/2018     11.6      289       97 15/03/2018      177
## 8718      1.8 29/11/2018    -12.4      126       34 29/11/2018     1990
## 2986     10.4   4/4/2018      7.2      378       81   4/4/2018     2000
## 1842      2.4 15/02/2018    -20.2      236       17 15/02/2018     1990
## 3371     18.2 20/04/2018      2.8      708       36 20/04/2018      620
##      col 3982 col 3983   col 3984 col 3985 col 3986 col 3987 col 3988 col 3989
## 2463       43        0 13/03/2018       43     1509      Yes      2.2       43
## 2511       97        0 15/03/2018       97      177      Yes      2.0       97
## 8718       34        0 29/11/2018       34     1990      Yes      0.9       34
## 2986       81        0   4/4/2018       81     2000      Yes      1.4       81
## 1842       17        0 15/02/2018       17     1990      Yes      3.1       17
## 3371       36        0 20/04/2018       36      620      Yes      1.0       36
##      col 3990 col 3991 col 3992 col 3993 col 3994 col 3995   col 3996
## 2463      5.4   Spring     2.43      Yes       14     2.43 13/03/2018
## 2511     11.6   Spring     0.20      Yes       14     0.20 15/03/2018
## 8718    -12.4   Autumn     0.00      Yes        5     0.00 29/11/2018
## 2986      7.2   Spring     0.36      Yes        9     0.36   4/4/2018
## 1842    -20.2   Winter     0.78      Yes       17     0.78 15/02/2018
## 3371      2.8   Spring     1.99      Yes       10     1.99 20/04/2018
##        col 3997 col 3998 col 3999 col 4000 col 4001 col 4002 col 4003 col 4004
## 2463 No Holiday      Yes      2.2      Yes     1509       43      705      2.2
## 2511 No Holiday      Yes      2.0      Yes      177       97      289      2.0
## 8718 No Holiday      Yes      0.9      Yes     1990       34      126      0.9
## 2986 No Holiday      Yes      1.4      Yes     2000       81      378      1.4
## 1842    Holiday      Yes      3.1      Yes     1990       17      236      3.1
## 3371 No Holiday      Yes      1.0      Yes      620       36      708      1.0
##      col 4005   col 4006 col 4007 col 4008 col 4009 col 4010 col 4011 col 4012
## 2463     2.43 No Holiday     2.43      5.4      5.4     1509       43      5.4
## 2511     0.20 No Holiday     0.20     11.6     11.6      177       97     11.6
## 8718     0.00 No Holiday     0.00    -12.4    -12.4     1990       34    -12.4
## 2986     0.36 No Holiday     0.36      7.2      7.2     2000       81      7.2
## 1842     0.78    Holiday     0.78    -20.2    -20.2     1990       17    -20.2
## 3371     1.99 No Holiday     1.99      2.8      2.8      620       36      2.8
##        col 4013 col 4014 col 4015 col 4016 col 4017 col 4018 col 4019 col 4020
## 2463 13/03/2018     1509       43     1509     1509       14     2.43       43
## 2511 15/03/2018      177       97      177      177       14     0.20       97
## 8718 29/11/2018     1990       34     1990     1990        5     0.00       34
## 2986   4/4/2018     2000       81     2000     2000        9     0.36       81
## 1842 15/02/2018     1990       17     1990     1990       17     0.78       17
## 3371 20/04/2018      620       36      620      620       10     1.99       36
##      col 4021 col 4022 col 4023 col 4024   col 4025   col 4026 col 4027
## 2463      5.4        0        0      2.2 No Holiday 13/03/2018        0
## 2511     11.6        0        0      2.0 No Holiday 15/03/2018        0
## 8718    -12.4        0        0      0.9 No Holiday 29/11/2018        0
## 2986      7.2        0        0      1.4 No Holiday   4/4/2018        0
## 1842    -20.2        0        0      3.1    Holiday 15/02/2018        0
## 3371      2.8        0        0      1.0 No Holiday 20/04/2018        0
##        col 4028 col 4029   col 4030 col 4031 col 4032 col 4033 col 4034
## 2463 13/03/2018        0 No Holiday   Spring        0        0       14
## 2511 15/03/2018        0 No Holiday   Spring        0        0       14
## 8718 29/11/2018        0 No Holiday   Autumn        0        0        5
## 2986   4/4/2018        0 No Holiday   Spring        0        0        9
## 1842 15/02/2018        0    Holiday   Winter        0        0       17
## 3371 20/04/2018        0 No Holiday   Spring        0        0       10
##      col 4035 col 4036 col 4037 col 4038   col 4039 col 4040 col 4041 col 4042
## 2463     18.3     18.3     1509        0 13/03/2018   Spring     2.43     1509
## 2511     12.1     12.1      177        0 15/03/2018   Spring     0.20      177
## 8718      1.8      1.8     1990        0 29/11/2018   Autumn     0.00     1990
## 2986     10.4     10.4     2000        0   4/4/2018   Spring     0.36     2000
## 1842      2.4      2.4     1990        0 15/02/2018   Winter     0.78     1990
## 3371     18.2     18.2      620        0 20/04/2018   Spring     1.99      620
##      col 4043 col 4044 col 4045 col 4046 col 4047 col 4048 col 4049 col 4050
## 2463      5.4     1509      2.2      Yes     2.43   Spring     2.43      Yes
## 2511     11.6      177      2.0      Yes     0.20   Spring     0.20      Yes
## 8718    -12.4     1990      0.9      Yes     0.00   Autumn     0.00      Yes
## 2986      7.2     2000      1.4      Yes     0.36   Spring     0.36      Yes
## 1842    -20.2     1990      3.1      Yes     0.78   Winter     0.78      Yes
## 3371      2.8      620      1.0      Yes     1.99   Spring     1.99      Yes
##      col 4051 col 4052 col 4053 col 4054 col 4055 col 4056 col 4057 col 4058
## 2463     1509       43       43      5.4        0        0       43     1509
## 2511      177       97       97     11.6        0        0       97      177
## 8718     1990       34       34    -12.4        0        0       34     1990
## 2986     2000       81       81      7.2        0        0       81     2000
## 1842     1990       17       17    -20.2        0        0       17     1990
## 3371      620       36       36      2.8        0        0       36      620
##        col 4059 col 4060 col 4061 col 4062 col 4063 col 4064 col 4065 col 4066
## 2463 13/03/2018      Yes        0      2.2     18.3       14        0        0
## 2511 15/03/2018      Yes        0      2.0     12.1       14        0        0
## 8718 29/11/2018      Yes        0      0.9      1.8        5        0        0
## 2986   4/4/2018      Yes        0      1.4     10.4        9        0        0
## 1842 15/02/2018      Yes        0      3.1      2.4       17        0        0
## 3371 20/04/2018      Yes        0      1.0     18.2       10        0        0
##      col 4067   col 4068 col 4069 col 4070 col 4071   col 4072 col 4073
## 2463      705 13/03/2018      2.2      5.4      705 13/03/2018       14
## 2511      289 15/03/2018      2.0     11.6      289 15/03/2018       14
## 8718      126 29/11/2018      0.9    -12.4      126 29/11/2018        5
## 2986      378   4/4/2018      1.4      7.2      378   4/4/2018        9
## 1842      236 15/02/2018      3.1    -20.2      236 15/02/2018       17
## 3371      708 20/04/2018      1.0      2.8      708 20/04/2018       10
##        col 4074 col 4075 col 4076 col 4077 col 4078   col 4079 col 4080
## 2463 No Holiday     2.43        0   Spring     2.43 13/03/2018       14
## 2511 No Holiday     0.20        0   Spring     0.20 15/03/2018       14
## 8718 No Holiday     0.00        0   Autumn     0.00 29/11/2018        5
## 2986 No Holiday     0.36        0   Spring     0.36   4/4/2018        9
## 1842    Holiday     0.78        0   Winter     0.78 15/02/2018       17
## 3371 No Holiday     1.99        0   Spring     1.99 20/04/2018       10
##      col 4081 col 4082 col 4083 col 4084 col 4085 col 4086 col 4087 col 4088
## 2463     18.3     1509      705        0     18.3      5.4     2.43      705
## 2511     12.1      177      289        0     12.1     11.6     0.20      289
## 8718      1.8     1990      126        0      1.8    -12.4     0.00      126
## 2986     10.4     2000      378        0     10.4      7.2     0.36      378
## 1842      2.4     1990      236        0      2.4    -20.2     0.78      236
## 3371     18.2      620      708        0     18.2      2.8     1.99      708
##      col 4089 col 4090 col 4091   col 4092 col 4093 col 4094 col 4095 col 4096
## 2463      Yes     18.3      2.2 No Holiday        0     1509   Spring      Yes
## 2511      Yes     12.1      2.0 No Holiday        0      177   Spring      Yes
## 8718      Yes      1.8      0.9 No Holiday        0     1990   Autumn      Yes
## 2986      Yes     10.4      1.4 No Holiday        0     2000   Spring      Yes
## 1842      Yes      2.4      3.1    Holiday        0     1990   Winter      Yes
## 3371      Yes     18.2      1.0 No Holiday        0      620   Spring      Yes
##      col 4097   col 4098 col 4099 col 4100 col 4101 col 4102   col 4103
## 2463     1509 No Holiday       14        0      705       43 No Holiday
## 2511      177 No Holiday       14        0      289       97 No Holiday
## 8718     1990 No Holiday        5        0      126       34 No Holiday
## 2986     2000 No Holiday        9        0      378       81 No Holiday
## 1842     1990    Holiday       17        0      236       17    Holiday
## 3371      620 No Holiday       10        0      708       36 No Holiday
##      col 4104 col 4105 col 4106 col 4107 col 4108 col 4109 col 4110   col 4111
## 2463        0     1509     1509      2.2      705     1509       14 No Holiday
## 2511        0      177      177      2.0      289      177       14 No Holiday
## 8718        0     1990     1990      0.9      126     1990        5 No Holiday
## 2986        0     2000     2000      1.4      378     2000        9 No Holiday
## 1842        0     1990     1990      3.1      236     1990       17    Holiday
## 3371        0      620      620      1.0      708      620       10 No Holiday
##      col 4112 col 4113 col 4114 col 4115   col 4116 col 4117 col 4118 col 4119
## 2463       43      2.2       43     1509 No Holiday        0      705     1509
## 2511       97      2.0       97      177 No Holiday        0      289      177
## 8718       34      0.9       34     1990 No Holiday        0      126     1990
## 2986       81      1.4       81     2000 No Holiday        0      378     2000
## 1842       17      3.1       17     1990    Holiday        0      236     1990
## 3371       36      1.0       36      620 No Holiday        0      708      620
##      col 4120 col 4121 col 4122 col 4123 col 4124   col 4125 col 4126 col 4127
## 2463      5.4     2.43        0      705       14 13/03/2018      2.2     2.43
## 2511     11.6     0.20        0      289       14 15/03/2018      2.0     0.20
## 8718    -12.4     0.00        0      126        5 29/11/2018      0.9     0.00
## 2986      7.2     0.36        0      378        9   4/4/2018      1.4     0.36
## 1842    -20.2     0.78        0      236       17 15/02/2018      3.1     0.78
## 3371      2.8     1.99        0      708       10 20/04/2018      1.0     1.99
##      col 4128 col 4129 col 4130 col 4131 col 4132 col 4133 col 4134 col 4135
## 2463     1509      2.2       14       43        0      2.2      2.2      5.4
## 2511      177      2.0       14       97        0      2.0      2.0     11.6
## 8718     1990      0.9        5       34        0      0.9      0.9    -12.4
## 2986     2000      1.4        9       81        0      1.4      1.4      7.2
## 1842     1990      3.1       17       17        0      3.1      3.1    -20.2
## 3371      620      1.0       10       36        0      1.0      1.0      2.8
##      col 4136   col 4137 col 4138 col 4139 col 4140   col 4141 col 4142
## 2463       43 13/03/2018      5.4       14      Yes 13/03/2018   Spring
## 2511       97 15/03/2018     11.6       14      Yes 15/03/2018   Spring
## 8718       34 29/11/2018    -12.4        5      Yes 29/11/2018   Autumn
## 2986       81   4/4/2018      7.2        9      Yes   4/4/2018   Spring
## 1842       17 15/02/2018    -20.2       17      Yes 15/02/2018   Winter
## 3371       36 20/04/2018      2.8       10      Yes 20/04/2018   Spring
##        col 4143 col 4144   col 4145 col 4146 col 4147   col 4148 col 4149
## 2463 13/03/2018       43 13/03/2018      2.2   Spring No Holiday        0
## 2511 15/03/2018       97 15/03/2018      2.0   Spring No Holiday        0
## 8718 29/11/2018       34 29/11/2018      0.9   Autumn No Holiday        0
## 2986   4/4/2018       81   4/4/2018      1.4   Spring No Holiday        0
## 1842 15/02/2018       17 15/02/2018      3.1   Winter    Holiday        0
## 3371 20/04/2018       36 20/04/2018      1.0   Spring No Holiday        0
##      col 4150 col 4151 col 4152 col 4153 col 4154 col 4155 col 4156 col 4157
## 2463     2.43     1509     2.43   Spring      2.2        0      2.2     18.3
## 2511     0.20      177     0.20   Spring      2.0        0      2.0     12.1
## 8718     0.00     1990     0.00   Autumn      0.9        0      0.9      1.8
## 2986     0.36     2000     0.36   Spring      1.4        0      1.4     10.4
## 1842     0.78     1990     0.78   Winter      3.1        0      3.1      2.4
## 3371     1.99      620     1.99   Spring      1.0        0      1.0     18.2
##      col 4158 col 4159 col 4160 col 4161 col 4162 col 4163 col 4164 col 4165
## 2463      Yes      5.4     18.3        0     2.43      Yes      Yes      5.4
## 2511      Yes     11.6     12.1        0     0.20      Yes      Yes     11.6
## 8718      Yes    -12.4      1.8        0     0.00      Yes      Yes    -12.4
## 2986      Yes      7.2     10.4        0     0.36      Yes      Yes      7.2
## 1842      Yes    -20.2      2.4        0     0.78      Yes      Yes    -20.2
## 3371      Yes      2.8     18.2        0     1.99      Yes      Yes      2.8
##      col 4166 col 4167   col 4168 col 4169 col 4170 col 4171 col 4172 col 4173
## 2463      Yes        0 No Holiday      705        0      Yes      2.2     1509
## 2511      Yes        0 No Holiday      289        0      Yes      2.0      177
## 8718      Yes        0 No Holiday      126        0      Yes      0.9     1990
## 2986      Yes        0 No Holiday      378        0      Yes      1.4     2000
## 1842      Yes        0    Holiday      236        0      Yes      3.1     1990
## 3371      Yes        0 No Holiday      708        0      Yes      1.0      620
##      col 4174 col 4175 col 4176 col 4177   col 4178 col 4179 col 4180 col 4181
## 2463     18.3      705        0      5.4 13/03/2018      2.2     2.43      2.2
## 2511     12.1      289        0     11.6 15/03/2018      2.0     0.20      2.0
## 8718      1.8      126        0    -12.4 29/11/2018      0.9     0.00      0.9
## 2986     10.4      378        0      7.2   4/4/2018      1.4     0.36      1.4
## 1842      2.4      236        0    -20.2 15/02/2018      3.1     0.78      3.1
## 3371     18.2      708        0      2.8 20/04/2018      1.0     1.99      1.0
##      col 4182   col 4183 col 4184 col 4185 col 4186 col 4187   col 4188
## 2463      Yes 13/03/2018       14     2.43   Spring       43 No Holiday
## 2511      Yes 15/03/2018       14     0.20   Spring       97 No Holiday
## 8718      Yes 29/11/2018        5     0.00   Autumn       34 No Holiday
## 2986      Yes   4/4/2018        9     0.36   Spring       81 No Holiday
## 1842      Yes 15/02/2018       17     0.78   Winter       17    Holiday
## 3371      Yes 20/04/2018       10     1.99   Spring       36 No Holiday
##        col 4189 col 4190 col 4191 col 4192   col 4193 col 4194 col 4195
## 2463 No Holiday        0        0     18.3 13/03/2018      705   Spring
## 2511 No Holiday        0        0     12.1 15/03/2018      289   Spring
## 8718 No Holiday        0        0      1.8 29/11/2018      126   Autumn
## 2986 No Holiday        0        0     10.4   4/4/2018      378   Spring
## 1842    Holiday        0        0      2.4 15/02/2018      236   Winter
## 3371 No Holiday        0        0     18.2 20/04/2018      708   Spring
##      col 4196 col 4197 col 4198 col 4199 col 4200 col 4201 col 4202 col 4203
## 2463      705        0      5.4      5.4     1509       14     1509      705
## 2511      289        0     11.6     11.6      177       14      177      289
## 8718      126        0    -12.4    -12.4     1990        5     1990      126
## 2986      378        0      7.2      7.2     2000        9     2000      378
## 1842      236        0    -20.2    -20.2     1990       17     1990      236
## 3371      708        0      2.8      2.8      620       10      620      708
##        col 4204 col 4205 col 4206   col 4207 col 4208 col 4209 col 4210
## 2463 13/03/2018     1509      2.2 No Holiday      Yes      5.4     18.3
## 2511 15/03/2018      177      2.0 No Holiday      Yes     11.6     12.1
## 8718 29/11/2018     1990      0.9 No Holiday      Yes    -12.4      1.8
## 2986   4/4/2018     2000      1.4 No Holiday      Yes      7.2     10.4
## 1842 15/02/2018     1990      3.1    Holiday      Yes    -20.2      2.4
## 3371 20/04/2018      620      1.0 No Holiday      Yes      2.8     18.2
##      col 4211 col 4212   col 4213   col 4214 col 4215 col 4216 col 4217
## 2463      705      Yes 13/03/2018 13/03/2018     18.3      Yes      5.4
## 2511      289      Yes 15/03/2018 15/03/2018     12.1      Yes     11.6
## 8718      126      Yes 29/11/2018 29/11/2018      1.8      Yes    -12.4
## 2986      378      Yes   4/4/2018   4/4/2018     10.4      Yes      7.2
## 1842      236      Yes 15/02/2018 15/02/2018      2.4      Yes    -20.2
## 3371      708      Yes 20/04/2018 20/04/2018     18.2      Yes      2.8
##      col 4218 col 4219 col 4220   col 4221   col 4222 col 4223 col 4224
## 2463       43   Spring     1509 No Holiday 13/03/2018        0      5.4
## 2511       97   Spring      177 No Holiday 15/03/2018        0     11.6
## 8718       34   Autumn     1990 No Holiday 29/11/2018        0    -12.4
## 2986       81   Spring     2000 No Holiday   4/4/2018        0      7.2
## 1842       17   Winter     1990    Holiday 15/02/2018        0    -20.2
## 3371       36   Spring      620 No Holiday 20/04/2018        0      2.8
##        col 4225 col 4226 col 4227 col 4228 col 4229 col 4230 col 4231
## 2463 13/03/2018      705     1509        0   Spring        0      705
## 2511 15/03/2018      289      177        0   Spring        0      289
## 8718 29/11/2018      126     1990        0   Autumn        0      126
## 2986   4/4/2018      378     2000        0   Spring        0      378
## 1842 15/02/2018      236     1990        0   Winter        0      236
## 3371 20/04/2018      708      620        0   Spring        0      708
##        col 4232 col 4233 col 4234 col 4235 col 4236 col 4237 col 4238 col 4239
## 2463 No Holiday     18.3      Yes      2.2      5.4     1509     18.3       14
## 2511 No Holiday     12.1      Yes      2.0     11.6      177     12.1       14
## 8718 No Holiday      1.8      Yes      0.9    -12.4     1990      1.8        5
## 2986 No Holiday     10.4      Yes      1.4      7.2     2000     10.4        9
## 1842    Holiday      2.4      Yes      3.1    -20.2     1990      2.4       17
## 3371 No Holiday     18.2      Yes      1.0      2.8      620     18.2       10
##      col 4240 col 4241 col 4242 col 4243 col 4244 col 4245   col 4246 col 4247
## 2463     18.3     18.3      2.2       43   Spring        0 13/03/2018     18.3
## 2511     12.1     12.1      2.0       97   Spring        0 15/03/2018     12.1
## 8718      1.8      1.8      0.9       34   Autumn        0 29/11/2018      1.8
## 2986     10.4     10.4      1.4       81   Spring        0   4/4/2018     10.4
## 1842      2.4      2.4      3.1       17   Winter        0 15/02/2018      2.4
## 3371     18.2     18.2      1.0       36   Spring        0 20/04/2018     18.2
##      col 4248 col 4249 col 4250 col 4251 col 4252   col 4253   col 4254
## 2463   Spring      2.2        0       14     1509 No Holiday 13/03/2018
## 2511   Spring      2.0        0       14      177 No Holiday 15/03/2018
## 8718   Autumn      0.9        0        5     1990 No Holiday 29/11/2018
## 2986   Spring      1.4        0        9     2000 No Holiday   4/4/2018
## 1842   Winter      3.1        0       17     1990    Holiday 15/02/2018
## 3371   Spring      1.0        0       10      620 No Holiday 20/04/2018
##      col 4255 col 4256 col 4257   col 4258   col 4259 col 4260   col 4261
## 2463      705      Yes      5.4 No Holiday 13/03/2018       14 13/03/2018
## 2511      289      Yes     11.6 No Holiday 15/03/2018       14 15/03/2018
## 8718      126      Yes    -12.4 No Holiday 29/11/2018        5 29/11/2018
## 2986      378      Yes      7.2 No Holiday   4/4/2018        9   4/4/2018
## 1842      236      Yes    -20.2    Holiday 15/02/2018       17 15/02/2018
## 3371      708      Yes      2.8 No Holiday 20/04/2018       10 20/04/2018
##      col 4262 col 4263   col 4264   col 4265 col 4266 col 4267 col 4268
## 2463      Yes      2.2 13/03/2018 No Holiday   Spring     18.3       14
## 2511      Yes      2.0 15/03/2018 No Holiday   Spring     12.1       14
## 8718      Yes      0.9 29/11/2018 No Holiday   Autumn      1.8        5
## 2986      Yes      1.4   4/4/2018 No Holiday   Spring     10.4        9
## 1842      Yes      3.1 15/02/2018    Holiday   Winter      2.4       17
## 3371      Yes      1.0 20/04/2018 No Holiday   Spring     18.2       10
##      col 4269 col 4270 col 4271 col 4272 col 4273 col 4274 col 4275   col 4276
## 2463     2.43      5.4      2.2     1509       43     1509       43 13/03/2018
## 2511     0.20     11.6      2.0      177       97      177       97 15/03/2018
## 8718     0.00    -12.4      0.9     1990       34     1990       34 29/11/2018
## 2986     0.36      7.2      1.4     2000       81     2000       81   4/4/2018
## 1842     0.78    -20.2      3.1     1990       17     1990       17 15/02/2018
## 3371     1.99      2.8      1.0      620       36      620       36 20/04/2018
##      col 4277   col 4278   col 4279 col 4280   col 4281 col 4282 col 4283
## 2463      705 13/03/2018 No Holiday     2.43 13/03/2018     2.43     2.43
## 2511      289 15/03/2018 No Holiday     0.20 15/03/2018     0.20     0.20
## 8718      126 29/11/2018 No Holiday     0.00 29/11/2018     0.00     0.00
## 2986      378   4/4/2018 No Holiday     0.36   4/4/2018     0.36     0.36
## 1842      236 15/02/2018    Holiday     0.78 15/02/2018     0.78     0.78
## 3371      708 20/04/2018 No Holiday     1.99 20/04/2018     1.99     1.99
##      col 4284 col 4285 col 4286 col 4287 col 4288 col 4289 col 4290 col 4291
## 2463      Yes      705      5.4      2.2      Yes      Yes      Yes     18.3
## 2511      Yes      289     11.6      2.0      Yes      Yes      Yes     12.1
## 8718      Yes      126    -12.4      0.9      Yes      Yes      Yes      1.8
## 2986      Yes      378      7.2      1.4      Yes      Yes      Yes     10.4
## 1842      Yes      236    -20.2      3.1      Yes      Yes      Yes      2.4
## 3371      Yes      708      2.8      1.0      Yes      Yes      Yes     18.2
##      col 4292 col 4293 col 4294 col 4295 col 4296 col 4297 col 4298 col 4299
## 2463        0     1509      2.2     18.3      Yes        0   Spring       14
## 2511        0      177      2.0     12.1      Yes        0   Spring       14
## 8718        0     1990      0.9      1.8      Yes        0   Autumn        5
## 2986        0     2000      1.4     10.4      Yes        0   Spring        9
## 1842        0     1990      3.1      2.4      Yes        0   Winter       17
## 3371        0      620      1.0     18.2      Yes        0   Spring       10
##      col 4300   col 4301 col 4302   col 4303 col 4304 col 4305 col 4306
## 2463      705 No Holiday      2.2 13/03/2018        0       14      5.4
## 2511      289 No Holiday      2.0 15/03/2018        0       14     11.6
## 8718      126 No Holiday      0.9 29/11/2018        0        5    -12.4
## 2986      378 No Holiday      1.4   4/4/2018        0        9      7.2
## 1842      236    Holiday      3.1 15/02/2018        0       17    -20.2
## 3371      708 No Holiday      1.0 20/04/2018        0       10      2.8
##      col 4307   col 4308   col 4309 col 4310 col 4311 col 4312 col 4313
## 2463   Spring 13/03/2018 No Holiday       43   Spring       14      5.4
## 2511   Spring 15/03/2018 No Holiday       97   Spring       14     11.6
## 8718   Autumn 29/11/2018 No Holiday       34   Autumn        5    -12.4
## 2986   Spring   4/4/2018 No Holiday       81   Spring        9      7.2
## 1842   Winter 15/02/2018    Holiday       17   Winter       17    -20.2
## 3371   Spring 20/04/2018 No Holiday       36   Spring       10      2.8
##      col 4314 col 4315 col 4316 col 4317 col 4318 col 4319 col 4320 col 4321
## 2463      705      2.2      5.4       43       43     2.43     1509        0
## 2511      289      2.0     11.6       97       97     0.20      177        0
## 8718      126      0.9    -12.4       34       34     0.00     1990        0
## 2986      378      1.4      7.2       81       81     0.36     2000        0
## 1842      236      3.1    -20.2       17       17     0.78     1990        0
## 3371      708      1.0      2.8       36       36     1.99      620        0
##      col 4322 col 4323 col 4324   col 4325 col 4326   col 4327 col 4328
## 2463        0        0        0 13/03/2018       14 No Holiday     2.43
## 2511        0        0        0 15/03/2018       14 No Holiday     0.20
## 8718        0        0        0 29/11/2018        5 No Holiday     0.00
## 2986        0        0        0   4/4/2018        9 No Holiday     0.36
## 1842        0        0        0 15/02/2018       17    Holiday     0.78
## 3371        0        0        0 20/04/2018       10 No Holiday     1.99
##      col 4329 col 4330 col 4331 col 4332 col 4333 col 4334   col 4335 col 4336
## 2463       14     18.3       14   Spring     2.43     18.3 13/03/2018      Yes
## 2511       14     12.1       14   Spring     0.20     12.1 15/03/2018      Yes
## 8718        5      1.8        5   Autumn     0.00      1.8 29/11/2018      Yes
## 2986        9     10.4        9   Spring     0.36     10.4   4/4/2018      Yes
## 1842       17      2.4       17   Winter     0.78      2.4 15/02/2018      Yes
## 3371       10     18.2       10   Spring     1.99     18.2 20/04/2018      Yes
##      col 4337 col 4338 col 4339   col 4340 col 4341 col 4342 col 4343 col 4344
## 2463        0     1509       14 13/03/2018        0        0      705       14
## 2511        0      177       14 15/03/2018        0        0      289       14
## 8718        0     1990        5 29/11/2018        0        0      126        5
## 2986        0     2000        9   4/4/2018        0        0      378        9
## 1842        0     1990       17 15/02/2018        0        0      236       17
## 3371        0      620       10 20/04/2018        0        0      708       10
##      col 4345   col 4346 col 4347 col 4348   col 4349 col 4350 col 4351
## 2463      2.2 No Holiday      5.4       14 13/03/2018        0      Yes
## 2511      2.0 No Holiday     11.6       14 15/03/2018        0      Yes
## 8718      0.9 No Holiday    -12.4        5 29/11/2018        0      Yes
## 2986      1.4 No Holiday      7.2        9   4/4/2018        0      Yes
## 1842      3.1    Holiday    -20.2       17 15/02/2018        0      Yes
## 3371      1.0 No Holiday      2.8       10 20/04/2018        0      Yes
##      col 4352 col 4353   col 4354 col 4355 col 4356 col 4357 col 4358 col 4359
## 2463      2.2        0 No Holiday     1509      Yes        0      705      705
## 2511      2.0        0 No Holiday      177      Yes        0      289      289
## 8718      0.9        0 No Holiday     1990      Yes        0      126      126
## 2986      1.4        0 No Holiday     2000      Yes        0      378      378
## 1842      3.1        0    Holiday     1990      Yes        0      236      236
## 3371      1.0        0 No Holiday      620      Yes        0      708      708
##      col 4360 col 4361   col 4362 col 4363   col 4364 col 4365 col 4366
## 2463     2.43        0 13/03/2018      Yes No Holiday       43     18.3
## 2511     0.20        0 15/03/2018      Yes No Holiday       97     12.1
## 8718     0.00        0 29/11/2018      Yes No Holiday       34      1.8
## 2986     0.36        0   4/4/2018      Yes No Holiday       81     10.4
## 1842     0.78        0 15/02/2018      Yes    Holiday       17      2.4
## 3371     1.99        0 20/04/2018      Yes No Holiday       36     18.2
##      col 4367 col 4368 col 4369   col 4370 col 4371 col 4372   col 4373
## 2463     1509     2.43      2.2 No Holiday      5.4      705 13/03/2018
## 2511      177     0.20      2.0 No Holiday     11.6      289 15/03/2018
## 8718     1990     0.00      0.9 No Holiday    -12.4      126 29/11/2018
## 2986     2000     0.36      1.4 No Holiday      7.2      378   4/4/2018
## 1842     1990     0.78      3.1    Holiday    -20.2      236 15/02/2018
## 3371      620     1.99      1.0 No Holiday      2.8      708 20/04/2018
##      col 4374 col 4375 col 4376 col 4377 col 4378 col 4379 col 4380
## 2463       14     2.43      2.2      5.4       14   Spring     18.3
## 2511       14     0.20      2.0     11.6       14   Spring     12.1
## 8718        5     0.00      0.9    -12.4        5   Autumn      1.8
## 2986        9     0.36      1.4      7.2        9   Spring     10.4
## 1842       17     0.78      3.1    -20.2       17   Winter      2.4
## 3371       10     1.99      1.0      2.8       10   Spring     18.2
## 
## Subsample 2 :
##      col 1 col 2 col 3 col 4      col 5 col 6 col 7 col 8 col 9 col 10 col 11
## 2992   Yes    44     0  17.9   4/4/2018  17.9     0    15    44   17.9    2.2
## 7588   Yes    78     0   7.6 13/10/2018   7.6     0     3    78    7.6    0.7
## 3994   Yes    93     0  22.8 16/05/2018  22.8     0     9    93   22.8    3.1
## 8095    No    78     0   5.5  3/11/2018   5.5     0     6    78    5.5    0.6
## 6182   Yes    39     0  36.9 15/08/2018  36.9     0    13    39   36.9    1.5
## 4702   Yes    72     0  22.2 14/06/2018  22.2     0    21    72   22.2    1.0
##      col 12 col 13     col 14 col 15 col 16 col 17 col 18 col 19 col 20 col 21
## 2992      0      0   4/4/2018     44    5.4    5.4   2000 Spring     44   17.9
## 7588      0      0 13/10/2018     78    4.0    4.0   1614 Autumn     78    7.6
## 3994      4      4 16/05/2018     93   21.6   21.6    569 Spring     93   22.8
## 8095      0      0  3/11/2018     78    1.9    1.9    983 Autumn     78    5.5
## 6182      0      0 15/08/2018     39   20.6   20.6   2000 Summer     39   36.9
## 4702      0      0 14/06/2018     72   16.9   16.9   1786 Summer     72   22.2
##      col 22 col 23 col 24 col 25 col 26 col 27 col 28 col 29 col 30 col 31
## 2992    2.2 Spring     15    5.4    2.2     15   2.79   2.79 Spring    2.2
## 7588    0.7 Autumn      3    4.0    0.7      3   0.00   0.00 Autumn    0.7
## 3994    3.1 Spring      9   21.6    3.1      9   0.06   0.06 Spring    3.1
## 8095    0.6 Autumn      6    1.9    0.6      6   0.00   0.00 Autumn    0.6
## 6182    1.5 Summer     13   20.6    1.5     13   2.46   2.46 Summer    1.5
## 4702    1.0 Summer     21   16.9    1.0     21   0.00   0.00 Summer    1.0
##          col 32 col 33 col 34 col 35     col 36 col 37 col 38 col 39 col 40
## 2992 No Holiday    Yes   2.79    Yes No Holiday    Yes   2.79 Spring    Yes
## 7588 No Holiday    Yes   0.00    Yes No Holiday    Yes   0.00 Autumn    Yes
## 3994 No Holiday    Yes   0.06    Yes No Holiday    Yes   0.06 Spring    Yes
## 8095 No Holiday     No   0.00     No No Holiday     No   0.00 Autumn     No
## 6182    Holiday    Yes   2.46    Yes    Holiday    Yes   2.46 Summer    Yes
## 4702 No Holiday    Yes   0.00    Yes No Holiday    Yes   0.00 Summer    Yes
##      col 41 col 42 col 43 col 44 col 45 col 46 col 47 col 48 col 49 col 50
## 2992   2.79   2.79   1209    Yes      0 Spring     44   17.9      0      0
## 7588   0.00   0.00    374    Yes      0 Autumn     78    7.6      0      0
## 3994   0.06   0.06     97    Yes      4 Spring     93   22.8      0      0
## 8095   0.00   0.00      0     No      0 Autumn     78    5.5      0      0
## 6182   2.46   2.46    591    Yes      0 Summer     39   36.9      0      0
## 4702   0.00   0.00   1807    Yes      0 Summer     72   22.2      0      0
##          col 51 col 52 col 53 col 54     col 55 col 56     col 57 col 58 col 59
## 2992   4/4/2018    2.2   2000    5.4 No Holiday    5.4 No Holiday     44   17.9
## 7588 13/10/2018    0.7   1614    4.0 No Holiday    4.0 No Holiday     78    7.6
## 3994 16/05/2018    3.1    569   21.6 No Holiday   21.6 No Holiday     93   22.8
## 8095  3/11/2018    0.6    983    1.9 No Holiday    1.9 No Holiday     78    5.5
## 6182 15/08/2018    1.5   2000   20.6    Holiday   20.6    Holiday     39   36.9
## 4702 14/06/2018    1.0   1786   16.9 No Holiday   16.9 No Holiday     72   22.2
##      col 60 col 61 col 62 col 63 col 64 col 65 col 66 col 67 col 68 col 69
## 2992    2.2    2.2   2000   2000   2000   2000   1209    2.2   1209   17.9
## 7588    0.7    0.7   1614   1614   1614   1614    374    0.7    374    7.6
## 3994    3.1    3.1    569    569    569    569     97    3.1     97   22.8
## 8095    0.6    0.6    983    983    983    983      0    0.6      0    5.5
## 6182    1.5    1.5   2000   2000   2000   2000    591    1.5    591   36.9
## 4702    1.0    1.0   1786   1786   1786   1786   1807    1.0   1807   22.2
##      col 70 col 71 col 72     col 73 col 74 col 75 col 76 col 77 col 78 col 79
## 2992    2.2 Spring   1209 No Holiday   2.79      0   17.9    Yes Spring    Yes
## 7588    0.7 Autumn    374 No Holiday   0.00      0    7.6    Yes Autumn    Yes
## 3994    3.1 Spring     97 No Holiday   0.06      0   22.8    Yes Spring    Yes
## 8095    0.6 Autumn      0 No Holiday   0.00      0    5.5     No Autumn     No
## 6182    1.5 Summer    591    Holiday   2.46      0   36.9    Yes Summer    Yes
## 4702    1.0 Summer   1807 No Holiday   0.00      0   22.2    Yes Summer    Yes
##      col 80 col 81     col 82 col 83 col 84 col 85 col 86 col 87 col 88
## 2992   2.79 Spring   4/4/2018   17.9    Yes   2000     44 Spring Spring
## 7588   0.00 Autumn 13/10/2018    7.6    Yes   1614     78 Autumn Autumn
## 3994   0.06 Spring 16/05/2018   22.8    Yes    569     93 Spring Spring
## 8095   0.00 Autumn  3/11/2018    5.5     No    983     78 Autumn Autumn
## 6182   2.46 Summer 15/08/2018   36.9    Yes   2000     39 Summer Summer
## 4702   0.00 Summer 14/06/2018   22.2    Yes   1786     72 Summer Summer
##          col 89 col 90 col 91 col 92 col 93 col 94 col 95     col 96 col 97
## 2992 No Holiday    Yes    Yes   17.9   17.9    5.4     15 No Holiday   17.9
## 7588 No Holiday    Yes    Yes    7.6    7.6    4.0      3 No Holiday    7.6
## 3994 No Holiday    Yes    Yes   22.8   22.8   21.6      9 No Holiday   22.8
## 8095 No Holiday     No     No    5.5    5.5    1.9      6 No Holiday    5.5
## 6182    Holiday    Yes    Yes   36.9   36.9   20.6     13    Holiday   36.9
## 4702 No Holiday    Yes    Yes   22.2   22.2   16.9     21 No Holiday   22.2
##      col 98 col 99 col 100 col 101    col 102 col 103    col 104 col 105
## 2992   17.9      0       0      44   4/4/2018    2.79   4/4/2018     Yes
## 7588    7.6      0       0      78 13/10/2018    0.00 13/10/2018     Yes
## 3994   22.8      4       0      93 16/05/2018    0.06 16/05/2018     Yes
## 8095    5.5      0       0      78  3/11/2018    0.00  3/11/2018      No
## 6182   36.9      0       0      39 15/08/2018    2.46 15/08/2018     Yes
## 4702   22.2      0       0      72 14/06/2018    0.00 14/06/2018     Yes
##      col 106    col 107 col 108 col 109 col 110 col 111    col 112    col 113
## 2992    1209   4/4/2018       0     2.2     5.4    2000 No Holiday   4/4/2018
## 7588     374 13/10/2018       0     0.7     4.0    1614 No Holiday 13/10/2018
## 3994      97 16/05/2018       0     3.1    21.6     569 No Holiday 16/05/2018
## 8095       0  3/11/2018       0     0.6     1.9     983 No Holiday  3/11/2018
## 6182     591 15/08/2018       0     1.5    20.6    2000    Holiday 15/08/2018
## 4702    1807 14/06/2018       0     1.0    16.9    1786 No Holiday 14/06/2018
##      col 114 col 115 col 116 col 117 col 118 col 119 col 120 col 121 col 122
## 2992     2.2       0      15       0       0      15    2000      15     2.2
## 7588     0.7       0       3       0       0       3    1614       3     0.7
## 3994     3.1       0       9       4       0       9     569       9     3.1
## 8095     0.6       0       6       0       0       6     983       6     0.6
## 6182     1.5       0      13       0       0      13    2000      13     1.5
## 4702     1.0       0      21       0       0      21    1786      21     1.0
##      col 123 col 124 col 125 col 126 col 127    col 128 col 129 col 130 col 131
## 2992     Yes      44     Yes      15    17.9   4/4/2018     5.4      44     Yes
## 7588     Yes      78     Yes       3     7.6 13/10/2018     4.0      78     Yes
## 3994     Yes      93     Yes       9    22.8 16/05/2018    21.6      93     Yes
## 8095      No      78      No       6     5.5  3/11/2018     1.9      78      No
## 6182     Yes      39     Yes      13    36.9 15/08/2018    20.6      39     Yes
## 4702     Yes      72     Yes      21    22.2 14/06/2018    16.9      72     Yes
##      col 132 col 133 col 134 col 135 col 136 col 137 col 138    col 139 col 140
## 2992  Spring     2.2      15    1209      15     2.2    1209   4/4/2018      15
## 7588  Autumn     0.7       3     374       3     0.7     374 13/10/2018       3
## 3994  Spring     3.1       9      97       9     3.1      97 16/05/2018       9
## 8095  Autumn     0.6       6       0       6     0.6       0  3/11/2018       6
## 6182  Summer     1.5      13     591      13     1.5     591 15/08/2018      13
## 4702  Summer     1.0      21    1807      21     1.0    1807 14/06/2018      21
##      col 141 col 142 col 143 col 144 col 145 col 146    col 147 col 148
## 2992      44     Yes       0    2.79      15      44 No Holiday       0
## 7588      78     Yes       0    0.00       3      78 No Holiday       0
## 3994      93     Yes       4    0.06       9      93 No Holiday       4
## 8095      78      No       0    0.00       6      78 No Holiday       0
## 6182      39     Yes       0    2.46      13      39    Holiday       0
## 4702      72     Yes       0    0.00      21      72 No Holiday       0
##         col 149 col 150 col 151 col 152    col 153 col 154    col 155
## 2992 No Holiday       0      44       0 No Holiday    1209 No Holiday
## 7588 No Holiday       0      78       0 No Holiday     374 No Holiday
## 3994 No Holiday       0      93       4 No Holiday      97 No Holiday
## 8095 No Holiday       0      78       0 No Holiday       0 No Holiday
## 6182    Holiday       0      39       0    Holiday     591    Holiday
## 4702 No Holiday       0      72       0 No Holiday    1807 No Holiday
##         col 156    col 157    col 158    col 159 col 160 col 161 col 162
## 2992   4/4/2018   4/4/2018 No Holiday No Holiday       0    17.9    1209
## 7588 13/10/2018 13/10/2018 No Holiday No Holiday       0     7.6     374
## 3994 16/05/2018 16/05/2018 No Holiday No Holiday       0    22.8      97
## 8095  3/11/2018  3/11/2018 No Holiday No Holiday       0     5.5       0
## 6182 15/08/2018 15/08/2018    Holiday    Holiday       0    36.9     591
## 4702 14/06/2018 14/06/2018 No Holiday No Holiday       0    22.2    1807
##      col 163 col 164 col 165 col 166    col 167    col 168 col 169 col 170
## 2992    2.79     2.2    2000      44 No Holiday   4/4/2018    2000    2000
## 7588    0.00     0.7    1614      78 No Holiday 13/10/2018    1614    1614
## 3994    0.06     3.1     569      93 No Holiday 16/05/2018     569     569
## 8095    0.00     0.6     983      78 No Holiday  3/11/2018     983     983
## 6182    2.46     1.5    2000      39    Holiday 15/08/2018    2000    2000
## 4702    0.00     1.0    1786      72 No Holiday 14/06/2018    1786    1786
##      col 171 col 172 col 173 col 174 col 175 col 176 col 177 col 178 col 179
## 2992  Spring    2000     5.4      44    17.9    1209    1209  Spring      44
## 7588  Autumn    1614     4.0      78     7.6     374     374  Autumn      78
## 3994  Spring     569    21.6      93    22.8      97      97  Spring      93
## 8095  Autumn     983     1.9      78     5.5       0       0  Autumn      78
## 6182  Summer    2000    20.6      39    36.9     591     591  Summer      39
## 4702  Summer    1786    16.9      72    22.2    1807    1807  Summer      72
##      col 180    col 181 col 182 col 183 col 184 col 185    col 186    col 187
## 2992  Spring No Holiday      15      15    2.79     Yes No Holiday No Holiday
## 7588  Autumn No Holiday       3       3    0.00     Yes No Holiday No Holiday
## 3994  Spring No Holiday       9       9    0.06     Yes No Holiday No Holiday
## 8095  Autumn No Holiday       6       6    0.00      No No Holiday No Holiday
## 6182  Summer    Holiday      13      13    2.46     Yes    Holiday    Holiday
## 4702  Summer No Holiday      21      21    0.00     Yes No Holiday No Holiday
##      col 188 col 189 col 190 col 191 col 192 col 193 col 194 col 195 col 196
## 2992     5.4      15      15     2.2      44       0    1209      15      15
## 7588     4.0       3       3     0.7      78       0     374       3       3
## 3994    21.6       9       9     3.1      93       4      97       9       9
## 8095     1.9       6       6     0.6      78       0       0       6       6
## 6182    20.6      13      13     1.5      39       0     591      13      13
## 4702    16.9      21      21     1.0      72       0    1807      21      21
##      col 197 col 198 col 199 col 200 col 201 col 202    col 203    col 204
## 2992    2.79     2.2    17.9     5.4      44    2.79 No Holiday   4/4/2018
## 7588    0.00     0.7     7.6     4.0      78    0.00 No Holiday 13/10/2018
## 3994    0.06     3.1    22.8    21.6      93    0.06 No Holiday 16/05/2018
## 8095    0.00     0.6     5.5     1.9      78    0.00 No Holiday  3/11/2018
## 6182    2.46     1.5    36.9    20.6      39    2.46    Holiday 15/08/2018
## 4702    0.00     1.0    22.2    16.9      72    0.00 No Holiday 14/06/2018
##      col 205 col 206 col 207 col 208 col 209    col 210 col 211    col 212
## 2992     Yes  Spring    17.9     Yes    2.79   4/4/2018    1209   4/4/2018
## 7588     Yes  Autumn     7.6     Yes    0.00 13/10/2018     374 13/10/2018
## 3994     Yes  Spring    22.8     Yes    0.06 16/05/2018      97 16/05/2018
## 8095      No  Autumn     5.5      No    0.00  3/11/2018       0  3/11/2018
## 6182     Yes  Summer    36.9     Yes    2.46 15/08/2018     591 15/08/2018
## 4702     Yes  Summer    22.2     Yes    0.00 14/06/2018    1807 14/06/2018
##      col 213    col 214 col 215 col 216    col 217 col 218 col 219    col 220
## 2992      44 No Holiday    2.79     Yes No Holiday    2000       0 No Holiday
## 7588      78 No Holiday    0.00     Yes No Holiday    1614       0 No Holiday
## 3994      93 No Holiday    0.06     Yes No Holiday     569       0 No Holiday
## 8095      78 No Holiday    0.00      No No Holiday     983       0 No Holiday
## 6182      39    Holiday    2.46     Yes    Holiday    2000       0    Holiday
## 4702      72 No Holiday    0.00     Yes No Holiday    1786       0 No Holiday
##      col 221 col 222 col 223    col 224 col 225 col 226    col 227 col 228
## 2992    2.79    17.9    17.9   4/4/2018    1209    2000   4/4/2018    17.9
## 7588    0.00     7.6     7.6 13/10/2018     374    1614 13/10/2018     7.6
## 3994    0.06    22.8    22.8 16/05/2018      97     569 16/05/2018    22.8
## 8095    0.00     5.5     5.5  3/11/2018       0     983  3/11/2018     5.5
## 6182    2.46    36.9    36.9 15/08/2018     591    2000 15/08/2018    36.9
## 4702    0.00    22.2    22.2 14/06/2018    1807    1786 14/06/2018    22.2
##      col 229 col 230 col 231    col 232 col 233    col 234 col 235 col 236
## 2992       0       0    17.9   4/4/2018       0   4/4/2018     Yes      15
## 7588       0       0     7.6 13/10/2018       0 13/10/2018     Yes       3
## 3994       0       4    22.8 16/05/2018       0 16/05/2018     Yes       9
## 8095       0       0     5.5  3/11/2018       0  3/11/2018      No       6
## 6182       0       0    36.9 15/08/2018       0 15/08/2018     Yes      13
## 4702       0       0    22.2 14/06/2018       0 14/06/2018     Yes      21
##      col 237 col 238 col 239 col 240 col 241 col 242    col 243 col 244 col 245
## 2992    2.79     Yes      15      44     2.2     Yes No Holiday    2.79     Yes
## 7588    0.00     Yes       3      78     0.7     Yes No Holiday    0.00     Yes
## 3994    0.06     Yes       9      93     3.1     Yes No Holiday    0.06     Yes
## 8095    0.00      No       6      78     0.6      No No Holiday    0.00      No
## 6182    2.46     Yes      13      39     1.5     Yes    Holiday    2.46     Yes
## 4702    0.00     Yes      21      72     1.0     Yes No Holiday    0.00     Yes
##      col 246 col 247 col 248 col 249    col 250 col 251 col 252 col 253 col 254
## 2992       0      15       0    2000 No Holiday    2000       0      15     2.2
## 7588       0       3       0    1614 No Holiday    1614       0       3     0.7
## 3994       0       9       4     569 No Holiday     569       0       9     3.1
## 8095       0       6       0     983 No Holiday     983       0       6     0.6
## 6182       0      13       0    2000    Holiday    2000       0      13     1.5
## 4702       0      21       0    1786 No Holiday    1786       0      21     1.0
##      col 255 col 256 col 257    col 258 col 259 col 260 col 261 col 262
## 2992       0    1209    2000   4/4/2018     2.2    2.79    2.79  Spring
## 7588       0     374    1614 13/10/2018     0.7    0.00    0.00  Autumn
## 3994       4      97     569 16/05/2018     3.1    0.06    0.06  Spring
## 8095       0       0     983  3/11/2018     0.6    0.00    0.00  Autumn
## 6182       0     591    2000 15/08/2018     1.5    2.46    2.46  Summer
## 4702       0    1807    1786 14/06/2018     1.0    0.00    0.00  Summer
##         col 263 col 264 col 265    col 266 col 267 col 268 col 269 col 270
## 2992 No Holiday      15      15   4/4/2018     2.2    2.79     Yes     2.2
## 7588 No Holiday       3       3 13/10/2018     0.7    0.00     Yes     0.7
## 3994 No Holiday       9       9 16/05/2018     3.1    0.06     Yes     3.1
## 8095 No Holiday       6       6  3/11/2018     0.6    0.00      No     0.6
## 6182    Holiday      13      13 15/08/2018     1.5    2.46     Yes     1.5
## 4702 No Holiday      21      21 14/06/2018     1.0    0.00     Yes     1.0
##      col 271 col 272    col 273 col 274 col 275 col 276 col 277 col 278 col 279
## 2992      15      15   4/4/2018      44       0       0    17.9    2000     5.4
## 7588       3       3 13/10/2018      78       0       0     7.6    1614     4.0
## 3994       9       9 16/05/2018      93       4       4    22.8     569    21.6
## 8095       6       6  3/11/2018      78       0       0     5.5     983     1.9
## 6182      13      13 15/08/2018      39       0       0    36.9    2000    20.6
## 4702      21      21 14/06/2018      72       0       0    22.2    1786    16.9
##      col 280 col 281 col 282 col 283 col 284 col 285 col 286 col 287    col 288
## 2992      44       0      44  Spring       0       0      15     2.2   4/4/2018
## 7588      78       0      78  Autumn       0       0       3     0.7 13/10/2018
## 3994      93       4      93  Spring       0       4       9     3.1 16/05/2018
## 8095      78       0      78  Autumn       0       0       6     0.6  3/11/2018
## 6182      39       0      39  Summer       0       0      13     1.5 15/08/2018
## 4702      72       0      72  Summer       0       0      21     1.0 14/06/2018
##      col 289 col 290 col 291 col 292 col 293 col 294 col 295 col 296 col 297
## 2992    1209       0      44    17.9  Spring    2000    1209    17.9      15
## 7588     374       0      78     7.6  Autumn    1614     374     7.6       3
## 3994      97       0      93    22.8  Spring     569      97    22.8       9
## 8095       0       0      78     5.5  Autumn     983       0     5.5       6
## 6182     591       0      39    36.9  Summer    2000     591    36.9      13
## 4702    1807       0      72    22.2  Summer    1786    1807    22.2      21
##         col 298 col 299 col 300 col 301 col 302 col 303 col 304 col 305 col 306
## 2992 No Holiday    2.79     2.2    2.79    2000    1209      15  Spring     5.4
## 7588 No Holiday    0.00     0.7    0.00    1614     374       3  Autumn     4.0
## 3994 No Holiday    0.06     3.1    0.06     569      97       9  Spring    21.6
## 8095 No Holiday    0.00     0.6    0.00     983       0       6  Autumn     1.9
## 6182    Holiday    2.46     1.5    2.46    2000     591      13  Summer    20.6
## 4702 No Holiday    0.00     1.0    0.00    1786    1807      21  Summer    16.9
##      col 307    col 308 col 309 col 310 col 311    col 312 col 313 col 314
## 2992      44 No Holiday  Spring    1209    1209   4/4/2018  Spring    2.79
## 7588      78 No Holiday  Autumn     374     374 13/10/2018  Autumn    0.00
## 3994      93 No Holiday  Spring      97      97 16/05/2018  Spring    0.06
## 8095      78 No Holiday  Autumn       0       0  3/11/2018  Autumn    0.00
## 6182      39    Holiday  Summer     591     591 15/08/2018  Summer    2.46
## 4702      72 No Holiday  Summer    1807    1807 14/06/2018  Summer    0.00
##      col 315    col 316 col 317 col 318    col 319 col 320 col 321 col 322
## 2992    2000   4/4/2018     5.4     2.2   4/4/2018     Yes      15       0
## 7588    1614 13/10/2018     4.0     0.7 13/10/2018     Yes       3       0
## 3994     569 16/05/2018    21.6     3.1 16/05/2018     Yes       9       4
## 8095     983  3/11/2018     1.9     0.6  3/11/2018      No       6       0
## 6182    2000 15/08/2018    20.6     1.5 15/08/2018     Yes      13       0
## 4702    1786 14/06/2018    16.9     1.0 14/06/2018     Yes      21       0
##      col 323 col 324 col 325 col 326 col 327 col 328 col 329 col 330 col 331
## 2992      15     5.4    1209      15    2.79       0       0       0    1209
## 7588       3     4.0     374       3    0.00       0       0       0     374
## 3994       9    21.6      97       9    0.06       4       0       0      97
## 8095       6     1.9       0       6    0.00       0       0       0       0
## 6182      13    20.6     591      13    2.46       0       0       0     591
## 4702      21    16.9    1807      21    0.00       0       0       0    1807
##      col 332 col 333 col 334 col 335 col 336 col 337 col 338 col 339 col 340
## 2992    2.79    17.9    1209     Yes      15      44       0    2.79      44
## 7588    0.00     7.6     374     Yes       3      78       0    0.00      78
## 3994    0.06    22.8      97     Yes       9      93       4    0.06      93
## 8095    0.00     5.5       0      No       6      78       0    0.00      78
## 6182    2.46    36.9     591     Yes      13      39       0    2.46      39
## 4702    0.00    22.2    1807     Yes      21      72       0    0.00      72
##      col 341 col 342 col 343 col 344 col 345 col 346 col 347 col 348    col 349
## 2992     2.2  Spring      44    2.79    1209     2.2     5.4     2.2   4/4/2018
## 7588     0.7  Autumn      78    0.00     374     0.7     4.0     0.7 13/10/2018
## 3994     3.1  Spring      93    0.06      97     3.1    21.6     3.1 16/05/2018
## 8095     0.6  Autumn      78    0.00       0     0.6     1.9     0.6  3/11/2018
## 6182     1.5  Summer      39    2.46     591     1.5    20.6     1.5 15/08/2018
## 4702     1.0  Summer      72    0.00    1807     1.0    16.9     1.0 14/06/2018
##      col 350 col 351 col 352 col 353 col 354 col 355    col 356 col 357 col 358
## 2992    2000    2000      44     Yes       0     Yes No Holiday       0     2.2
## 7588    1614    1614      78     Yes       0     Yes No Holiday       0     0.7
## 3994     569     569      93     Yes       0     Yes No Holiday       4     3.1
## 8095     983     983      78      No       0      No No Holiday       0     0.6
## 6182    2000    2000      39     Yes       0     Yes    Holiday       0     1.5
## 4702    1786    1786      72     Yes       0     Yes No Holiday       0     1.0
##      col 359 col 360 col 361 col 362 col 363 col 364 col 365    col 366 col 367
## 2992  Spring      44    1209       0       0  Spring      15 No Holiday  Spring
## 7588  Autumn      78     374       0       0  Autumn       3 No Holiday  Autumn
## 3994  Spring      93      97       4       4  Spring       9 No Holiday  Spring
## 8095  Autumn      78       0       0       0  Autumn       6 No Holiday  Autumn
## 6182  Summer      39     591       0       0  Summer      13    Holiday  Summer
## 4702  Summer      72    1807       0       0  Summer      21 No Holiday  Summer
##      col 368 col 369 col 370 col 371 col 372 col 373 col 374 col 375 col 376
## 2992    2000  Spring     5.4      44    1209  Spring  Spring  Spring     2.2
## 7588    1614  Autumn     4.0      78     374  Autumn  Autumn  Autumn     0.7
## 3994     569  Spring    21.6      93      97  Spring  Spring  Spring     3.1
## 8095     983  Autumn     1.9      78       0  Autumn  Autumn  Autumn     0.6
## 6182    2000  Summer    20.6      39     591  Summer  Summer  Summer     1.5
## 4702    1786  Summer    16.9      72    1807  Summer  Summer  Summer     1.0
##      col 377 col 378 col 379    col 380 col 381 col 382 col 383 col 384 col 385
## 2992      15      15       0 No Holiday    2000       0      44       0     Yes
## 7588       3       3       0 No Holiday    1614       0      78       0     Yes
## 3994       9       9       0 No Holiday     569       0      93       0     Yes
## 8095       6       6       0 No Holiday     983       0      78       0      No
## 6182      13      13       0    Holiday    2000       0      39       0     Yes
## 4702      21      21       0 No Holiday    1786       0      72       0     Yes
##      col 386 col 387 col 388    col 389 col 390 col 391 col 392    col 393
## 2992    2.79    17.9     2.2 No Holiday    1209     2.2     5.4 No Holiday
## 7588    0.00     7.6     0.7 No Holiday     374     0.7     4.0 No Holiday
## 3994    0.06    22.8     3.1 No Holiday      97     3.1    21.6 No Holiday
## 8095    0.00     5.5     0.6 No Holiday       0     0.6     1.9 No Holiday
## 6182    2.46    36.9     1.5    Holiday     591     1.5    20.6    Holiday
## 4702    0.00    22.2     1.0 No Holiday    1807     1.0    16.9 No Holiday
##      col 394 col 395 col 396 col 397 col 398 col 399 col 400 col 401 col 402
## 2992    1209  Spring     5.4       0    1209    1209    2000       0  Spring
## 7588     374  Autumn     4.0       0     374     374    1614       0  Autumn
## 3994      97  Spring    21.6       0      97      97     569       4  Spring
## 8095       0  Autumn     1.9       0       0       0     983       0  Autumn
## 6182     591  Summer    20.6       0     591     591    2000       0  Summer
## 4702    1807  Summer    16.9       0    1807    1807    1786       0  Summer
##      col 403 col 404 col 405 col 406    col 407 col 408 col 409 col 410 col 411
## 2992     2.2       0       0     Yes No Holiday     5.4     2.2       0      44
## 7588     0.7       0       0     Yes No Holiday     4.0     0.7       0      78
## 3994     3.1       4       0     Yes No Holiday    21.6     3.1       4      93
## 8095     0.6       0       0      No No Holiday     1.9     0.6       0      78
## 6182     1.5       0       0     Yes    Holiday    20.6     1.5       0      39
## 4702     1.0       0       0     Yes No Holiday    16.9     1.0       0      72
##      col 412 col 413 col 414    col 415 col 416 col 417 col 418 col 419 col 420
## 2992      15       0      15 No Holiday  Spring       0  Spring      44       0
## 7588       3       0       3 No Holiday  Autumn       0  Autumn      78       0
## 3994       9       0       9 No Holiday  Spring       4  Spring      93       4
## 8095       6       0       6 No Holiday  Autumn       0  Autumn      78       0
## 6182      13       0      13    Holiday  Summer       0  Summer      39       0
## 4702      21       0      21 No Holiday  Summer       0  Summer      72       0
##      col 421 col 422 col 423 col 424 col 425 col 426 col 427 col 428 col 429
## 2992       0  Spring    2000     5.4     Yes     Yes    17.9    2.79     Yes
## 7588       0  Autumn    1614     4.0     Yes     Yes     7.6    0.00     Yes
## 3994       4  Spring     569    21.6     Yes     Yes    22.8    0.06     Yes
## 8095       0  Autumn     983     1.9      No      No     5.5    0.00      No
## 6182       0  Summer    2000    20.6     Yes     Yes    36.9    2.46     Yes
## 4702       0  Summer    1786    16.9     Yes     Yes    22.2    0.00     Yes
##      col 430 col 431 col 432    col 433 col 434 col 435 col 436 col 437
## 2992  Spring    17.9       0 No Holiday    2.79      15     2.2       0
## 7588  Autumn     7.6       0 No Holiday    0.00       3     0.7       0
## 3994  Spring    22.8       4 No Holiday    0.06       9     3.1       0
## 8095  Autumn     5.5       0 No Holiday    0.00       6     0.6       0
## 6182  Summer    36.9       0    Holiday    2.46      13     1.5       0
## 4702  Summer    22.2       0 No Holiday    0.00      21     1.0       0
##         col 438    col 439 col 440 col 441 col 442 col 443    col 444 col 445
## 2992   4/4/2018 No Holiday     5.4      15      44      15   4/4/2018     5.4
## 7588 13/10/2018 No Holiday     4.0       3      78       3 13/10/2018     4.0
## 3994 16/05/2018 No Holiday    21.6       9      93       9 16/05/2018    21.6
## 8095  3/11/2018 No Holiday     1.9       6      78       6  3/11/2018     1.9
## 6182 15/08/2018    Holiday    20.6      13      39      13 15/08/2018    20.6
## 4702 14/06/2018 No Holiday    16.9      21      72      21 14/06/2018    16.9
##         col 446 col 447 col 448    col 449 col 450 col 451 col 452 col 453
## 2992   4/4/2018     Yes       0 No Holiday      15     5.4      15    1209
## 7588 13/10/2018     Yes       0 No Holiday       3     4.0       3     374
## 3994 16/05/2018     Yes       0 No Holiday       9    21.6       9      97
## 8095  3/11/2018      No       0 No Holiday       6     1.9       6       0
## 6182 15/08/2018     Yes       0    Holiday      13    20.6      13     591
## 4702 14/06/2018     Yes       0 No Holiday      21    16.9      21    1807
##      col 454 col 455 col 456 col 457    col 458 col 459 col 460 col 461 col 462
## 2992    2000     Yes    1209    1209 No Holiday      44     2.2  Spring     Yes
## 7588    1614     Yes     374     374 No Holiday      78     0.7  Autumn     Yes
## 3994     569     Yes      97      97 No Holiday      93     3.1  Spring     Yes
## 8095     983      No       0       0 No Holiday      78     0.6  Autumn      No
## 6182    2000     Yes     591     591    Holiday      39     1.5  Summer     Yes
## 4702    1786     Yes    1807    1807 No Holiday      72     1.0  Summer     Yes
##      col 463 col 464    col 465 col 466 col 467 col 468 col 469    col 470
## 2992  Spring    2.79 No Holiday    17.9       0  Spring     2.2   4/4/2018
## 7588  Autumn    0.00 No Holiday     7.6       0  Autumn     0.7 13/10/2018
## 3994  Spring    0.06 No Holiday    22.8       4  Spring     3.1 16/05/2018
## 8095  Autumn    0.00 No Holiday     5.5       0  Autumn     0.6  3/11/2018
## 6182  Summer    2.46    Holiday    36.9       0  Summer     1.5 15/08/2018
## 4702  Summer    0.00 No Holiday    22.2       0  Summer     1.0 14/06/2018
##      col 471 col 472 col 473 col 474 col 475 col 476 col 477 col 478 col 479
## 2992     5.4       0     Yes    17.9    2.79    2000     Yes    17.9  Spring
## 7588     4.0       0     Yes     7.6    0.00    1614     Yes     7.6  Autumn
## 3994    21.6       0     Yes    22.8    0.06     569     Yes    22.8  Spring
## 8095     1.9       0      No     5.5    0.00     983      No     5.5  Autumn
## 6182    20.6       0     Yes    36.9    2.46    2000     Yes    36.9  Summer
## 4702    16.9       0     Yes    22.2    0.00    1786     Yes    22.2  Summer
##         col 480 col 481 col 482 col 483    col 484 col 485 col 486 col 487
## 2992 No Holiday    2000    2000      15 No Holiday     5.4    17.9    2.79
## 7588 No Holiday    1614    1614       3 No Holiday     4.0     7.6    0.00
## 3994 No Holiday     569     569       9 No Holiday    21.6    22.8    0.06
## 8095 No Holiday     983     983       6 No Holiday     1.9     5.5    0.00
## 6182    Holiday    2000    2000      13    Holiday    20.6    36.9    2.46
## 4702 No Holiday    1786    1786      21 No Holiday    16.9    22.2    0.00
##         col 488 col 489 col 490    col 491 col 492 col 493 col 494 col 495
## 2992   4/4/2018     2.2     2.2   4/4/2018    17.9       0    1209       0
## 7588 13/10/2018     0.7     0.7 13/10/2018     7.6       0     374       0
## 3994 16/05/2018     3.1     3.1 16/05/2018    22.8       4      97       0
## 8095  3/11/2018     0.6     0.6  3/11/2018     5.5       0       0       0
## 6182 15/08/2018     1.5     1.5 15/08/2018    36.9       0     591       0
## 4702 14/06/2018     1.0     1.0 14/06/2018    22.2       0    1807       0
##      col 496 col 497 col 498 col 499 col 500    col 501 col 502 col 503 col 504
## 2992       0  Spring    2000    1209    2.79   4/4/2018      15    1209     Yes
## 7588       0  Autumn    1614     374    0.00 13/10/2018       3     374     Yes
## 3994       0  Spring     569      97    0.06 16/05/2018       9      97     Yes
## 8095       0  Autumn     983       0    0.00  3/11/2018       6       0      No
## 6182       0  Summer    2000     591    2.46 15/08/2018      13     591     Yes
## 4702       0  Summer    1786    1807    0.00 14/06/2018      21    1807     Yes
##      col 505 col 506 col 507 col 508    col 509 col 510 col 511 col 512 col 513
## 2992       0       0  Spring     2.2 No Holiday      44  Spring     Yes      44
## 7588       0       0  Autumn     0.7 No Holiday      78  Autumn     Yes      78
## 3994       0       4  Spring     3.1 No Holiday      93  Spring     Yes      93
## 8095       0       0  Autumn     0.6 No Holiday      78  Autumn      No      78
## 6182       0       0  Summer     1.5    Holiday      39  Summer     Yes      39
## 4702       0       0  Summer     1.0 No Holiday      72  Summer     Yes      72
##      col 514    col 515 col 516 col 517 col 518 col 519 col 520 col 521 col 522
## 2992     5.4   4/4/2018    1209       0       0    2.79      15      15    2000
## 7588     4.0 13/10/2018     374       0       0    0.00       3       3    1614
## 3994    21.6 16/05/2018      97       4       4    0.06       9       9     569
## 8095     1.9  3/11/2018       0       0       0    0.00       6       6     983
## 6182    20.6 15/08/2018     591       0       0    2.46      13      13    2000
## 4702    16.9 14/06/2018    1807       0       0    0.00      21      21    1786
##      col 523 col 524 col 525 col 526 col 527 col 528    col 529 col 530 col 531
## 2992      44    2.79  Spring    1209    1209    2000 No Holiday     Yes     Yes
## 7588      78    0.00  Autumn     374     374    1614 No Holiday     Yes     Yes
## 3994      93    0.06  Spring      97      97     569 No Holiday     Yes     Yes
## 8095      78    0.00  Autumn       0       0     983 No Holiday      No      No
## 6182      39    2.46  Summer     591     591    2000    Holiday     Yes     Yes
## 4702      72    0.00  Summer    1807    1807    1786 No Holiday     Yes     Yes
##      col 532 col 533 col 534 col 535 col 536 col 537 col 538 col 539 col 540
## 2992       0     Yes       0      15     2.2      44     5.4     2.2  Spring
## 7588       0     Yes       0       3     0.7      78     4.0     0.7  Autumn
## 3994       4     Yes       0       9     3.1      93    21.6     3.1  Spring
## 8095       0      No       0       6     0.6      78     1.9     0.6  Autumn
## 6182       0     Yes       0      13     1.5      39    20.6     1.5  Summer
## 4702       0     Yes       0      21     1.0      72    16.9     1.0  Summer
##      col 541 col 542 col 543 col 544 col 545 col 546 col 547 col 548 col 549
## 2992    2000     Yes      44       0  Spring    17.9       0    17.9     5.4
## 7588    1614     Yes      78       0  Autumn     7.6       0     7.6     4.0
## 3994     569     Yes      93       0  Spring    22.8       0    22.8    21.6
## 8095     983      No      78       0  Autumn     5.5       0     5.5     1.9
## 6182    2000     Yes      39       0  Summer    36.9       0    36.9    20.6
## 4702    1786     Yes      72       0  Summer    22.2       0    22.2    16.9
##      col 550 col 551 col 552 col 553    col 554 col 555 col 556 col 557
## 2992    2000       0    2.79       0   4/4/2018     5.4       0       0
## 7588    1614       0    0.00       0 13/10/2018     4.0       0       0
## 3994     569       0    0.06       4 16/05/2018    21.6       0       4
## 8095     983       0    0.00       0  3/11/2018     1.9       0       0
## 6182    2000       0    2.46       0 15/08/2018    20.6       0       0
## 4702    1786       0    0.00       0 14/06/2018    16.9       0       0
##         col 558 col 559 col 560    col 561 col 562 col 563 col 564 col 565
## 2992   4/4/2018     5.4      15 No Holiday     Yes       0      15    1209
## 7588 13/10/2018     4.0       3 No Holiday     Yes       0       3     374
## 3994 16/05/2018    21.6       9 No Holiday     Yes       0       9      97
## 8095  3/11/2018     1.9       6 No Holiday      No       0       6       0
## 6182 15/08/2018    20.6      13    Holiday     Yes       0      13     591
## 4702 14/06/2018    16.9      21 No Holiday     Yes       0      21    1807
##      col 566 col 567 col 568 col 569 col 570 col 571    col 572 col 573 col 574
## 2992     2.2     2.2     Yes     5.4    2000     Yes No Holiday    17.9     2.2
## 7588     0.7     0.7     Yes     4.0    1614     Yes No Holiday     7.6     0.7
## 3994     3.1     3.1     Yes    21.6     569     Yes No Holiday    22.8     3.1
## 8095     0.6     0.6      No     1.9     983      No No Holiday     5.5     0.6
## 6182     1.5     1.5     Yes    20.6    2000     Yes    Holiday    36.9     1.5
## 4702     1.0     1.0     Yes    16.9    1786     Yes No Holiday    22.2     1.0
##      col 575 col 576    col 577 col 578 col 579 col 580 col 581 col 582 col 583
## 2992       0    1209   4/4/2018     2.2     5.4     5.4    2000       0     2.2
## 7588       0     374 13/10/2018     0.7     4.0     4.0    1614       0     0.7
## 3994       4      97 16/05/2018     3.1    21.6    21.6     569       4     3.1
## 8095       0       0  3/11/2018     0.6     1.9     1.9     983       0     0.6
## 6182       0     591 15/08/2018     1.5    20.6    20.6    2000       0     1.5
## 4702       0    1807 14/06/2018     1.0    16.9    16.9    1786       0     1.0
##      col 584 col 585 col 586 col 587    col 588 col 589    col 590 col 591
## 2992      44  Spring       0    1209   4/4/2018      15   4/4/2018      15
## 7588      78  Autumn       0     374 13/10/2018       3 13/10/2018       3
## 3994      93  Spring       4      97 16/05/2018       9 16/05/2018       9
## 8095      78  Autumn       0       0  3/11/2018       6  3/11/2018       6
## 6182      39  Summer       0     591 15/08/2018      13 15/08/2018      13
## 4702      72  Summer       0    1807 14/06/2018      21 14/06/2018      21
##      col 592 col 593 col 594 col 595 col 596 col 597 col 598    col 599
## 2992     Yes     Yes    2.79  Spring    1209     5.4     2.2   4/4/2018
## 7588     Yes     Yes    0.00  Autumn     374     4.0     0.7 13/10/2018
## 3994     Yes     Yes    0.06  Spring      97    21.6     3.1 16/05/2018
## 8095      No      No    0.00  Autumn       0     1.9     0.6  3/11/2018
## 6182     Yes     Yes    2.46  Summer     591    20.6     1.5 15/08/2018
## 4702     Yes     Yes    0.00  Summer    1807    16.9     1.0 14/06/2018
##         col 600 col 601    col 602 col 603 col 604 col 605 col 606    col 607
## 2992   4/4/2018       0   4/4/2018    17.9       0  Spring    2.79 No Holiday
## 7588 13/10/2018       0 13/10/2018     7.6       0  Autumn    0.00 No Holiday
## 3994 16/05/2018       4 16/05/2018    22.8       0  Spring    0.06 No Holiday
## 8095  3/11/2018       0  3/11/2018     5.5       0  Autumn    0.00 No Holiday
## 6182 15/08/2018       0 15/08/2018    36.9       0  Summer    2.46    Holiday
## 4702 14/06/2018       0 14/06/2018    22.2       0  Summer    0.00 No Holiday
##      col 608    col 609 col 610 col 611 col 612 col 613 col 614 col 615 col 616
## 2992     2.2 No Holiday     5.4  Spring      15    1209       0       0     2.2
## 7588     0.7 No Holiday     4.0  Autumn       3     374       0       0     0.7
## 3994     3.1 No Holiday    21.6  Spring       9      97       0       4     3.1
## 8095     0.6 No Holiday     1.9  Autumn       6       0       0       0     0.6
## 6182     1.5    Holiday    20.6  Summer      13     591       0       0     1.5
## 4702     1.0 No Holiday    16.9  Summer      21    1807       0       0     1.0
##      col 617 col 618 col 619 col 620 col 621    col 622    col 623 col 624
## 2992     5.4    17.9    17.9       0    1209   4/4/2018   4/4/2018      44
## 7588     4.0     7.6     7.6       0     374 13/10/2018 13/10/2018      78
## 3994    21.6    22.8    22.8       0      97 16/05/2018 16/05/2018      93
## 8095     1.9     5.5     5.5       0       0  3/11/2018  3/11/2018      78
## 6182    20.6    36.9    36.9       0     591 15/08/2018 15/08/2018      39
## 4702    16.9    22.2    22.2       0    1807 14/06/2018 14/06/2018      72
##         col 625    col 626    col 627    col 628 col 629 col 630 col 631
## 2992   4/4/2018 No Holiday No Holiday No Holiday      44       0       0
## 7588 13/10/2018 No Holiday No Holiday No Holiday      78       0       0
## 3994 16/05/2018 No Holiday No Holiday No Holiday      93       4       4
## 8095  3/11/2018 No Holiday No Holiday No Holiday      78       0       0
## 6182 15/08/2018    Holiday    Holiday    Holiday      39       0       0
## 4702 14/06/2018 No Holiday No Holiday No Holiday      72       0       0
##      col 632 col 633 col 634 col 635    col 636    col 637 col 638 col 639
## 2992      15      44    17.9     2.2 No Holiday No Holiday       0      44
## 7588       3      78     7.6     0.7 No Holiday No Holiday       0      78
## 3994       9      93    22.8     3.1 No Holiday No Holiday       0      93
## 8095       6      78     5.5     0.6 No Holiday No Holiday       0      78
## 6182      13      39    36.9     1.5    Holiday    Holiday       0      39
## 4702      21      72    22.2     1.0 No Holiday No Holiday       0      72
##      col 640 col 641 col 642 col 643 col 644 col 645 col 646 col 647    col 648
## 2992     2.2       0     2.2       0      44    17.9      15     2.2   4/4/2018
## 7588     0.7       0     0.7       0      78     7.6       3     0.7 13/10/2018
## 3994     3.1       4     3.1       0      93    22.8       9     3.1 16/05/2018
## 8095     0.6       0     0.6       0      78     5.5       6     0.6  3/11/2018
## 6182     1.5       0     1.5       0      39    36.9      13     1.5 15/08/2018
## 4702     1.0       0     1.0       0      72    22.2      21     1.0 14/06/2018
##      col 649 col 650 col 651 col 652 col 653 col 654 col 655 col 656 col 657
## 2992      15    1209     5.4    2000      44     Yes  Spring    2.79    1209
## 7588       3     374     4.0    1614      78     Yes  Autumn    0.00     374
## 3994       9      97    21.6     569      93     Yes  Spring    0.06      97
## 8095       6       0     1.9     983      78      No  Autumn    0.00       0
## 6182      13     591    20.6    2000      39     Yes  Summer    2.46     591
## 4702      21    1807    16.9    1786      72     Yes  Summer    0.00    1807
##         col 658 col 659 col 660 col 661 col 662 col 663 col 664 col 665 col 666
## 2992 No Holiday     5.4       0       0    17.9       0       0  Spring     5.4
## 7588 No Holiday     4.0       0       0     7.6       0       0  Autumn     4.0
## 3994 No Holiday    21.6       0       0    22.8       0       4  Spring    21.6
## 8095 No Holiday     1.9       0       0     5.5       0       0  Autumn     1.9
## 6182    Holiday    20.6       0       0    36.9       0       0  Summer    20.6
## 4702 No Holiday    16.9       0       0    22.2       0       0  Summer    16.9
##      col 667 col 668 col 669 col 670 col 671    col 672 col 673    col 674
## 2992    2000    17.9      44    2000    17.9   4/4/2018     Yes No Holiday
## 7588    1614     7.6      78    1614     7.6 13/10/2018     Yes No Holiday
## 3994     569    22.8      93     569    22.8 16/05/2018     Yes No Holiday
## 8095     983     5.5      78     983     5.5  3/11/2018      No No Holiday
## 6182    2000    36.9      39    2000    36.9 15/08/2018     Yes    Holiday
## 4702    1786    22.2      72    1786    22.2 14/06/2018     Yes No Holiday
##      col 675 col 676 col 677 col 678 col 679 col 680    col 681 col 682 col 683
## 2992     2.2     Yes     5.4     5.4    17.9     5.4 No Holiday    1209     5.4
## 7588     0.7     Yes     4.0     4.0     7.6     4.0 No Holiday     374     4.0
## 3994     3.1     Yes    21.6    21.6    22.8    21.6 No Holiday      97    21.6
## 8095     0.6      No     1.9     1.9     5.5     1.9 No Holiday       0     1.9
## 6182     1.5     Yes    20.6    20.6    36.9    20.6    Holiday     591    20.6
## 4702     1.0     Yes    16.9    16.9    22.2    16.9 No Holiday    1807    16.9
##      col 684 col 685 col 686 col 687 col 688    col 689 col 690 col 691
## 2992     5.4    2.79     5.4    2000      15 No Holiday    17.9      44
## 7588     4.0    0.00     4.0    1614       3 No Holiday     7.6      78
## 3994    21.6    0.06    21.6     569       9 No Holiday    22.8      93
## 8095     1.9    0.00     1.9     983       6 No Holiday     5.5      78
## 6182    20.6    2.46    20.6    2000      13    Holiday    36.9      39
## 4702    16.9    0.00    16.9    1786      21 No Holiday    22.2      72
##         col 692 col 693 col 694 col 695 col 696 col 697 col 698 col 699
## 2992 No Holiday    1209  Spring    17.9    17.9    17.9    1209     2.2
## 7588 No Holiday     374  Autumn     7.6     7.6     7.6     374     0.7
## 3994 No Holiday      97  Spring    22.8    22.8    22.8      97     3.1
## 8095 No Holiday       0  Autumn     5.5     5.5     5.5       0     0.6
## 6182    Holiday     591  Summer    36.9    36.9    36.9     591     1.5
## 4702 No Holiday    1807  Summer    22.2    22.2    22.2    1807     1.0
##         col 700 col 701 col 702 col 703 col 704 col 705 col 706 col 707 col 708
## 2992   4/4/2018     2.2    17.9     2.2     2.2       0     5.4       0    1209
## 7588 13/10/2018     0.7     7.6     0.7     0.7       0     4.0       0     374
## 3994 16/05/2018     3.1    22.8     3.1     3.1       4    21.6       4      97
## 8095  3/11/2018     0.6     5.5     0.6     0.6       0     1.9       0       0
## 6182 15/08/2018     1.5    36.9     1.5     1.5       0    20.6       0     591
## 4702 14/06/2018     1.0    22.2     1.0     1.0       0    16.9       0    1807
##      col 709 col 710 col 711 col 712 col 713 col 714 col 715 col 716 col 717
## 2992    17.9    1209     Yes     Yes     Yes    2.79     2.2    2.79  Spring
## 7588     7.6     374     Yes     Yes     Yes    0.00     0.7    0.00  Autumn
## 3994    22.8      97     Yes     Yes     Yes    0.06     3.1    0.06  Spring
## 8095     5.5       0      No      No      No    0.00     0.6    0.00  Autumn
## 6182    36.9     591     Yes     Yes     Yes    2.46     1.5    2.46  Summer
## 4702    22.2    1807     Yes     Yes     Yes    0.00     1.0    0.00  Summer
##      col 718 col 719 col 720 col 721 col 722 col 723 col 724 col 725 col 726
## 2992    2.79      15    2.79  Spring    17.9       0     Yes      44     2.2
## 7588    0.00       3    0.00  Autumn     7.6       0     Yes      78     0.7
## 3994    0.06       9    0.06  Spring    22.8       0     Yes      93     3.1
## 8095    0.00       6    0.00  Autumn     5.5       0      No      78     0.6
## 6182    2.46      13    2.46  Summer    36.9       0     Yes      39     1.5
## 4702    0.00      21    0.00  Summer    22.2       0     Yes      72     1.0
##      col 727 col 728 col 729 col 730 col 731 col 732 col 733 col 734 col 735
## 2992    1209     2.2     2.2     2.2     Yes     Yes     5.4  Spring    2.79
## 7588     374     0.7     0.7     0.7     Yes     Yes     4.0  Autumn    0.00
## 3994      97     3.1     3.1     3.1     Yes     Yes    21.6  Spring    0.06
## 8095       0     0.6     0.6     0.6      No      No     1.9  Autumn    0.00
## 6182     591     1.5     1.5     1.5     Yes     Yes    20.6  Summer    2.46
## 4702    1807     1.0     1.0     1.0     Yes     Yes    16.9  Summer    0.00
##      col 736 col 737 col 738 col 739 col 740 col 741    col 742 col 743 col 744
## 2992  Spring      15       0  Spring      44      15   4/4/2018    1209     Yes
## 7588  Autumn       3       0  Autumn      78       3 13/10/2018     374     Yes
## 3994  Spring       9       0  Spring      93       9 16/05/2018      97     Yes
## 8095  Autumn       6       0  Autumn      78       6  3/11/2018       0      No
## 6182  Summer      13       0  Summer      39      13 15/08/2018     591     Yes
## 4702  Summer      21       0  Summer      72      21 14/06/2018    1807     Yes
##      col 745 col 746 col 747 col 748    col 749    col 750 col 751    col 752
## 2992      44       0       0     5.4   4/4/2018 No Holiday    17.9 No Holiday
## 7588      78       0       0     4.0 13/10/2018 No Holiday     7.6 No Holiday
## 3994      93       0       4    21.6 16/05/2018 No Holiday    22.8 No Holiday
## 8095      78       0       0     1.9  3/11/2018 No Holiday     5.5 No Holiday
## 6182      39       0       0    20.6 15/08/2018    Holiday    36.9    Holiday
## 4702      72       0       0    16.9 14/06/2018 No Holiday    22.2 No Holiday
##         col 753 col 754 col 755 col 756 col 757 col 758 col 759    col 760
## 2992 No Holiday     5.4    17.9      15       0     5.4    2.79 No Holiday
## 7588 No Holiday     4.0     7.6       3       0     4.0    0.00 No Holiday
## 3994 No Holiday    21.6    22.8       9       0    21.6    0.06 No Holiday
## 8095 No Holiday     1.9     5.5       6       0     1.9    0.00 No Holiday
## 6182    Holiday    20.6    36.9      13       0    20.6    2.46    Holiday
## 4702 No Holiday    16.9    22.2      21       0    16.9    0.00 No Holiday
##      col 761 col 762 col 763 col 764 col 765 col 766 col 767 col 768 col 769
## 2992     Yes       0    2000    17.9     2.2    17.9      15     5.4     Yes
## 7588     Yes       0    1614     7.6     0.7     7.6       3     4.0     Yes
## 3994     Yes       0     569    22.8     3.1    22.8       9    21.6     Yes
## 8095      No       0     983     5.5     0.6     5.5       6     1.9      No
## 6182     Yes       0    2000    36.9     1.5    36.9      13    20.6     Yes
## 4702     Yes       0    1786    22.2     1.0    22.2      21    16.9     Yes
##         col 770 col 771 col 772 col 773 col 774 col 775 col 776 col 777 col 778
## 2992 No Holiday      15     5.4     5.4    1209     Yes     2.2    2.79     Yes
## 7588 No Holiday       3     4.0     4.0     374     Yes     0.7    0.00     Yes
## 3994 No Holiday       9    21.6    21.6      97     Yes     3.1    0.06     Yes
## 8095 No Holiday       6     1.9     1.9       0      No     0.6    0.00      No
## 6182    Holiday      13    20.6    20.6     591     Yes     1.5    2.46     Yes
## 4702 No Holiday      21    16.9    16.9    1807     Yes     1.0    0.00     Yes
##      col 779 col 780 col 781 col 782 col 783 col 784 col 785    col 786 col 787
## 2992  Spring     Yes    17.9     2.2    2000    17.9      15   4/4/2018     5.4
## 7588  Autumn     Yes     7.6     0.7    1614     7.6       3 13/10/2018     4.0
## 3994  Spring     Yes    22.8     3.1     569    22.8       9 16/05/2018    21.6
## 8095  Autumn      No     5.5     0.6     983     5.5       6  3/11/2018     1.9
## 6182  Summer     Yes    36.9     1.5    2000    36.9      13 15/08/2018    20.6
## 4702  Summer     Yes    22.2     1.0    1786    22.2      21 14/06/2018    16.9
##         col 788 col 789 col 790    col 791 col 792 col 793 col 794 col 795
## 2992   4/4/2018     Yes       0 No Holiday    1209     5.4     Yes     5.4
## 7588 13/10/2018     Yes       0 No Holiday     374     4.0     Yes     4.0
## 3994 16/05/2018     Yes       4 No Holiday      97    21.6     Yes    21.6
## 8095  3/11/2018      No       0 No Holiday       0     1.9      No     1.9
## 6182 15/08/2018     Yes       0    Holiday     591    20.6     Yes    20.6
## 4702 14/06/2018     Yes       0 No Holiday    1807    16.9     Yes    16.9
##      col 796 col 797 col 798 col 799 col 800 col 801 col 802 col 803 col 804
## 2992       0     5.4     Yes     Yes     2.2    17.9       0       0     Yes
## 7588       0     4.0     Yes     Yes     0.7     7.6       0       0     Yes
## 3994       0    21.6     Yes     Yes     3.1    22.8       0       0     Yes
## 8095       0     1.9      No      No     0.6     5.5       0       0      No
## 6182       0    20.6     Yes     Yes     1.5    36.9       0       0     Yes
## 4702       0    16.9     Yes     Yes     1.0    22.2       0       0     Yes
##      col 805 col 806 col 807 col 808 col 809 col 810 col 811    col 812 col 813
## 2992     5.4     5.4      15     2.2     Yes     5.4     2.2 No Holiday    2.79
## 7588     4.0     4.0       3     0.7     Yes     4.0     0.7 No Holiday    0.00
## 3994    21.6    21.6       9     3.1     Yes    21.6     3.1 No Holiday    0.06
## 8095     1.9     1.9       6     0.6      No     1.9     0.6 No Holiday    0.00
## 6182    20.6    20.6      13     1.5     Yes    20.6     1.5    Holiday    2.46
## 4702    16.9    16.9      21     1.0     Yes    16.9     1.0 No Holiday    0.00
##      col 814 col 815 col 816 col 817 col 818 col 819 col 820 col 821 col 822
## 2992    2000    1209     5.4    2.79  Spring     2.2     2.2    1209    2000
## 7588    1614     374     4.0    0.00  Autumn     0.7     0.7     374    1614
## 3994     569      97    21.6    0.06  Spring     3.1     3.1      97     569
## 8095     983       0     1.9    0.00  Autumn     0.6     0.6       0     983
## 6182    2000     591    20.6    2.46  Summer     1.5     1.5     591    2000
## 4702    1786    1807    16.9    0.00  Summer     1.0     1.0    1807    1786
##      col 823    col 824 col 825 col 826    col 827 col 828 col 829    col 830
## 2992     2.2 No Holiday     2.2    2.79 No Holiday      44      15 No Holiday
## 7588     0.7 No Holiday     0.7    0.00 No Holiday      78       3 No Holiday
## 3994     3.1 No Holiday     3.1    0.06 No Holiday      93       9 No Holiday
## 8095     0.6 No Holiday     0.6    0.00 No Holiday      78       6 No Holiday
## 6182     1.5    Holiday     1.5    2.46    Holiday      39      13    Holiday
## 4702     1.0 No Holiday     1.0    0.00 No Holiday      72      21 No Holiday
##      col 831    col 832 col 833 col 834 col 835 col 836 col 837 col 838 col 839
## 2992    1209 No Holiday    2000       0     5.4  Spring    2000     2.2    1209
## 7588     374 No Holiday    1614       0     4.0  Autumn    1614     0.7     374
## 3994      97 No Holiday     569       4    21.6  Spring     569     3.1      97
## 8095       0 No Holiday     983       0     1.9  Autumn     983     0.6       0
## 6182     591    Holiday    2000       0    20.6  Summer    2000     1.5     591
## 4702    1807 No Holiday    1786       0    16.9  Summer    1786     1.0    1807
##      col 840 col 841 col 842    col 843 col 844 col 845 col 846 col 847 col 848
## 2992    2000    2.79     2.2   4/4/2018       0    2000  Spring     Yes      15
## 7588    1614    0.00     0.7 13/10/2018       0    1614  Autumn     Yes       3
## 3994     569    0.06     3.1 16/05/2018       4     569  Spring     Yes       9
## 8095     983    0.00     0.6  3/11/2018       0     983  Autumn      No       6
## 6182    2000    2.46     1.5 15/08/2018       0    2000  Summer     Yes      13
## 4702    1786    0.00     1.0 14/06/2018       0    1786  Summer     Yes      21
##      col 849 col 850    col 851 col 852 col 853 col 854 col 855 col 856 col 857
## 2992       0    17.9   4/4/2018    2.79      44    2.79    2.79     5.4       0
## 7588       0     7.6 13/10/2018    0.00      78    0.00    0.00     4.0       0
## 3994       0    22.8 16/05/2018    0.06      93    0.06    0.06    21.6       0
## 8095       0     5.5  3/11/2018    0.00      78    0.00    0.00     1.9       0
## 6182       0    36.9 15/08/2018    2.46      39    2.46    2.46    20.6       0
## 4702       0    22.2 14/06/2018    0.00      72    0.00    0.00    16.9       0
##         col 858    col 859 col 860    col 861    col 862    col 863    col 864
## 2992   4/4/2018   4/4/2018       0 No Holiday No Holiday No Holiday   4/4/2018
## 7588 13/10/2018 13/10/2018       0 No Holiday No Holiday No Holiday 13/10/2018
## 3994 16/05/2018 16/05/2018       0 No Holiday No Holiday No Holiday 16/05/2018
## 8095  3/11/2018  3/11/2018       0 No Holiday No Holiday No Holiday  3/11/2018
## 6182 15/08/2018 15/08/2018       0    Holiday    Holiday    Holiday 15/08/2018
## 4702 14/06/2018 14/06/2018       0 No Holiday No Holiday No Holiday 14/06/2018
##      col 865 col 866 col 867 col 868 col 869 col 870    col 871    col 872
## 2992    1209    17.9     5.4  Spring    2.79    2000   4/4/2018 No Holiday
## 7588     374     7.6     4.0  Autumn    0.00    1614 13/10/2018 No Holiday
## 3994      97    22.8    21.6  Spring    0.06     569 16/05/2018 No Holiday
## 8095       0     5.5     1.9  Autumn    0.00     983  3/11/2018 No Holiday
## 6182     591    36.9    20.6  Summer    2.46    2000 15/08/2018    Holiday
## 4702    1807    22.2    16.9  Summer    0.00    1786 14/06/2018 No Holiday
##      col 873 col 874 col 875 col 876    col 877 col 878 col 879 col 880 col 881
## 2992     2.2  Spring    1209      44 No Holiday       0    2000       0    2.79
## 7588     0.7  Autumn     374      78 No Holiday       0    1614       0    0.00
## 3994     3.1  Spring      97      93 No Holiday       4     569       4    0.06
## 8095     0.6  Autumn       0      78 No Holiday       0     983       0    0.00
## 6182     1.5  Summer     591      39    Holiday       0    2000       0    2.46
## 4702     1.0  Summer    1807      72 No Holiday       0    1786       0    0.00
##      col 882 col 883 col 884 col 885 col 886 col 887 col 888 col 889 col 890
## 2992  Spring    17.9       0       0       0    1209    2000    1209  Spring
## 7588  Autumn     7.6       0       0       0     374    1614     374  Autumn
## 3994  Spring    22.8       0       0       4      97     569      97  Spring
## 8095  Autumn     5.5       0       0       0       0     983       0  Autumn
## 6182  Summer    36.9       0       0       0     591    2000     591  Summer
## 4702  Summer    22.2       0       0       0    1807    1786    1807  Summer
##      col 891 col 892 col 893 col 894 col 895 col 896 col 897 col 898 col 899
## 2992     2.2    2000    17.9      15     5.4      15    1209       0     5.4
## 7588     0.7    1614     7.6       3     4.0       3     374       0     4.0
## 3994     3.1     569    22.8       9    21.6       9      97       4    21.6
## 8095     0.6     983     5.5       6     1.9       6       0       0     1.9
## 6182     1.5    2000    36.9      13    20.6      13     591       0    20.6
## 4702     1.0    1786    22.2      21    16.9      21    1807       0    16.9
##      col 900 col 901 col 902 col 903 col 904 col 905 col 906 col 907 col 908
## 2992       0     2.2       0    1209     Yes  Spring      15     2.2     2.2
## 7588       0     0.7       0     374     Yes  Autumn       3     0.7     0.7
## 3994       0     3.1       0      97     Yes  Spring       9     3.1     3.1
## 8095       0     0.6       0       0      No  Autumn       6     0.6     0.6
## 6182       0     1.5       0     591     Yes  Summer      13     1.5     1.5
## 4702       0     1.0       0    1807     Yes  Summer      21     1.0     1.0
##      col 909 col 910 col 911 col 912 col 913 col 914    col 915 col 916 col 917
## 2992       0       0  Spring     2.2    2.79       0   4/4/2018    1209    1209
## 7588       0       0  Autumn     0.7    0.00       0 13/10/2018     374     374
## 3994       0       0  Spring     3.1    0.06       4 16/05/2018      97      97
## 8095       0       0  Autumn     0.6    0.00       0  3/11/2018       0       0
## 6182       0       0  Summer     1.5    2.46       0 15/08/2018     591     591
## 4702       0       0  Summer     1.0    0.00       0 14/06/2018    1807    1807
##      col 918 col 919 col 920 col 921 col 922 col 923 col 924 col 925 col 926
## 2992     Yes    2.79    2.79    2.79      15    17.9    2000       0     2.2
## 7588     Yes    0.00    0.00    0.00       3     7.6    1614       0     0.7
## 3994     Yes    0.06    0.06    0.06       9    22.8     569       0     3.1
## 8095      No    0.00    0.00    0.00       6     5.5     983       0     0.6
## 6182     Yes    2.46    2.46    2.46      13    36.9    2000       0     1.5
## 4702     Yes    0.00    0.00    0.00      21    22.2    1786       0     1.0
##      col 927 col 928 col 929 col 930 col 931 col 932 col 933 col 934 col 935
## 2992    2000       0    17.9     5.4  Spring    17.9      44    2000     2.2
## 7588    1614       0     7.6     4.0  Autumn     7.6      78    1614     0.7
## 3994     569       0    22.8    21.6  Spring    22.8      93     569     3.1
## 8095     983       0     5.5     1.9  Autumn     5.5      78     983     0.6
## 6182    2000       0    36.9    20.6  Summer    36.9      39    2000     1.5
## 4702    1786       0    22.2    16.9  Summer    22.2      72    1786     1.0
##      col 936 col 937    col 938 col 939    col 940 col 941 col 942 col 943
## 2992      15     Yes No Holiday    2000   4/4/2018  Spring       0       0
## 7588       3     Yes No Holiday    1614 13/10/2018  Autumn       0       0
## 3994       9     Yes No Holiday     569 16/05/2018  Spring       0       4
## 8095       6      No No Holiday     983  3/11/2018  Autumn       0       0
## 6182      13     Yes    Holiday    2000 15/08/2018  Summer       0       0
## 4702      21     Yes No Holiday    1786 14/06/2018  Summer       0       0
##      col 944 col 945 col 946 col 947 col 948 col 949    col 950 col 951 col 952
## 2992    2000      44      15    17.9    2000       0 No Holiday     5.4    1209
## 7588    1614      78       3     7.6    1614       0 No Holiday     4.0     374
## 3994     569      93       9    22.8     569       0 No Holiday    21.6      97
## 8095     983      78       6     5.5     983       0 No Holiday     1.9       0
## 6182    2000      39      13    36.9    2000       0    Holiday    20.6     591
## 4702    1786      72      21    22.2    1786       0 No Holiday    16.9    1807
##      col 953 col 954    col 955 col 956 col 957    col 958    col 959 col 960
## 2992    1209       0 No Holiday  Spring       0   4/4/2018   4/4/2018     5.4
## 7588     374       0 No Holiday  Autumn       0 13/10/2018 13/10/2018     4.0
## 3994      97       4 No Holiday  Spring       0 16/05/2018 16/05/2018    21.6
## 8095       0       0 No Holiday  Autumn       0  3/11/2018  3/11/2018     1.9
## 6182     591       0    Holiday  Summer       0 15/08/2018 15/08/2018    20.6
## 4702    1807       0 No Holiday  Summer       0 14/06/2018 14/06/2018    16.9
##      col 961 col 962 col 963 col 964 col 965 col 966 col 967 col 968 col 969
## 2992  Spring      44    2.79     Yes     Yes    17.9     2.2      15      44
## 7588  Autumn      78    0.00     Yes     Yes     7.6     0.7       3      78
## 3994  Spring      93    0.06     Yes     Yes    22.8     3.1       9      93
## 8095  Autumn      78    0.00      No      No     5.5     0.6       6      78
## 6182  Summer      39    2.46     Yes     Yes    36.9     1.5      13      39
## 4702  Summer      72    0.00     Yes     Yes    22.2     1.0      21      72
##      col 970 col 971 col 972 col 973 col 974    col 975 col 976    col 977
## 2992       0  Spring       0    17.9     2.2   4/4/2018     5.4 No Holiday
## 7588       0  Autumn       0     7.6     0.7 13/10/2018     4.0 No Holiday
## 3994       0  Spring       0    22.8     3.1 16/05/2018    21.6 No Holiday
## 8095       0  Autumn       0     5.5     0.6  3/11/2018     1.9 No Holiday
## 6182       0  Summer       0    36.9     1.5 15/08/2018    20.6    Holiday
## 4702       0  Summer       0    22.2     1.0 14/06/2018    16.9 No Holiday
##      col 978 col 979 col 980    col 981 col 982    col 983 col 984 col 985
## 2992      15    2000      44   4/4/2018    17.9 No Holiday    1209    17.9
## 7588       3    1614      78 13/10/2018     7.6 No Holiday     374     7.6
## 3994       9     569      93 16/05/2018    22.8 No Holiday      97    22.8
## 8095       6     983      78  3/11/2018     5.5 No Holiday       0     5.5
## 6182      13    2000      39 15/08/2018    36.9    Holiday     591    36.9
## 4702      21    1786      72 14/06/2018    22.2 No Holiday    1807    22.2
##      col 986 col 987 col 988 col 989    col 990 col 991 col 992 col 993 col 994
## 2992  Spring      15    2000     2.2   4/4/2018    17.9    1209  Spring       0
## 7588  Autumn       3    1614     0.7 13/10/2018     7.6     374  Autumn       0
## 3994  Spring       9     569     3.1 16/05/2018    22.8      97  Spring       0
## 8095  Autumn       6     983     0.6  3/11/2018     5.5       0  Autumn       0
## 6182  Summer      13    2000     1.5 15/08/2018    36.9     591  Summer       0
## 4702  Summer      21    1786     1.0 14/06/2018    22.2    1807  Summer       0
##      col 995 col 996 col 997 col 998 col 999   col 1000   col 1001   col 1002
## 2992  Spring     Yes    1209     5.4    17.9 No Holiday No Holiday   4/4/2018
## 7588  Autumn     Yes     374     4.0     7.6 No Holiday No Holiday 13/10/2018
## 3994  Spring     Yes      97    21.6    22.8 No Holiday No Holiday 16/05/2018
## 8095  Autumn      No       0     1.9     5.5 No Holiday No Holiday  3/11/2018
## 6182  Summer     Yes     591    20.6    36.9    Holiday    Holiday 15/08/2018
## 4702  Summer     Yes    1807    16.9    22.2 No Holiday No Holiday 14/06/2018
##      col 1003 col 1004 col 1005 col 1006 col 1007 col 1008 col 1009 col 1010
## 2992        0       44     2000     17.9   Spring     17.9   Spring        0
## 7588        0       78     1614      7.6   Autumn      7.6   Autumn        0
## 3994        4       93      569     22.8   Spring     22.8   Spring        4
## 8095        0       78      983      5.5   Autumn      5.5   Autumn        0
## 6182        0       39     2000     36.9   Summer     36.9   Summer        0
## 4702        0       72     1786     22.2   Summer     22.2   Summer        0
##      col 1011 col 1012 col 1013 col 1014 col 1015 col 1016 col 1017 col 1018
## 2992   Spring   Spring       44     17.9        0     1209      5.4        0
## 7588   Autumn   Autumn       78      7.6        0      374      4.0        0
## 3994   Spring   Spring       93     22.8        4       97     21.6        0
## 8095   Autumn   Autumn       78      5.5        0        0      1.9        0
## 6182   Summer   Summer       39     36.9        0      591     20.6        0
## 4702   Summer   Summer       72     22.2        0     1807     16.9        0
##      col 1019 col 1020   col 1021 col 1022 col 1023 col 1024 col 1025 col 1026
## 2992     2.79     17.9 No Holiday   Spring     2000       44     2.79      5.4
## 7588     0.00      7.6 No Holiday   Autumn     1614       78     0.00      4.0
## 3994     0.06     22.8 No Holiday   Spring      569       93     0.06     21.6
## 8095     0.00      5.5 No Holiday   Autumn      983       78     0.00      1.9
## 6182     2.46     36.9    Holiday   Summer     2000       39     2.46     20.6
## 4702     0.00     22.2 No Holiday   Summer     1786       72     0.00     16.9
##      col 1027 col 1028 col 1029 col 1030 col 1031 col 1032 col 1033 col 1034
## 2992        0        0      2.2        0     2000      5.4     2000      5.4
## 7588        0        0      0.7        0     1614      4.0     1614      4.0
## 3994        0        4      3.1        4      569     21.6      569     21.6
## 8095        0        0      0.6        0      983      1.9      983      1.9
## 6182        0        0      1.5        0     2000     20.6     2000     20.6
## 4702        0        0      1.0        0     1786     16.9     1786     16.9
##      col 1035 col 1036 col 1037 col 1038 col 1039 col 1040 col 1041 col 1042
## 2992       15     2000       44        0       44      Yes     1209     2.79
## 7588        3     1614       78        0       78      Yes      374     0.00
## 3994        9      569       93        0       93      Yes       97     0.06
## 8095        6      983       78        0       78       No        0     0.00
## 6182       13     2000       39        0       39      Yes      591     2.46
## 4702       21     1786       72        0       72      Yes     1807     0.00
##      col 1043 col 1044 col 1045   col 1046 col 1047 col 1048 col 1049 col 1050
## 2992       44      Yes   Spring   4/4/2018     1209      Yes       44     2000
## 7588       78      Yes   Autumn 13/10/2018      374      Yes       78     1614
## 3994       93      Yes   Spring 16/05/2018       97      Yes       93      569
## 8095       78       No   Autumn  3/11/2018        0       No       78      983
## 6182       39      Yes   Summer 15/08/2018      591      Yes       39     2000
## 4702       72      Yes   Summer 14/06/2018     1807      Yes       72     1786
##      col 1051 col 1052 col 1053   col 1054 col 1055 col 1056 col 1057 col 1058
## 2992     2.79   Spring       44 No Holiday        0     1209        0     1209
## 7588     0.00   Autumn       78 No Holiday        0      374        0      374
## 3994     0.06   Spring       93 No Holiday        0       97        0       97
## 8095     0.00   Autumn       78 No Holiday        0        0        0        0
## 6182     2.46   Summer       39    Holiday        0      591        0      591
## 4702     0.00   Summer       72 No Holiday        0     1807        0     1807
##      col 1059 col 1060 col 1061   col 1062 col 1063 col 1064 col 1065 col 1066
## 2992   Spring      Yes        0 No Holiday       44        0   Spring       44
## 7588   Autumn      Yes        0 No Holiday       78        0   Autumn       78
## 3994   Spring      Yes        4 No Holiday       93        4   Spring       93
## 8095   Autumn       No        0 No Holiday       78        0   Autumn       78
## 6182   Summer      Yes        0    Holiday       39        0   Summer       39
## 4702   Summer      Yes        0 No Holiday       72        0   Summer       72
##      col 1067   col 1068   col 1069 col 1070 col 1071 col 1072 col 1073
## 2992      2.2   4/4/2018   4/4/2018     17.9     17.9     2000     1209
## 7588      0.7 13/10/2018 13/10/2018      7.6      7.6     1614      374
## 3994      3.1 16/05/2018 16/05/2018     22.8     22.8      569       97
## 8095      0.6  3/11/2018  3/11/2018      5.5      5.5      983        0
## 6182      1.5 15/08/2018 15/08/2018     36.9     36.9     2000      591
## 4702      1.0 14/06/2018 14/06/2018     22.2     22.2     1786     1807
##      col 1074 col 1075   col 1076 col 1077 col 1078 col 1079 col 1080 col 1081
## 2992     1209        0   4/4/2018     2.79     17.9     2000       15        0
## 7588      374        0 13/10/2018     0.00      7.6     1614        3        0
## 3994       97        4 16/05/2018     0.06     22.8      569        9        4
## 8095        0        0  3/11/2018     0.00      5.5      983        6        0
## 6182      591        0 15/08/2018     2.46     36.9     2000       13        0
## 4702     1807        0 14/06/2018     0.00     22.2     1786       21        0
##      col 1082 col 1083   col 1084 col 1085 col 1086 col 1087 col 1088 col 1089
## 2992      5.4        0   4/4/2018        0     1209      Yes        0        0
## 7588      4.0        0 13/10/2018        0      374      Yes        0        0
## 3994     21.6        4 16/05/2018        4       97      Yes        0        4
## 8095      1.9        0  3/11/2018        0        0       No        0        0
## 6182     20.6        0 15/08/2018        0      591      Yes        0        0
## 4702     16.9        0 14/06/2018        0     1807      Yes        0        0
##      col 1090 col 1091 col 1092   col 1093   col 1094 col 1095 col 1096
## 2992      5.4     2.79     1209   4/4/2018 No Holiday     2000        0
## 7588      4.0     0.00      374 13/10/2018 No Holiday     1614        0
## 3994     21.6     0.06       97 16/05/2018 No Holiday      569        4
## 8095      1.9     0.00        0  3/11/2018 No Holiday      983        0
## 6182     20.6     2.46      591 15/08/2018    Holiday     2000        0
## 4702     16.9     0.00     1807 14/06/2018 No Holiday     1786        0
##      col 1097 col 1098 col 1099 col 1100 col 1101 col 1102 col 1103 col 1104
## 2992     17.9      5.4      2.2        0       44        0        0     17.9
## 7588      7.6      4.0      0.7        0       78        0        0      7.6
## 3994     22.8     21.6      3.1        4       93        4        0     22.8
## 8095      5.5      1.9      0.6        0       78        0        0      5.5
## 6182     36.9     20.6      1.5        0       39        0        0     36.9
## 4702     22.2     16.9      1.0        0       72        0        0     22.2
##      col 1105 col 1106 col 1107 col 1108 col 1109   col 1110 col 1111 col 1112
## 2992       44   Spring     1209      5.4      Yes No Holiday        0      2.2
## 7588       78   Autumn      374      4.0      Yes No Holiday        0      0.7
## 3994       93   Spring       97     21.6      Yes No Holiday        4      3.1
## 8095       78   Autumn        0      1.9       No No Holiday        0      0.6
## 6182       39   Summer      591     20.6      Yes    Holiday        0      1.5
## 4702       72   Summer     1807     16.9      Yes No Holiday        0      1.0
##        col 1113 col 1114 col 1115 col 1116 col 1117 col 1118 col 1119 col 1120
## 2992   4/4/2018      Yes     2.79     17.9     2000        0       15        0
## 7588 13/10/2018      Yes     0.00      7.6     1614        0        3        0
## 3994 16/05/2018      Yes     0.06     22.8      569        0        9        4
## 8095  3/11/2018       No     0.00      5.5      983        0        6        0
## 6182 15/08/2018      Yes     2.46     36.9     2000        0       13        0
## 4702 14/06/2018      Yes     0.00     22.2     1786        0       21        0
##      col 1121 col 1122 col 1123 col 1124 col 1125 col 1126 col 1127 col 1128
## 2992        0        0        0     17.9     17.9       44        0       44
## 7588        0        0        0      7.6      7.6       78        0       78
## 3994        4        0        4     22.8     22.8       93        0       93
## 8095        0        0        0      5.5      5.5       78        0       78
## 6182        0        0        0     36.9     36.9       39        0       39
## 4702        0        0        0     22.2     22.2       72        0       72
##      col 1129 col 1130 col 1131 col 1132 col 1133   col 1134 col 1135 col 1136
## 2992        0       15      Yes     17.9       15   4/4/2018       44       15
## 7588        0        3      Yes      7.6        3 13/10/2018       78        3
## 3994        4        9      Yes     22.8        9 16/05/2018       93        9
## 8095        0        6       No      5.5        6  3/11/2018       78        6
## 6182        0       13      Yes     36.9       13 15/08/2018       39       13
## 4702        0       21      Yes     22.2       21 14/06/2018       72       21
##      col 1137 col 1138 col 1139 col 1140 col 1141 col 1142 col 1143 col 1144
## 2992        0      2.2     2000        0       44      5.4     1209   Spring
## 7588        0      0.7     1614        0       78      4.0      374   Autumn
## 3994        0      3.1      569        0       93     21.6       97   Spring
## 8095        0      0.6      983        0       78      1.9        0   Autumn
## 6182        0      1.5     2000        0       39     20.6      591   Summer
## 4702        0      1.0     1786        0       72     16.9     1807   Summer
##      col 1145 col 1146   col 1147 col 1148 col 1149 col 1150 col 1151 col 1152
## 2992   Spring     2000 No Holiday     17.9       44   Spring        0      Yes
## 7588   Autumn     1614 No Holiday      7.6       78   Autumn        0      Yes
## 3994   Spring      569 No Holiday     22.8       93   Spring        0      Yes
## 8095   Autumn      983 No Holiday      5.5       78   Autumn        0       No
## 6182   Summer     2000    Holiday     36.9       39   Summer        0      Yes
## 4702   Summer     1786 No Holiday     22.2       72   Summer        0      Yes
##      col 1153 col 1154 col 1155 col 1156 col 1157   col 1158   col 1159
## 2992      Yes      Yes     2000     1209      2.2 No Holiday No Holiday
## 7588      Yes      Yes     1614      374      0.7 No Holiday No Holiday
## 3994      Yes      Yes      569       97      3.1 No Holiday No Holiday
## 8095       No       No      983        0      0.6 No Holiday No Holiday
## 6182      Yes      Yes     2000      591      1.5    Holiday    Holiday
## 4702      Yes      Yes     1786     1807      1.0 No Holiday No Holiday
##      col 1160 col 1161 col 1162   col 1163   col 1164 col 1165   col 1166
## 2992     17.9        0        0   4/4/2018   4/4/2018     2.79   4/4/2018
## 7588      7.6        0        0 13/10/2018 13/10/2018     0.00 13/10/2018
## 3994     22.8        0        4 16/05/2018 16/05/2018     0.06 16/05/2018
## 8095      5.5        0        0  3/11/2018  3/11/2018     0.00  3/11/2018
## 6182     36.9        0        0 15/08/2018 15/08/2018     2.46 15/08/2018
## 4702     22.2        0        0 14/06/2018 14/06/2018     0.00 14/06/2018
##      col 1167 col 1168 col 1169 col 1170 col 1171   col 1172 col 1173 col 1174
## 2992   Spring      Yes        0        0     2000   4/4/2018      5.4     17.9
## 7588   Autumn      Yes        0        0     1614 13/10/2018      4.0      7.6
## 3994   Spring      Yes        4        0      569 16/05/2018     21.6     22.8
## 8095   Autumn       No        0        0      983  3/11/2018      1.9      5.5
## 6182   Summer      Yes        0        0     2000 15/08/2018     20.6     36.9
## 4702   Summer      Yes        0        0     1786 14/06/2018     16.9     22.2
##      col 1175 col 1176 col 1177 col 1178 col 1179 col 1180 col 1181 col 1182
## 2992       15     2000        0        0      5.4     2.79       44       15
## 7588        3     1614        0        0      4.0     0.00       78        3
## 3994        9      569        4        4     21.6     0.06       93        9
## 8095        6      983        0        0      1.9     0.00       78        6
## 6182       13     2000        0        0     20.6     2.46       39       13
## 4702       21     1786        0        0     16.9     0.00       72       21
##        col 1183 col 1184 col 1185 col 1186 col 1187 col 1188 col 1189 col 1190
## 2992   4/4/2018     17.9     1209     2.79   Spring        0     17.9        0
## 7588 13/10/2018      7.6      374     0.00   Autumn        0      7.6        0
## 3994 16/05/2018     22.8       97     0.06   Spring        4     22.8        0
## 8095  3/11/2018      5.5        0     0.00   Autumn        0      5.5        0
## 6182 15/08/2018     36.9      591     2.46   Summer        0     36.9        0
## 4702 14/06/2018     22.2     1807     0.00   Summer        0     22.2        0
##        col 1191 col 1192 col 1193 col 1194 col 1195 col 1196 col 1197 col 1198
## 2992   4/4/2018       44   Spring        0      5.4        0      Yes      5.4
## 7588 13/10/2018       78   Autumn        0      4.0        0      Yes      4.0
## 3994 16/05/2018       93   Spring        0     21.6        0      Yes     21.6
## 8095  3/11/2018       78   Autumn        0      1.9        0       No      1.9
## 6182 15/08/2018       39   Summer        0     20.6        0      Yes     20.6
## 4702 14/06/2018       72   Summer        0     16.9        0      Yes     16.9
##      col 1199   col 1200 col 1201 col 1202 col 1203 col 1204 col 1205 col 1206
## 2992     1209   4/4/2018      2.2     2000       44     1209     2000   Spring
## 7588      374 13/10/2018      0.7     1614       78      374     1614   Autumn
## 3994       97 16/05/2018      3.1      569       93       97      569   Spring
## 8095        0  3/11/2018      0.6      983       78        0      983   Autumn
## 6182      591 15/08/2018      1.5     2000       39      591     2000   Summer
## 4702     1807 14/06/2018      1.0     1786       72     1807     1786   Summer
##      col 1207   col 1208 col 1209 col 1210 col 1211 col 1212 col 1213 col 1214
## 2992   Spring No Holiday       15        0       15      Yes      Yes     2000
## 7588   Autumn No Holiday        3        0        3      Yes      Yes     1614
## 3994   Spring No Holiday        9        0        9      Yes      Yes      569
## 8095   Autumn No Holiday        6        0        6       No       No      983
## 6182   Summer    Holiday       13        0       13      Yes      Yes     2000
## 4702   Summer No Holiday       21        0       21      Yes      Yes     1786
##      col 1215 col 1216 col 1217 col 1218 col 1219 col 1220 col 1221 col 1222
## 2992   Spring   Spring   Spring     2.79       15     1209      2.2      Yes
## 7588   Autumn   Autumn   Autumn     0.00        3      374      0.7      Yes
## 3994   Spring   Spring   Spring     0.06        9       97      3.1      Yes
## 8095   Autumn   Autumn   Autumn     0.00        6        0      0.6       No
## 6182   Summer   Summer   Summer     2.46       13      591      1.5      Yes
## 4702   Summer   Summer   Summer     0.00       21     1807      1.0      Yes
##      col 1223 col 1224 col 1225 col 1226   col 1227 col 1228 col 1229 col 1230
## 2992      2.2      Yes     2000       44   4/4/2018     2000   Spring      Yes
## 7588      0.7      Yes     1614       78 13/10/2018     1614   Autumn      Yes
## 3994      3.1      Yes      569       93 16/05/2018      569   Spring      Yes
## 8095      0.6       No      983       78  3/11/2018      983   Autumn       No
## 6182      1.5      Yes     2000       39 15/08/2018     2000   Summer      Yes
## 4702      1.0      Yes     1786       72 14/06/2018     1786   Summer      Yes
##      col 1231 col 1232 col 1233 col 1234 col 1235 col 1236 col 1237 col 1238
## 2992      2.2        0     2000     17.9       15     2000      Yes     2.79
## 7588      0.7        0     1614      7.6        3     1614      Yes     0.00
## 3994      3.1        4      569     22.8        9      569      Yes     0.06
## 8095      0.6        0      983      5.5        6      983       No     0.00
## 6182      1.5        0     2000     36.9       13     2000      Yes     2.46
## 4702      1.0        0     1786     22.2       21     1786      Yes     0.00
##      col 1239 col 1240 col 1241 col 1242   col 1243 col 1244   col 1245
## 2992     2.79     17.9        0     1209   4/4/2018      5.4 No Holiday
## 7588     0.00      7.6        0      374 13/10/2018      4.0 No Holiday
## 3994     0.06     22.8        0       97 16/05/2018     21.6 No Holiday
## 8095     0.00      5.5        0        0  3/11/2018      1.9 No Holiday
## 6182     2.46     36.9        0      591 15/08/2018     20.6    Holiday
## 4702     0.00     22.2        0     1807 14/06/2018     16.9 No Holiday
##      col 1246 col 1247 col 1248 col 1249 col 1250 col 1251 col 1252 col 1253
## 2992     2.79     2000        0        0   Spring       15     17.9       15
## 7588     0.00     1614        0        0   Autumn        3      7.6        3
## 3994     0.06      569        4        4   Spring        9     22.8        9
## 8095     0.00      983        0        0   Autumn        6      5.5        6
## 6182     2.46     2000        0        0   Summer       13     36.9       13
## 4702     0.00     1786        0        0   Summer       21     22.2       21
##      col 1254 col 1255 col 1256 col 1257 col 1258 col 1259 col 1260 col 1261
## 2992       44     17.9      2.2       15        0     2000     1209       44
## 7588       78      7.6      0.7        3        0     1614      374       78
## 3994       93     22.8      3.1        9        0      569       97       93
## 8095       78      5.5      0.6        6        0      983        0       78
## 6182       39     36.9      1.5       13        0     2000      591       39
## 4702       72     22.2      1.0       21        0     1786     1807       72
##      col 1262   col 1263 col 1264 col 1265 col 1266 col 1267 col 1268 col 1269
## 2992     2.79 No Holiday      Yes        0        0      5.4     2000       15
## 7588     0.00 No Holiday      Yes        0        0      4.0     1614        3
## 3994     0.06 No Holiday      Yes        4        0     21.6      569        9
## 8095     0.00 No Holiday       No        0        0      1.9      983        6
## 6182     2.46    Holiday      Yes        0        0     20.6     2000       13
## 4702     0.00 No Holiday      Yes        0        0     16.9     1786       21
##      col 1270   col 1271 col 1272 col 1273 col 1274   col 1275   col 1276
## 2992       15 No Holiday   Spring        0      Yes No Holiday No Holiday
## 7588        3 No Holiday   Autumn        0      Yes No Holiday No Holiday
## 3994        9 No Holiday   Spring        0      Yes No Holiday No Holiday
## 8095        6 No Holiday   Autumn        0       No No Holiday No Holiday
## 6182       13    Holiday   Summer        0      Yes    Holiday    Holiday
## 4702       21 No Holiday   Summer        0      Yes No Holiday No Holiday
##      col 1277   col 1278   col 1279 col 1280 col 1281 col 1282 col 1283
## 2992        0 No Holiday No Holiday     2000     17.9     1209      5.4
## 7588        0 No Holiday No Holiday     1614      7.6      374      4.0
## 3994        0 No Holiday No Holiday      569     22.8       97     21.6
## 8095        0 No Holiday No Holiday      983      5.5        0      1.9
## 6182        0    Holiday    Holiday     2000     36.9      591     20.6
## 4702        0 No Holiday No Holiday     1786     22.2     1807     16.9
##        col 1284 col 1285   col 1286   col 1287 col 1288 col 1289 col 1290
## 2992 No Holiday   Spring   4/4/2018   4/4/2018        0     1209   Spring
## 7588 No Holiday   Autumn 13/10/2018 13/10/2018        0      374   Autumn
## 3994 No Holiday   Spring 16/05/2018 16/05/2018        0       97   Spring
## 8095 No Holiday   Autumn  3/11/2018  3/11/2018        0        0   Autumn
## 6182    Holiday   Summer 15/08/2018 15/08/2018        0      591   Summer
## 4702 No Holiday   Summer 14/06/2018 14/06/2018        0     1807   Summer
##        col 1291 col 1292 col 1293 col 1294 col 1295 col 1296 col 1297 col 1298
## 2992 No Holiday      Yes     1209     1209       15       15      Yes      5.4
## 7588 No Holiday      Yes      374      374        3        3      Yes      4.0
## 3994 No Holiday      Yes       97       97        9        9      Yes     21.6
## 8095 No Holiday       No        0        0        6        6       No      1.9
## 6182    Holiday      Yes      591      591       13       13      Yes     20.6
## 4702 No Holiday      Yes     1807     1807       21       21      Yes     16.9
##      col 1299 col 1300   col 1301 col 1302 col 1303 col 1304 col 1305 col 1306
## 2992      2.2       44 No Holiday       44     1209        0     2.79       44
## 7588      0.7       78 No Holiday       78      374        0     0.00       78
## 3994      3.1       93 No Holiday       93       97        0     0.06       93
## 8095      0.6       78 No Holiday       78        0        0     0.00       78
## 6182      1.5       39    Holiday       39      591        0     2.46       39
## 4702      1.0       72 No Holiday       72     1807        0     0.00       72
##      col 1307 col 1308 col 1309 col 1310 col 1311 col 1312   col 1313 col 1314
## 2992        0      5.4       15      2.2      5.4     2000 No Holiday      5.4
## 7588        0      4.0        3      0.7      4.0     1614 No Holiday      4.0
## 3994        0     21.6        9      3.1     21.6      569 No Holiday     21.6
## 8095        0      1.9        6      0.6      1.9      983 No Holiday      1.9
## 6182        0     20.6       13      1.5     20.6     2000    Holiday     20.6
## 4702        0     16.9       21      1.0     16.9     1786 No Holiday     16.9
##      col 1315 col 1316 col 1317 col 1318 col 1319 col 1320 col 1321 col 1322
## 2992      5.4     2000        0   Spring      Yes      2.2     2.79        0
## 7588      4.0     1614        0   Autumn      Yes      0.7     0.00        0
## 3994     21.6      569        4   Spring      Yes      3.1     0.06        4
## 8095      1.9      983        0   Autumn       No      0.6     0.00        0
## 6182     20.6     2000        0   Summer      Yes      1.5     2.46        0
## 4702     16.9     1786        0   Summer      Yes      1.0     0.00        0
##      col 1323 col 1324 col 1325   col 1326 col 1327 col 1328 col 1329 col 1330
## 2992       15      5.4     1209   4/4/2018     2000     17.9      5.4   Spring
## 7588        3      4.0      374 13/10/2018     1614      7.6      4.0   Autumn
## 3994        9     21.6       97 16/05/2018      569     22.8     21.6   Spring
## 8095        6      1.9        0  3/11/2018      983      5.5      1.9   Autumn
## 6182       13     20.6      591 15/08/2018     2000     36.9     20.6   Summer
## 4702       21     16.9     1807 14/06/2018     1786     22.2     16.9   Summer
##      col 1331   col 1332 col 1333 col 1334 col 1335 col 1336 col 1337 col 1338
## 2992        0   4/4/2018       15       15   Spring        0      2.2        0
## 7588        0 13/10/2018        3        3   Autumn        0      0.7        0
## 3994        4 16/05/2018        9        9   Spring        0      3.1        4
## 8095        0  3/11/2018        6        6   Autumn        0      0.6        0
## 6182        0 15/08/2018       13       13   Summer        0      1.5        0
## 4702        0 14/06/2018       21       21   Summer        0      1.0        0
##      col 1339 col 1340 col 1341 col 1342 col 1343   col 1344 col 1345 col 1346
## 2992   Spring        0     1209       44       44   4/4/2018        0      5.4
## 7588   Autumn        0      374       78       78 13/10/2018        0      4.0
## 3994   Spring        4       97       93       93 16/05/2018        4     21.6
## 8095   Autumn        0        0       78       78  3/11/2018        0      1.9
## 6182   Summer        0      591       39       39 15/08/2018        0     20.6
## 4702   Summer        0     1807       72       72 14/06/2018        0     16.9
##      col 1347 col 1348 col 1349 col 1350   col 1351 col 1352 col 1353 col 1354
## 2992      2.2      2.2     1209        0   4/4/2018     1209     1209     2.79
## 7588      0.7      0.7      374        0 13/10/2018      374      374     0.00
## 3994      3.1      3.1       97        4 16/05/2018       97       97     0.06
## 8095      0.6      0.6        0        0  3/11/2018        0        0     0.00
## 6182      1.5      1.5      591        0 15/08/2018      591      591     2.46
## 4702      1.0      1.0     1807        0 14/06/2018     1807     1807     0.00
##      col 1355 col 1356 col 1357 col 1358 col 1359 col 1360 col 1361 col 1362
## 2992     2.79      2.2     1209        0      Yes       44   Spring        0
## 7588     0.00      0.7      374        0      Yes       78   Autumn        0
## 3994     0.06      3.1       97        0      Yes       93   Spring        4
## 8095     0.00      0.6        0        0       No       78   Autumn        0
## 6182     2.46      1.5      591        0      Yes       39   Summer        0
## 4702     0.00      1.0     1807        0      Yes       72   Summer        0
##      col 1363 col 1364 col 1365 col 1366 col 1367 col 1368 col 1369 col 1370
## 2992   Spring     17.9      2.2      5.4      2.2     17.9      2.2      2.2
## 7588   Autumn      7.6      0.7      4.0      0.7      7.6      0.7      0.7
## 3994   Spring     22.8      3.1     21.6      3.1     22.8      3.1      3.1
## 8095   Autumn      5.5      0.6      1.9      0.6      5.5      0.6      0.6
## 6182   Summer     36.9      1.5     20.6      1.5     36.9      1.5      1.5
## 4702   Summer     22.2      1.0     16.9      1.0     22.2      1.0      1.0
##      col 1371 col 1372 col 1373 col 1374 col 1375 col 1376 col 1377 col 1378
## 2992        0      2.2     2000      2.2     17.9   Spring       15        0
## 7588        0      0.7     1614      0.7      7.6   Autumn        3        0
## 3994        0      3.1      569      3.1     22.8   Spring        9        0
## 8095        0      0.6      983      0.6      5.5   Autumn        6        0
## 6182        0      1.5     2000      1.5     36.9   Summer       13        0
## 4702        0      1.0     1786      1.0     22.2   Summer       21        0
##      col 1379 col 1380 col 1381 col 1382 col 1383   col 1384 col 1385
## 2992     2.79      5.4       44        0     1209   4/4/2018       44
## 7588     0.00      4.0       78        0      374 13/10/2018       78
## 3994     0.06     21.6       93        0       97 16/05/2018       93
## 8095     0.00      1.9       78        0        0  3/11/2018       78
## 6182     2.46     20.6       39        0      591 15/08/2018       39
## 4702     0.00     16.9       72        0     1807 14/06/2018       72
##        col 1386 col 1387   col 1388 col 1389 col 1390   col 1391 col 1392
## 2992 No Holiday       44 No Holiday      5.4      5.4 No Holiday      Yes
## 7588 No Holiday       78 No Holiday      4.0      4.0 No Holiday      Yes
## 3994 No Holiday       93 No Holiday     21.6     21.6 No Holiday      Yes
## 8095 No Holiday       78 No Holiday      1.9      1.9 No Holiday       No
## 6182    Holiday       39    Holiday     20.6     20.6    Holiday      Yes
## 4702 No Holiday       72 No Holiday     16.9     16.9 No Holiday      Yes
##      col 1393 col 1394 col 1395 col 1396   col 1397 col 1398 col 1399 col 1400
## 2992       15   Spring     2000       44   4/4/2018   Spring      Yes     1209
## 7588        3   Autumn     1614       78 13/10/2018   Autumn      Yes      374
## 3994        9   Spring      569       93 16/05/2018   Spring      Yes       97
## 8095        6   Autumn      983       78  3/11/2018   Autumn       No        0
## 6182       13   Summer     2000       39 15/08/2018   Summer      Yes      591
## 4702       21   Summer     1786       72 14/06/2018   Summer      Yes     1807
##      col 1401 col 1402   col 1403 col 1404 col 1405 col 1406 col 1407 col 1408
## 2992     2000      Yes No Holiday     2000   Spring     2.79      5.4     2000
## 7588     1614      Yes No Holiday     1614   Autumn     0.00      4.0     1614
## 3994      569      Yes No Holiday      569   Spring     0.06     21.6      569
## 8095      983       No No Holiday      983   Autumn     0.00      1.9      983
## 6182     2000      Yes    Holiday     2000   Summer     2.46     20.6     2000
## 4702     1786      Yes No Holiday     1786   Summer     0.00     16.9     1786
##      col 1409 col 1410 col 1411 col 1412 col 1413 col 1414 col 1415 col 1416
## 2992        0        0       44        0      2.2     1209     17.9     1209
## 7588        0        0       78        0      0.7      374      7.6      374
## 3994        4        0       93        0      3.1       97     22.8       97
## 8095        0        0       78        0      0.6        0      5.5        0
## 6182        0        0       39        0      1.5      591     36.9      591
## 4702        0        0       72        0      1.0     1807     22.2     1807
##      col 1417 col 1418 col 1419 col 1420   col 1421 col 1422   col 1423
## 2992        0        0     2.79     1209   4/4/2018     17.9   4/4/2018
## 7588        0        0     0.00      374 13/10/2018      7.6 13/10/2018
## 3994        4        0     0.06       97 16/05/2018     22.8 16/05/2018
## 8095        0        0     0.00        0  3/11/2018      5.5  3/11/2018
## 6182        0        0     2.46      591 15/08/2018     36.9 15/08/2018
## 4702        0        0     0.00     1807 14/06/2018     22.2 14/06/2018
##      col 1424 col 1425 col 1426 col 1427 col 1428 col 1429 col 1430 col 1431
## 2992     17.9      5.4        0     17.9     2000        0       44   Spring
## 7588      7.6      4.0        0      7.6     1614        0       78   Autumn
## 3994     22.8     21.6        0     22.8      569        0       93   Spring
## 8095      5.5      1.9        0      5.5      983        0       78   Autumn
## 6182     36.9     20.6        0     36.9     2000        0       39   Summer
## 4702     22.2     16.9        0     22.2     1786        0       72   Summer
##      col 1432 col 1433 col 1434 col 1435 col 1436 col 1437 col 1438 col 1439
## 2992       15      Yes      5.4     2000        0     1209     1209       15
## 7588        3      Yes      4.0     1614        0      374      374        3
## 3994        9      Yes     21.6      569        0       97       97        9
## 8095        6       No      1.9      983        0        0        0        6
## 6182       13      Yes     20.6     2000        0      591      591       13
## 4702       21      Yes     16.9     1786        0     1807     1807       21
##      col 1440 col 1441 col 1442 col 1443 col 1444 col 1445 col 1446 col 1447
## 2992        0       15     2000      Yes     2000     2000   Spring     2.79
## 7588        0        3     1614      Yes     1614     1614   Autumn     0.00
## 3994        4        9      569      Yes      569      569   Spring     0.06
## 8095        0        6      983       No      983      983   Autumn     0.00
## 6182        0       13     2000      Yes     2000     2000   Summer     2.46
## 4702        0       21     1786      Yes     1786     1786   Summer     0.00
##      col 1448 col 1449 col 1450 col 1451 col 1452 col 1453 col 1454 col 1455
## 2992      5.4     2.79       44     2.79       15      Yes     17.9     1209
## 7588      4.0     0.00       78     0.00        3      Yes      7.6      374
## 3994     21.6     0.06       93     0.06        9      Yes     22.8       97
## 8095      1.9     0.00       78     0.00        6       No      5.5        0
## 6182     20.6     2.46       39     2.46       13      Yes     36.9      591
## 4702     16.9     0.00       72     0.00       21      Yes     22.2     1807
##      col 1456 col 1457 col 1458   col 1459   col 1460 col 1461 col 1462
## 2992     2.79     2000     2000 No Holiday No Holiday       44      5.4
## 7588     0.00     1614     1614 No Holiday No Holiday       78      4.0
## 3994     0.06      569      569 No Holiday No Holiday       93     21.6
## 8095     0.00      983      983 No Holiday No Holiday       78      1.9
## 6182     2.46     2000     2000    Holiday    Holiday       39     20.6
## 4702     0.00     1786     1786 No Holiday No Holiday       72     16.9
##      col 1463 col 1464 col 1465 col 1466 col 1467 col 1468 col 1469 col 1470
## 2992       15     17.9     17.9        0     2000      5.4        0      Yes
## 7588        3      7.6      7.6        0     1614      4.0        0      Yes
## 3994        9     22.8     22.8        4      569     21.6        0      Yes
## 8095        6      5.5      5.5        0      983      1.9        0       No
## 6182       13     36.9     36.9        0     2000     20.6        0      Yes
## 4702       21     22.2     22.2        0     1786     16.9        0      Yes
##      col 1471 col 1472 col 1473 col 1474 col 1475 col 1476 col 1477 col 1478
## 2992     17.9     2.79      2.2      5.4     2.79       44      5.4      2.2
## 7588      7.6     0.00      0.7      4.0     0.00       78      4.0      0.7
## 3994     22.8     0.06      3.1     21.6     0.06       93     21.6      3.1
## 8095      5.5     0.00      0.6      1.9     0.00       78      1.9      0.6
## 6182     36.9     2.46      1.5     20.6     2.46       39     20.6      1.5
## 4702     22.2     0.00      1.0     16.9     0.00       72     16.9      1.0
##      col 1479 col 1480   col 1481 col 1482 col 1483 col 1484 col 1485 col 1486
## 2992        0     2.79 No Holiday     1209     1209       15     2.79   Spring
## 7588        0     0.00 No Holiday      374      374        3     0.00   Autumn
## 3994        4     0.06 No Holiday       97       97        9     0.06   Spring
## 8095        0     0.00 No Holiday        0        0        6     0.00   Autumn
## 6182        0     2.46    Holiday      591      591       13     2.46   Summer
## 4702        0     0.00 No Holiday     1807     1807       21     0.00   Summer
##      col 1487 col 1488 col 1489 col 1490   col 1491 col 1492 col 1493 col 1494
## 2992     2000      2.2        0        0 No Holiday       15     17.9     2000
## 7588     1614      0.7        0        0 No Holiday        3      7.6     1614
## 3994      569      3.1        0        4 No Holiday        9     22.8      569
## 8095      983      0.6        0        0 No Holiday        6      5.5      983
## 6182     2000      1.5        0        0    Holiday       13     36.9     2000
## 4702     1786      1.0        0        0 No Holiday       21     22.2     1786
##      col 1495 col 1496 col 1497 col 1498 col 1499 col 1500 col 1501 col 1502
## 2992        0        0      5.4      2.2       44     2000      2.2        0
## 7588        0        0      4.0      0.7       78     1614      0.7        0
## 3994        4        0     21.6      3.1       93      569      3.1        0
## 8095        0        0      1.9      0.6       78      983      0.6        0
## 6182        0        0     20.6      1.5       39     2000      1.5        0
## 4702        0        0     16.9      1.0       72     1786      1.0        0
##      col 1503 col 1504 col 1505 col 1506 col 1507   col 1508   col 1509
## 2992       44      Yes     2000     2.79        0   4/4/2018   4/4/2018
## 7588       78      Yes     1614     0.00        0 13/10/2018 13/10/2018
## 3994       93      Yes      569     0.06        0 16/05/2018 16/05/2018
## 8095       78       No      983     0.00        0  3/11/2018  3/11/2018
## 6182       39      Yes     2000     2.46        0 15/08/2018 15/08/2018
## 4702       72      Yes     1786     0.00        0 14/06/2018 14/06/2018
##      col 1510   col 1511   col 1512   col 1513   col 1514 col 1515 col 1516
## 2992   Spring No Holiday   4/4/2018   4/4/2018 No Holiday      Yes       15
## 7588   Autumn No Holiday 13/10/2018 13/10/2018 No Holiday      Yes        3
## 3994   Spring No Holiday 16/05/2018 16/05/2018 No Holiday      Yes        9
## 8095   Autumn No Holiday  3/11/2018  3/11/2018 No Holiday       No        6
## 6182   Summer    Holiday 15/08/2018 15/08/2018    Holiday      Yes       13
## 4702   Summer No Holiday 14/06/2018 14/06/2018 No Holiday      Yes       21
##        col 1517   col 1518   col 1519 col 1520 col 1521 col 1522 col 1523
## 2992   4/4/2018 No Holiday   4/4/2018        0        0   Spring        0
## 7588 13/10/2018 No Holiday 13/10/2018        0        0   Autumn        0
## 3994 16/05/2018 No Holiday 16/05/2018        0        0   Spring        0
## 8095  3/11/2018 No Holiday  3/11/2018        0        0   Autumn        0
## 6182 15/08/2018    Holiday 15/08/2018        0        0   Summer        0
## 4702 14/06/2018 No Holiday 14/06/2018        0        0   Summer        0
##      col 1524 col 1525 col 1526 col 1527 col 1528 col 1529 col 1530 col 1531
## 2992     1209     2.79     2000        0       44     2000     17.9     17.9
## 7588      374     0.00     1614        0       78     1614      7.6      7.6
## 3994       97     0.06      569        0       93      569     22.8     22.8
## 8095        0     0.00      983        0       78      983      5.5      5.5
## 6182      591     2.46     2000        0       39     2000     36.9     36.9
## 4702     1807     0.00     1786        0       72     1786     22.2     22.2
##      col 1532 col 1533   col 1534   col 1535 col 1536 col 1537 col 1538
## 2992     2.79      Yes   4/4/2018 No Holiday      2.2      Yes        0
## 7588     0.00      Yes 13/10/2018 No Holiday      0.7      Yes        0
## 3994     0.06      Yes 16/05/2018 No Holiday      3.1      Yes        0
## 8095     0.00       No  3/11/2018 No Holiday      0.6       No        0
## 6182     2.46      Yes 15/08/2018    Holiday      1.5      Yes        0
## 4702     0.00      Yes 14/06/2018 No Holiday      1.0      Yes        0
##      col 1539 col 1540 col 1541 col 1542 col 1543   col 1544 col 1545 col 1546
## 2992        0     2.79        0      Yes      Yes   4/4/2018   Spring       15
## 7588        0     0.00        0      Yes      Yes 13/10/2018   Autumn        3
## 3994        0     0.06        4      Yes      Yes 16/05/2018   Spring        9
## 8095        0     0.00        0       No       No  3/11/2018   Autumn        6
## 6182        0     2.46        0      Yes      Yes 15/08/2018   Summer       13
## 4702        0     0.00        0      Yes      Yes 14/06/2018   Summer       21
##      col 1547 col 1548 col 1549 col 1550 col 1551 col 1552 col 1553 col 1554
## 2992      Yes       44      5.4      5.4        0      5.4        0     2.79
## 7588      Yes       78      4.0      4.0        0      4.0        0     0.00
## 3994      Yes       93     21.6     21.6        4     21.6        0     0.06
## 8095       No       78      1.9      1.9        0      1.9        0     0.00
## 6182      Yes       39     20.6     20.6        0     20.6        0     2.46
## 4702      Yes       72     16.9     16.9        0     16.9        0     0.00
##      col 1555 col 1556 col 1557 col 1558 col 1559   col 1560 col 1561 col 1562
## 2992     17.9     17.9       15     1209       15   4/4/2018      Yes     2000
## 7588      7.6      7.6        3      374        3 13/10/2018      Yes     1614
## 3994     22.8     22.8        9       97        9 16/05/2018      Yes      569
## 8095      5.5      5.5        6        0        6  3/11/2018       No      983
## 6182     36.9     36.9       13      591       13 15/08/2018      Yes     2000
## 4702     22.2     22.2       21     1807       21 14/06/2018      Yes     1786
##        col 1563 col 1564 col 1565 col 1566 col 1567 col 1568 col 1569 col 1570
## 2992 No Holiday      Yes        0       44       44        0      Yes      5.4
## 7588 No Holiday      Yes        0       78       78        0      Yes      4.0
## 3994 No Holiday      Yes        0       93       93        4      Yes     21.6
## 8095 No Holiday       No        0       78       78        0       No      1.9
## 6182    Holiday      Yes        0       39       39        0      Yes     20.6
## 4702 No Holiday      Yes        0       72       72        0      Yes     16.9
##        col 1571 col 1572 col 1573 col 1574 col 1575 col 1576 col 1577 col 1578
## 2992 No Holiday       15     2.79     2.79      Yes        0      2.2     1209
## 7588 No Holiday        3     0.00     0.00      Yes        0      0.7      374
## 3994 No Holiday        9     0.06     0.06      Yes        4      3.1       97
## 8095 No Holiday        6     0.00     0.00       No        0      0.6        0
## 6182    Holiday       13     2.46     2.46      Yes        0      1.5      591
## 4702 No Holiday       21     0.00     0.00      Yes        0      1.0     1807
##      col 1579 col 1580 col 1581 col 1582 col 1583 col 1584 col 1585 col 1586
## 2992     2000     2000      2.2     17.9        0       44       44      5.4
## 7588     1614     1614      0.7      7.6        0       78       78      4.0
## 3994      569      569      3.1     22.8        0       93       93     21.6
## 8095      983      983      0.6      5.5        0       78       78      1.9
## 6182     2000     2000      1.5     36.9        0       39       39     20.6
## 4702     1786     1786      1.0     22.2        0       72       72     16.9
##      col 1587   col 1588 col 1589 col 1590 col 1591 col 1592 col 1593 col 1594
## 2992       15   4/4/2018     17.9      Yes      5.4   Spring     17.9   Spring
## 7588        3 13/10/2018      7.6      Yes      4.0   Autumn      7.6   Autumn
## 3994        9 16/05/2018     22.8      Yes     21.6   Spring     22.8   Spring
## 8095        6  3/11/2018      5.5       No      1.9   Autumn      5.5   Autumn
## 6182       13 15/08/2018     36.9      Yes     20.6   Summer     36.9   Summer
## 4702       21 14/06/2018     22.2      Yes     16.9   Summer     22.2   Summer
##      col 1595 col 1596   col 1597 col 1598 col 1599 col 1600 col 1601
## 2992        0   Spring No Holiday      2.2       44     1209   Spring
## 7588        0   Autumn No Holiday      0.7       78      374   Autumn
## 3994        0   Spring No Holiday      3.1       93       97   Spring
## 8095        0   Autumn No Holiday      0.6       78        0   Autumn
## 6182        0   Summer    Holiday      1.5       39      591   Summer
## 4702        0   Summer No Holiday      1.0       72     1807   Summer
##        col 1602 col 1603 col 1604   col 1605 col 1606 col 1607 col 1608
## 2992   4/4/2018       15       44 No Holiday     1209     2.79     2.79
## 7588 13/10/2018        3       78 No Holiday      374     0.00     0.00
## 3994 16/05/2018        9       93 No Holiday       97     0.06     0.06
## 8095  3/11/2018        6       78 No Holiday        0     0.00     0.00
## 6182 15/08/2018       13       39    Holiday      591     2.46     2.46
## 4702 14/06/2018       21       72 No Holiday     1807     0.00     0.00
##      col 1609 col 1610 col 1611 col 1612 col 1613 col 1614 col 1615 col 1616
## 2992   Spring       15        0     1209       44       15   Spring   Spring
## 7588   Autumn        3        0      374       78        3   Autumn   Autumn
## 3994   Spring        9        0       97       93        9   Spring   Spring
## 8095   Autumn        6        0        0       78        6   Autumn   Autumn
## 6182   Summer       13        0      591       39       13   Summer   Summer
## 4702   Summer       21        0     1807       72       21   Summer   Summer
##      col 1617 col 1618 col 1619 col 1620   col 1621 col 1622   col 1623
## 2992      5.4       44        0      2.2 No Holiday     1209 No Holiday
## 7588      4.0       78        0      0.7 No Holiday      374 No Holiday
## 3994     21.6       93        0      3.1 No Holiday       97 No Holiday
## 8095      1.9       78        0      0.6 No Holiday        0 No Holiday
## 6182     20.6       39        0      1.5    Holiday      591    Holiday
## 4702     16.9       72        0      1.0 No Holiday     1807 No Holiday
##        col 1624 col 1625 col 1626 col 1627 col 1628 col 1629 col 1630 col 1631
## 2992   4/4/2018       44     17.9     1209      5.4      Yes       15     2000
## 7588 13/10/2018       78      7.6      374      4.0      Yes        3     1614
## 3994 16/05/2018       93     22.8       97     21.6      Yes        9      569
## 8095  3/11/2018       78      5.5        0      1.9       No        6      983
## 6182 15/08/2018       39     36.9      591     20.6      Yes       13     2000
## 4702 14/06/2018       72     22.2     1807     16.9      Yes       21     1786
##        col 1632 col 1633   col 1634 col 1635 col 1636 col 1637 col 1638
## 2992 No Holiday     2000 No Holiday        0        0       15      5.4
## 7588 No Holiday     1614 No Holiday        0        0        3      4.0
## 3994 No Holiday      569 No Holiday        4        0        9     21.6
## 8095 No Holiday      983 No Holiday        0        0        6      1.9
## 6182    Holiday     2000    Holiday        0        0       13     20.6
## 4702 No Holiday     1786 No Holiday        0        0       21     16.9
##      col 1639 col 1640 col 1641 col 1642 col 1643 col 1644   col 1645 col 1646
## 2992        0        0        0     2.79     2000        0 No Holiday      2.2
## 7588        0        0        0     0.00     1614        0 No Holiday      0.7
## 3994        0        4        4     0.06      569        0 No Holiday      3.1
## 8095        0        0        0     0.00      983        0 No Holiday      0.6
## 6182        0        0        0     2.46     2000        0    Holiday      1.5
## 4702        0        0        0     0.00     1786        0 No Holiday      1.0
##      col 1647 col 1648 col 1649 col 1650 col 1651   col 1652   col 1653
## 2992        0   Spring     1209      Yes       44   4/4/2018 No Holiday
## 7588        0   Autumn      374      Yes       78 13/10/2018 No Holiday
## 3994        0   Spring       97      Yes       93 16/05/2018 No Holiday
## 8095        0   Autumn        0       No       78  3/11/2018 No Holiday
## 6182        0   Summer      591      Yes       39 15/08/2018    Holiday
## 4702        0   Summer     1807      Yes       72 14/06/2018 No Holiday
##      col 1654 col 1655 col 1656 col 1657 col 1658 col 1659 col 1660 col 1661
## 2992     17.9       44        0   Spring       44     2000     2000        0
## 7588      7.6       78        0   Autumn       78     1614     1614        0
## 3994     22.8       93        4   Spring       93      569      569        0
## 8095      5.5       78        0   Autumn       78      983      983        0
## 6182     36.9       39        0   Summer       39     2000     2000        0
## 4702     22.2       72        0   Summer       72     1786     1786        0
##      col 1662 col 1663 col 1664 col 1665 col 1666 col 1667 col 1668 col 1669
## 2992        0        0        0        0     2000       15      5.4      5.4
## 7588        0        0        0        0     1614        3      4.0      4.0
## 3994        4        0        0        4      569        9     21.6     21.6
## 8095        0        0        0        0      983        6      1.9      1.9
## 6182        0        0        0        0     2000       13     20.6     20.6
## 4702        0        0        0        0     1786       21     16.9     16.9
##      col 1670 col 1671 col 1672 col 1673 col 1674 col 1675 col 1676 col 1677
## 2992     2.79     2000     1209      Yes        0     1209      5.4     2.79
## 7588     0.00     1614      374      Yes        0      374      4.0     0.00
## 3994     0.06      569       97      Yes        0       97     21.6     0.06
## 8095     0.00      983        0       No        0        0      1.9     0.00
## 6182     2.46     2000      591      Yes        0      591     20.6     2.46
## 4702     0.00     1786     1807      Yes        0     1807     16.9     0.00
##      col 1678 col 1679 col 1680 col 1681 col 1682 col 1683 col 1684 col 1685
## 2992     2000        0     2000      5.4   Spring   Spring     2.79       44
## 7588     1614        0     1614      4.0   Autumn   Autumn     0.00       78
## 3994      569        0      569     21.6   Spring   Spring     0.06       93
## 8095      983        0      983      1.9   Autumn   Autumn     0.00       78
## 6182     2000        0     2000     20.6   Summer   Summer     2.46       39
## 4702     1786        0     1786     16.9   Summer   Summer     0.00       72
##      col 1686 col 1687   col 1688 col 1689   col 1690 col 1691   col 1692
## 2992      2.2      2.2   4/4/2018        0 No Holiday        0 No Holiday
## 7588      0.7      0.7 13/10/2018        0 No Holiday        0 No Holiday
## 3994      3.1      3.1 16/05/2018        4 No Holiday        4 No Holiday
## 8095      0.6      0.6  3/11/2018        0 No Holiday        0 No Holiday
## 6182      1.5      1.5 15/08/2018        0    Holiday        0    Holiday
## 4702      1.0      1.0 14/06/2018        0 No Holiday        0 No Holiday
##      col 1693 col 1694 col 1695 col 1696 col 1697 col 1698 col 1699 col 1700
## 2992     1209        0        0       15        0        0        0      Yes
## 7588      374        0        0        3        0        0        0      Yes
## 3994       97        0        0        9        4        0        0      Yes
## 8095        0        0        0        6        0        0        0       No
## 6182      591        0        0       13        0        0        0      Yes
## 4702     1807        0        0       21        0        0        0      Yes
##      col 1701   col 1702   col 1703 col 1704 col 1705 col 1706 col 1707
## 2992      5.4   4/4/2018   4/4/2018     2000     2.79   Spring       15
## 7588      4.0 13/10/2018 13/10/2018     1614     0.00   Autumn        3
## 3994     21.6 16/05/2018 16/05/2018      569     0.06   Spring        9
## 8095      1.9  3/11/2018  3/11/2018      983     0.00   Autumn        6
## 6182     20.6 15/08/2018 15/08/2018     2000     2.46   Summer       13
## 4702     16.9 14/06/2018 14/06/2018     1786     0.00   Summer       21
##        col 1708 col 1709 col 1710 col 1711 col 1712 col 1713 col 1714 col 1715
## 2992   4/4/2018      5.4     1209   Spring   Spring     1209     2000   Spring
## 7588 13/10/2018      4.0      374   Autumn   Autumn      374     1614   Autumn
## 3994 16/05/2018     21.6       97   Spring   Spring       97      569   Spring
## 8095  3/11/2018      1.9        0   Autumn   Autumn        0      983   Autumn
## 6182 15/08/2018     20.6      591   Summer   Summer      591     2000   Summer
## 4702 14/06/2018     16.9     1807   Summer   Summer     1807     1786   Summer
##      col 1716 col 1717 col 1718   col 1719 col 1720 col 1721 col 1722 col 1723
## 2992      Yes        0      Yes No Holiday     2.79   Spring        0        0
## 7588      Yes        0      Yes No Holiday     0.00   Autumn        0        0
## 3994      Yes        4      Yes No Holiday     0.06   Spring        0        4
## 8095       No        0       No No Holiday     0.00   Autumn        0        0
## 6182      Yes        0      Yes    Holiday     2.46   Summer        0        0
## 4702      Yes        0      Yes No Holiday     0.00   Summer        0        0
##      col 1724 col 1725 col 1726 col 1727 col 1728 col 1729 col 1730 col 1731
## 2992     2.79      2.2      2.2     2.79     1209     1209      5.4     1209
## 7588     0.00      0.7      0.7     0.00      374      374      4.0      374
## 3994     0.06      3.1      3.1     0.06       97       97     21.6       97
## 8095     0.00      0.6      0.6     0.00        0        0      1.9        0
## 6182     2.46      1.5      1.5     2.46      591      591     20.6      591
## 4702     0.00      1.0      1.0     0.00     1807     1807     16.9     1807
##      col 1732 col 1733   col 1734 col 1735 col 1736 col 1737 col 1738 col 1739
## 2992      5.4     2.79 No Holiday      5.4     17.9      2.2     17.9      Yes
## 7588      4.0     0.00 No Holiday      4.0      7.6      0.7      7.6      Yes
## 3994     21.6     0.06 No Holiday     21.6     22.8      3.1     22.8      Yes
## 8095      1.9     0.00 No Holiday      1.9      5.5      0.6      5.5       No
## 6182     20.6     2.46    Holiday     20.6     36.9      1.5     36.9      Yes
## 4702     16.9     0.00 No Holiday     16.9     22.2      1.0     22.2      Yes
##      col 1740   col 1741 col 1742   col 1743 col 1744 col 1745 col 1746
## 2992     2.79 No Holiday       44 No Holiday     2000      2.2      2.2
## 7588     0.00 No Holiday       78 No Holiday     1614      0.7      0.7
## 3994     0.06 No Holiday       93 No Holiday      569      3.1      3.1
## 8095     0.00 No Holiday       78 No Holiday      983      0.6      0.6
## 6182     2.46    Holiday       39    Holiday     2000      1.5      1.5
## 4702     0.00 No Holiday       72 No Holiday     1786      1.0      1.0
##      col 1747 col 1748 col 1749 col 1750 col 1751 col 1752 col 1753 col 1754
## 2992     17.9       44   Spring     2.79      2.2      Yes        0     1209
## 7588      7.6       78   Autumn     0.00      0.7      Yes        0      374
## 3994     22.8       93   Spring     0.06      3.1      Yes        0       97
## 8095      5.5       78   Autumn     0.00      0.6       No        0        0
## 6182     36.9       39   Summer     2.46      1.5      Yes        0      591
## 4702     22.2       72   Summer     0.00      1.0      Yes        0     1807
##      col 1755 col 1756 col 1757 col 1758 col 1759   col 1760 col 1761 col 1762
## 2992      2.2      2.2      2.2   Spring     1209 No Holiday     2000      Yes
## 7588      0.7      0.7      0.7   Autumn      374 No Holiday     1614      Yes
## 3994      3.1      3.1      3.1   Spring       97 No Holiday      569      Yes
## 8095      0.6      0.6      0.6   Autumn        0 No Holiday      983       No
## 6182      1.5      1.5      1.5   Summer      591    Holiday     2000      Yes
## 4702      1.0      1.0      1.0   Summer     1807 No Holiday     1786      Yes
##      col 1763 col 1764 col 1765 col 1766 col 1767   col 1768 col 1769
## 2992        0      5.4   Spring       15     17.9   4/4/2018     2.79
## 7588        0      4.0   Autumn        3      7.6 13/10/2018     0.00
## 3994        0     21.6   Spring        9     22.8 16/05/2018     0.06
## 8095        0      1.9   Autumn        6      5.5  3/11/2018     0.00
## 6182        0     20.6   Summer       13     36.9 15/08/2018     2.46
## 4702        0     16.9   Summer       21     22.2 14/06/2018     0.00
##        col 1770 col 1771 col 1772 col 1773 col 1774   col 1775 col 1776
## 2992   4/4/2018      2.2       44      Yes      Yes No Holiday   Spring
## 7588 13/10/2018      0.7       78      Yes      Yes No Holiday   Autumn
## 3994 16/05/2018      3.1       93      Yes      Yes No Holiday   Spring
## 8095  3/11/2018      0.6       78       No       No No Holiday   Autumn
## 6182 15/08/2018      1.5       39      Yes      Yes    Holiday   Summer
## 4702 14/06/2018      1.0       72      Yes      Yes No Holiday   Summer
##      col 1777 col 1778 col 1779   col 1780   col 1781 col 1782 col 1783
## 2992        0      5.4        0 No Holiday   4/4/2018     2000      Yes
## 7588        0      4.0        0 No Holiday 13/10/2018     1614      Yes
## 3994        4     21.6        4 No Holiday 16/05/2018      569      Yes
## 8095        0      1.9        0 No Holiday  3/11/2018      983       No
## 6182        0     20.6        0    Holiday 15/08/2018     2000      Yes
## 4702        0     16.9        0 No Holiday 14/06/2018     1786      Yes
##      col 1784   col 1785 col 1786 col 1787 col 1788 col 1789 col 1790 col 1791
## 2992     1209 No Holiday       44       44   Spring       44       44     2000
## 7588      374 No Holiday       78       78   Autumn       78       78     1614
## 3994       97 No Holiday       93       93   Spring       93       93      569
## 8095        0 No Holiday       78       78   Autumn       78       78      983
## 6182      591    Holiday       39       39   Summer       39       39     2000
## 4702     1807 No Holiday       72       72   Summer       72       72     1786
##      col 1792   col 1793 col 1794 col 1795 col 1796 col 1797 col 1798 col 1799
## 2992     17.9 No Holiday      Yes   Spring     17.9      Yes      Yes     2.79
## 7588      7.6 No Holiday      Yes   Autumn      7.6      Yes      Yes     0.00
## 3994     22.8 No Holiday      Yes   Spring     22.8      Yes      Yes     0.06
## 8095      5.5 No Holiday       No   Autumn      5.5       No       No     0.00
## 6182     36.9    Holiday      Yes   Summer     36.9      Yes      Yes     2.46
## 4702     22.2 No Holiday      Yes   Summer     22.2      Yes      Yes     0.00
##        col 1800 col 1801 col 1802 col 1803   col 1804 col 1805 col 1806
## 2992 No Holiday     2000     1209       15 No Holiday        0     1209
## 7588 No Holiday     1614      374        3 No Holiday        0      374
## 3994 No Holiday      569       97        9 No Holiday        0       97
## 8095 No Holiday      983        0        6 No Holiday        0        0
## 6182    Holiday     2000      591       13    Holiday        0      591
## 4702 No Holiday     1786     1807       21 No Holiday        0     1807
##      col 1807 col 1808 col 1809   col 1810   col 1811 col 1812   col 1813
## 2992        0     17.9     1209 No Holiday   4/4/2018     17.9   4/4/2018
## 7588        0      7.6      374 No Holiday 13/10/2018      7.6 13/10/2018
## 3994        0     22.8       97 No Holiday 16/05/2018     22.8 16/05/2018
## 8095        0      5.5        0 No Holiday  3/11/2018      5.5  3/11/2018
## 6182        0     36.9      591    Holiday 15/08/2018     36.9 15/08/2018
## 4702        0     22.2     1807 No Holiday 14/06/2018     22.2 14/06/2018
##      col 1814 col 1815   col 1816 col 1817   col 1818 col 1819 col 1820
## 2992      2.2       15   4/4/2018       15   4/4/2018     2000      Yes
## 7588      0.7        3 13/10/2018        3 13/10/2018     1614      Yes
## 3994      3.1        9 16/05/2018        9 16/05/2018      569      Yes
## 8095      0.6        6  3/11/2018        6  3/11/2018      983       No
## 6182      1.5       13 15/08/2018       13 15/08/2018     2000      Yes
## 4702      1.0       21 14/06/2018       21 14/06/2018     1786      Yes
##      col 1821 col 1822 col 1823 col 1824 col 1825 col 1826 col 1827 col 1828
## 2992      5.4        0      2.2      Yes     2.79     1209      2.2     2.79
## 7588      4.0        0      0.7      Yes     0.00      374      0.7     0.00
## 3994     21.6        4      3.1      Yes     0.06       97      3.1     0.06
## 8095      1.9        0      0.6       No     0.00        0      0.6     0.00
## 6182     20.6        0      1.5      Yes     2.46      591      1.5     2.46
## 4702     16.9        0      1.0      Yes     0.00     1807      1.0     0.00
##      col 1829 col 1830 col 1831 col 1832   col 1833 col 1834 col 1835 col 1836
## 2992     1209      2.2        0       44 No Holiday      Yes   Spring       44
## 7588      374      0.7        0       78 No Holiday      Yes   Autumn       78
## 3994       97      3.1        4       93 No Holiday      Yes   Spring       93
## 8095        0      0.6        0       78 No Holiday       No   Autumn       78
## 6182      591      1.5        0       39    Holiday      Yes   Summer       39
## 4702     1807      1.0        0       72 No Holiday      Yes   Summer       72
##      col 1837 col 1838 col 1839 col 1840 col 1841   col 1842 col 1843 col 1844
## 2992        0        0        0     17.9       15 No Holiday      Yes        0
## 7588        0        0        0      7.6        3 No Holiday      Yes        0
## 3994        0        4        0     22.8        9 No Holiday      Yes        4
## 8095        0        0        0      5.5        6 No Holiday       No        0
## 6182        0        0        0     36.9       13    Holiday      Yes        0
## 4702        0        0        0     22.2       21 No Holiday      Yes        0
##      col 1845 col 1846 col 1847 col 1848 col 1849 col 1850 col 1851 col 1852
## 2992   Spring        0       44       15       15   Spring     2000     2000
## 7588   Autumn        0       78        3        3   Autumn     1614     1614
## 3994   Spring        0       93        9        9   Spring      569      569
## 8095   Autumn        0       78        6        6   Autumn      983      983
## 6182   Summer        0       39       13       13   Summer     2000     2000
## 4702   Summer        0       72       21       21   Summer     1786     1786
##      col 1853 col 1854 col 1855 col 1856   col 1857   col 1858 col 1859
## 2992      2.2   Spring     1209        0 No Holiday No Holiday       44
## 7588      0.7   Autumn      374        0 No Holiday No Holiday       78
## 3994      3.1   Spring       97        0 No Holiday No Holiday       93
## 8095      0.6   Autumn        0        0 No Holiday No Holiday       78
## 6182      1.5   Summer      591        0    Holiday    Holiday       39
## 4702      1.0   Summer     1807        0 No Holiday No Holiday       72
##      col 1860 col 1861   col 1862 col 1863 col 1864 col 1865 col 1866 col 1867
## 2992        0       15   4/4/2018   Spring       15   Spring     1209       15
## 7588        0        3 13/10/2018   Autumn        3   Autumn      374        3
## 3994        0        9 16/05/2018   Spring        9   Spring       97        9
## 8095        0        6  3/11/2018   Autumn        6   Autumn        0        6
## 6182        0       13 15/08/2018   Summer       13   Summer      591       13
## 4702        0       21 14/06/2018   Summer       21   Summer     1807       21
##      col 1868 col 1869 col 1870 col 1871 col 1872 col 1873 col 1874 col 1875
## 2992       44      Yes      2.2        0        0       15     2.79       44
## 7588       78      Yes      0.7        0        0        3     0.00       78
## 3994       93      Yes      3.1        4        4        9     0.06       93
## 8095       78       No      0.6        0        0        6     0.00       78
## 6182       39      Yes      1.5        0        0       13     2.46       39
## 4702       72      Yes      1.0        0        0       21     0.00       72
##        col 1876 col 1877 col 1878 col 1879 col 1880 col 1881 col 1882 col 1883
## 2992   4/4/2018     17.9      Yes     17.9      Yes   Spring     2.79      5.4
## 7588 13/10/2018      7.6      Yes      7.6      Yes   Autumn     0.00      4.0
## 3994 16/05/2018     22.8      Yes     22.8      Yes   Spring     0.06     21.6
## 8095  3/11/2018      5.5       No      5.5       No   Autumn     0.00      1.9
## 6182 15/08/2018     36.9      Yes     36.9      Yes   Summer     2.46     20.6
## 4702 14/06/2018     22.2      Yes     22.2      Yes   Summer     0.00     16.9
##      col 1884 col 1885 col 1886 col 1887 col 1888 col 1889   col 1890 col 1891
## 2992     2.79      Yes      Yes      Yes     2000     17.9 No Holiday     1209
## 7588     0.00      Yes      Yes      Yes     1614      7.6 No Holiday      374
## 3994     0.06      Yes      Yes      Yes      569     22.8 No Holiday       97
## 8095     0.00       No       No       No      983      5.5 No Holiday        0
## 6182     2.46      Yes      Yes      Yes     2000     36.9    Holiday      591
## 4702     0.00      Yes      Yes      Yes     1786     22.2 No Holiday     1807
##        col 1892   col 1893 col 1894 col 1895 col 1896 col 1897 col 1898
## 2992   4/4/2018   4/4/2018   Spring      5.4   Spring     2000     17.9
## 7588 13/10/2018 13/10/2018   Autumn      4.0   Autumn     1614      7.6
## 3994 16/05/2018 16/05/2018   Spring     21.6   Spring      569     22.8
## 8095  3/11/2018  3/11/2018   Autumn      1.9   Autumn      983      5.5
## 6182 15/08/2018 15/08/2018   Summer     20.6   Summer     2000     36.9
## 4702 14/06/2018 14/06/2018   Summer     16.9   Summer     1786     22.2
##      col 1899 col 1900   col 1901 col 1902 col 1903 col 1904 col 1905 col 1906
## 2992     2000     17.9   4/4/2018     17.9   Spring      Yes       44        0
## 7588     1614      7.6 13/10/2018      7.6   Autumn      Yes       78        0
## 3994      569     22.8 16/05/2018     22.8   Spring      Yes       93        0
## 8095      983      5.5  3/11/2018      5.5   Autumn       No       78        0
## 6182     2000     36.9 15/08/2018     36.9   Summer      Yes       39        0
## 4702     1786     22.2 14/06/2018     22.2   Summer      Yes       72        0
##        col 1907 col 1908 col 1909   col 1910 col 1911 col 1912   col 1913
## 2992 No Holiday      2.2      2.2   4/4/2018        0     17.9   4/4/2018
## 7588 No Holiday      0.7      0.7 13/10/2018        0      7.6 13/10/2018
## 3994 No Holiday      3.1      3.1 16/05/2018        0     22.8 16/05/2018
## 8095 No Holiday      0.6      0.6  3/11/2018        0      5.5  3/11/2018
## 6182    Holiday      1.5      1.5 15/08/2018        0     36.9 15/08/2018
## 4702 No Holiday      1.0      1.0 14/06/2018        0     22.2 14/06/2018
##      col 1914   col 1915 col 1916 col 1917 col 1918 col 1919 col 1920 col 1921
## 2992        0   4/4/2018   Spring        0      2.2      Yes       15     1209
## 7588        0 13/10/2018   Autumn        0      0.7      Yes        3      374
## 3994        0 16/05/2018   Spring        4      3.1      Yes        9       97
## 8095        0  3/11/2018   Autumn        0      0.6       No        6        0
## 6182        0 15/08/2018   Summer        0      1.5      Yes       13      591
## 4702        0 14/06/2018   Summer        0      1.0      Yes       21     1807
##      col 1922 col 1923 col 1924 col 1925 col 1926 col 1927 col 1928 col 1929
## 2992      2.2        0     2000     2.79      2.2      Yes       15     1209
## 7588      0.7        0     1614     0.00      0.7      Yes        3      374
## 3994      3.1        4      569     0.06      3.1      Yes        9       97
## 8095      0.6        0      983     0.00      0.6       No        6        0
## 6182      1.5        0     2000     2.46      1.5      Yes       13      591
## 4702      1.0        0     1786     0.00      1.0      Yes       21     1807
##        col 1930   col 1931 col 1932 col 1933 col 1934 col 1935 col 1936
## 2992 No Holiday No Holiday        0      Yes   Spring       44     2.79
## 7588 No Holiday No Holiday        0      Yes   Autumn       78     0.00
## 3994 No Holiday No Holiday        0      Yes   Spring       93     0.06
## 8095 No Holiday No Holiday        0       No   Autumn       78     0.00
## 6182    Holiday    Holiday        0      Yes   Summer       39     2.46
## 4702 No Holiday No Holiday        0      Yes   Summer       72     0.00
##      col 1937 col 1938   col 1939 col 1940   col 1941 col 1942 col 1943
## 2992       15     2000 No Holiday      5.4   4/4/2018     1209      2.2
## 7588        3     1614 No Holiday      4.0 13/10/2018      374      0.7
## 3994        9      569 No Holiday     21.6 16/05/2018       97      3.1
## 8095        6      983 No Holiday      1.9  3/11/2018        0      0.6
## 6182       13     2000    Holiday     20.6 15/08/2018      591      1.5
## 4702       21     1786 No Holiday     16.9 14/06/2018     1807      1.0
##      col 1944 col 1945 col 1946 col 1947 col 1948 col 1949 col 1950 col 1951
## 2992      Yes        0       44     17.9   Spring       44     17.9        0
## 7588      Yes        0       78      7.6   Autumn       78      7.6        0
## 3994      Yes        0       93     22.8   Spring       93     22.8        0
## 8095       No        0       78      5.5   Autumn       78      5.5        0
## 6182      Yes        0       39     36.9   Summer       39     36.9        0
## 4702      Yes        0       72     22.2   Summer       72     22.2        0
##        col 1952 col 1953 col 1954 col 1955 col 1956 col 1957 col 1958 col 1959
## 2992 No Holiday     2000     1209     2000      Yes     2000       15     2.79
## 7588 No Holiday     1614      374     1614      Yes     1614        3     0.00
## 3994 No Holiday      569       97      569      Yes      569        9     0.06
## 8095 No Holiday      983        0      983       No      983        6     0.00
## 6182    Holiday     2000      591     2000      Yes     2000       13     2.46
## 4702 No Holiday     1786     1807     1786      Yes     1786       21     0.00
##        col 1960 col 1961 col 1962 col 1963 col 1964 col 1965 col 1966
## 2992 No Holiday        0      Yes     2000       15       44   Spring
## 7588 No Holiday        0      Yes     1614        3       78   Autumn
## 3994 No Holiday        0      Yes      569        9       93   Spring
## 8095 No Holiday        0       No      983        6       78   Autumn
## 6182    Holiday        0      Yes     2000       13       39   Summer
## 4702 No Holiday        0      Yes     1786       21       72   Summer
##        col 1967 col 1968 col 1969 col 1970 col 1971 col 1972 col 1973 col 1974
## 2992   4/4/2018   Spring      2.2      5.4      5.4     2.79     1209      Yes
## 7588 13/10/2018   Autumn      0.7      4.0      4.0     0.00      374      Yes
## 3994 16/05/2018   Spring      3.1     21.6     21.6     0.06       97      Yes
## 8095  3/11/2018   Autumn      0.6      1.9      1.9     0.00        0       No
## 6182 15/08/2018   Summer      1.5     20.6     20.6     2.46      591      Yes
## 4702 14/06/2018   Summer      1.0     16.9     16.9     0.00     1807      Yes
##      col 1975 col 1976 col 1977   col 1978 col 1979 col 1980 col 1981 col 1982
## 2992     2.79      5.4   Spring No Holiday        0        0      Yes      5.4
## 7588     0.00      4.0   Autumn No Holiday        0        0      Yes      4.0
## 3994     0.06     21.6   Spring No Holiday        0        4      Yes     21.6
## 8095     0.00      1.9   Autumn No Holiday        0        0       No      1.9
## 6182     2.46     20.6   Summer    Holiday        0        0      Yes     20.6
## 4702     0.00     16.9   Summer No Holiday        0        0      Yes     16.9
##      col 1983 col 1984 col 1985 col 1986 col 1987 col 1988   col 1989 col 1990
## 2992       44     17.9        0      5.4        0     17.9 No Holiday   Spring
## 7588       78      7.6        0      4.0        0      7.6 No Holiday   Autumn
## 3994       93     22.8        0     21.6        0     22.8 No Holiday   Spring
## 8095       78      5.5        0      1.9        0      5.5 No Holiday   Autumn
## 6182       39     36.9        0     20.6        0     36.9    Holiday   Summer
## 4702       72     22.2        0     16.9        0     22.2 No Holiday   Summer
##      col 1991 col 1992 col 1993 col 1994 col 1995 col 1996 col 1997   col 1998
## 2992       44       44      5.4     2.79     1209      2.2     1209   4/4/2018
## 7588       78       78      4.0     0.00      374      0.7      374 13/10/2018
## 3994       93       93     21.6     0.06       97      3.1       97 16/05/2018
## 8095       78       78      1.9     0.00        0      0.6        0  3/11/2018
## 6182       39       39     20.6     2.46      591      1.5      591 15/08/2018
## 4702       72       72     16.9     0.00     1807      1.0     1807 14/06/2018
##      col 1999 col 2000 col 2001 col 2002 col 2003 col 2004 col 2005 col 2006
## 2992      5.4      5.4      5.4     2.79     2.79   Spring       44     2.79
## 7588      4.0      4.0      4.0     0.00     0.00   Autumn       78     0.00
## 3994     21.6     21.6     21.6     0.06     0.06   Spring       93     0.06
## 8095      1.9      1.9      1.9     0.00     0.00   Autumn       78     0.00
## 6182     20.6     20.6     20.6     2.46     2.46   Summer       39     2.46
## 4702     16.9     16.9     16.9     0.00     0.00   Summer       72     0.00
##      col 2007 col 2008 col 2009   col 2010 col 2011 col 2012 col 2013 col 2014
## 2992     1209     1209        0   4/4/2018     17.9       15        0       15
## 7588      374      374        0 13/10/2018      7.6        3        0        3
## 3994       97       97        4 16/05/2018     22.8        9        4        9
## 8095        0        0        0  3/11/2018      5.5        6        0        6
## 6182      591      591        0 15/08/2018     36.9       13        0       13
## 4702     1807     1807        0 14/06/2018     22.2       21        0       21
##      col 2015 col 2016 col 2017 col 2018   col 2019 col 2020 col 2021
## 2992     1209     2000       15   Spring   4/4/2018     2000       44
## 7588      374     1614        3   Autumn 13/10/2018     1614       78
## 3994       97      569        9   Spring 16/05/2018      569       93
## 8095        0      983        6   Autumn  3/11/2018      983       78
## 6182      591     2000       13   Summer 15/08/2018     2000       39
## 4702     1807     1786       21   Summer 14/06/2018     1786       72
##        col 2022 col 2023 col 2024 col 2025   col 2026   col 2027 col 2028
## 2992   4/4/2018   Spring        0      5.4   4/4/2018 No Holiday      Yes
## 7588 13/10/2018   Autumn        0      4.0 13/10/2018 No Holiday      Yes
## 3994 16/05/2018   Spring        0     21.6 16/05/2018 No Holiday      Yes
## 8095  3/11/2018   Autumn        0      1.9  3/11/2018 No Holiday       No
## 6182 15/08/2018   Summer        0     20.6 15/08/2018    Holiday      Yes
## 4702 14/06/2018   Summer        0     16.9 14/06/2018 No Holiday      Yes
##      col 2029 col 2030 col 2031   col 2032 col 2033 col 2034 col 2035 col 2036
## 2992     17.9      5.4     2000 No Holiday        0     17.9     2.79        0
## 7588      7.6      4.0     1614 No Holiday        0      7.6     0.00        0
## 3994     22.8     21.6      569 No Holiday        4     22.8     0.06        4
## 8095      5.5      1.9      983 No Holiday        0      5.5     0.00        0
## 6182     36.9     20.6     2000    Holiday        0     36.9     2.46        0
## 4702     22.2     16.9     1786 No Holiday        0     22.2     0.00        0
##      col 2037 col 2038 col 2039 col 2040 col 2041 col 2042 col 2043 col 2044
## 2992      Yes      5.4      Yes      Yes     17.9   Spring     17.9     1209
## 7588      Yes      4.0      Yes      Yes      7.6   Autumn      7.6      374
## 3994      Yes     21.6      Yes      Yes     22.8   Spring     22.8       97
## 8095       No      1.9       No       No      5.5   Autumn      5.5        0
## 6182      Yes     20.6      Yes      Yes     36.9   Summer     36.9      591
## 4702      Yes     16.9      Yes      Yes     22.2   Summer     22.2     1807
##      col 2045 col 2046 col 2047 col 2048 col 2049 col 2050 col 2051 col 2052
## 2992        0      5.4     1209      2.2       44     1209     17.9     2.79
## 7588        0      4.0      374      0.7       78      374      7.6     0.00
## 3994        0     21.6       97      3.1       93       97     22.8     0.06
## 8095        0      1.9        0      0.6       78        0      5.5     0.00
## 6182        0     20.6      591      1.5       39      591     36.9     2.46
## 4702        0     16.9     1807      1.0       72     1807     22.2     0.00
##        col 2053 col 2054 col 2055 col 2056 col 2057 col 2058 col 2059
## 2992   4/4/2018     1209        0       15     17.9      5.4     2.79
## 7588 13/10/2018      374        0        3      7.6      4.0     0.00
## 3994 16/05/2018       97        0        9     22.8     21.6     0.06
## 8095  3/11/2018        0        0        6      5.5      1.9     0.00
## 6182 15/08/2018      591        0       13     36.9     20.6     2.46
## 4702 14/06/2018     1807        0       21     22.2     16.9     0.00
##        col 2060 col 2061   col 2062 col 2063   col 2064   col 2065 col 2066
## 2992   4/4/2018        0 No Holiday      5.4   4/4/2018 No Holiday     1209
## 7588 13/10/2018        0 No Holiday      4.0 13/10/2018 No Holiday      374
## 3994 16/05/2018        0 No Holiday     21.6 16/05/2018 No Holiday       97
## 8095  3/11/2018        0 No Holiday      1.9  3/11/2018 No Holiday        0
## 6182 15/08/2018        0    Holiday     20.6 15/08/2018    Holiday      591
## 4702 14/06/2018        0 No Holiday     16.9 14/06/2018 No Holiday     1807
##      col 2067 col 2068 col 2069 col 2070 col 2071 col 2072 col 2073 col 2074
## 2992       15     2000       15   Spring       44       15     2000      2.2
## 7588        3     1614        3   Autumn       78        3     1614      0.7
## 3994        9      569        9   Spring       93        9      569      3.1
## 8095        6      983        6   Autumn       78        6      983      0.6
## 6182       13     2000       13   Summer       39       13     2000      1.5
## 4702       21     1786       21   Summer       72       21     1786      1.0
##        col 2075 col 2076 col 2077   col 2078 col 2079 col 2080 col 2081
## 2992 No Holiday     2000     2.79 No Holiday        0     17.9       15
## 7588 No Holiday     1614     0.00 No Holiday        0      7.6        3
## 3994 No Holiday      569     0.06 No Holiday        4     22.8        9
## 8095 No Holiday      983     0.00 No Holiday        0      5.5        6
## 6182    Holiday     2000     2.46    Holiday        0     36.9       13
## 4702 No Holiday     1786     0.00 No Holiday        0     22.2       21
##      col 2082 col 2083   col 2084 col 2085   col 2086 col 2087 col 2088
## 2992      5.4       44 No Holiday        0 No Holiday       44        0
## 7588      4.0       78 No Holiday        0 No Holiday       78        0
## 3994     21.6       93 No Holiday        4 No Holiday       93        0
## 8095      1.9       78 No Holiday        0 No Holiday       78        0
## 6182     20.6       39    Holiday        0    Holiday       39        0
## 4702     16.9       72 No Holiday        0 No Holiday       72        0
##      col 2089 col 2090 col 2091 col 2092 col 2093   col 2094 col 2095 col 2096
## 2992     17.9      2.2     17.9      5.4      Yes   4/4/2018   Spring        0
## 7588      7.6      0.7      7.6      4.0      Yes 13/10/2018   Autumn        0
## 3994     22.8      3.1     22.8     21.6      Yes 16/05/2018   Spring        0
## 8095      5.5      0.6      5.5      1.9       No  3/11/2018   Autumn        0
## 6182     36.9      1.5     36.9     20.6      Yes 15/08/2018   Summer        0
## 4702     22.2      1.0     22.2     16.9      Yes 14/06/2018   Summer        0
##      col 2097 col 2098 col 2099 col 2100 col 2101 col 2102   col 2103 col 2104
## 2992        0       44        0     2000   Spring      2.2 No Holiday     17.9
## 7588        0       78        0     1614   Autumn      0.7 No Holiday      7.6
## 3994        0       93        0      569   Spring      3.1 No Holiday     22.8
## 8095        0       78        0      983   Autumn      0.6 No Holiday      5.5
## 6182        0       39        0     2000   Summer      1.5    Holiday     36.9
## 4702        0       72        0     1786   Summer      1.0 No Holiday     22.2
##      col 2105 col 2106 col 2107   col 2108 col 2109 col 2110 col 2111
## 2992   Spring   Spring     2.79 No Holiday      5.4     2.79        0
## 7588   Autumn   Autumn     0.00 No Holiday      4.0     0.00        0
## 3994   Spring   Spring     0.06 No Holiday     21.6     0.06        0
## 8095   Autumn   Autumn     0.00 No Holiday      1.9     0.00        0
## 6182   Summer   Summer     2.46    Holiday     20.6     2.46        0
## 4702   Summer   Summer     0.00 No Holiday     16.9     0.00        0
##        col 2112 col 2113 col 2114 col 2115 col 2116 col 2117 col 2118
## 2992   4/4/2018        0       44      2.2      5.4   Spring       15
## 7588 13/10/2018        0       78      0.7      4.0   Autumn        3
## 3994 16/05/2018        4       93      3.1     21.6   Spring        9
## 8095  3/11/2018        0       78      0.6      1.9   Autumn        6
## 6182 15/08/2018        0       39      1.5     20.6   Summer       13
## 4702 14/06/2018        0       72      1.0     16.9   Summer       21
##        col 2119   col 2120 col 2121 col 2122 col 2123 col 2124 col 2125
## 2992 No Holiday   4/4/2018     1209       44        0       44      Yes
## 7588 No Holiday 13/10/2018      374       78        0       78      Yes
## 3994 No Holiday 16/05/2018       97       93        4       93      Yes
## 8095 No Holiday  3/11/2018        0       78        0       78       No
## 6182    Holiday 15/08/2018      591       39        0       39      Yes
## 4702 No Holiday 14/06/2018     1807       72        0       72      Yes
##      col 2126 col 2127 col 2128 col 2129 col 2130 col 2131 col 2132 col 2133
## 2992      2.2        0   Spring   Spring        0     1209      Yes     2.79
## 7588      0.7        0   Autumn   Autumn        0      374      Yes     0.00
## 3994      3.1        4   Spring   Spring        0       97      Yes     0.06
## 8095      0.6        0   Autumn   Autumn        0        0       No     0.00
## 6182      1.5        0   Summer   Summer        0      591      Yes     2.46
## 4702      1.0        0   Summer   Summer        0     1807      Yes     0.00
##      col 2134 col 2135 col 2136 col 2137   col 2138 col 2139   col 2140
## 2992       44      5.4     17.9      2.2   4/4/2018     2000   4/4/2018
## 7588       78      4.0      7.6      0.7 13/10/2018     1614 13/10/2018
## 3994       93     21.6     22.8      3.1 16/05/2018      569 16/05/2018
## 8095       78      1.9      5.5      0.6  3/11/2018      983  3/11/2018
## 6182       39     20.6     36.9      1.5 15/08/2018     2000 15/08/2018
## 4702       72     16.9     22.2      1.0 14/06/2018     1786 14/06/2018
##      col 2141 col 2142 col 2143 col 2144 col 2145 col 2146 col 2147   col 2148
## 2992      Yes      2.2     2.79        0     1209     2000     2000 No Holiday
## 7588      Yes      0.7     0.00        0      374     1614     1614 No Holiday
## 3994      Yes      3.1     0.06        0       97      569      569 No Holiday
## 8095       No      0.6     0.00        0        0      983      983 No Holiday
## 6182      Yes      1.5     2.46        0      591     2000     2000    Holiday
## 4702      Yes      1.0     0.00        0     1807     1786     1786 No Holiday
##      col 2149 col 2150 col 2151 col 2152 col 2153 col 2154 col 2155 col 2156
## 2992     1209       44      5.4      Yes     17.9     2000        0     17.9
## 7588      374       78      4.0      Yes      7.6     1614        0      7.6
## 3994       97       93     21.6      Yes     22.8      569        4     22.8
## 8095        0       78      1.9       No      5.5      983        0      5.5
## 6182      591       39     20.6      Yes     36.9     2000        0     36.9
## 4702     1807       72     16.9      Yes     22.2     1786        0     22.2
##      col 2157 col 2158 col 2159 col 2160 col 2161 col 2162 col 2163 col 2164
## 2992     2000       44     2.79        0   Spring        0       44   Spring
## 7588     1614       78     0.00        0   Autumn        0       78   Autumn
## 3994      569       93     0.06        4   Spring        0       93   Spring
## 8095      983       78     0.00        0   Autumn        0       78   Autumn
## 6182     2000       39     2.46        0   Summer        0       39   Summer
## 4702     1786       72     0.00        0   Summer        0       72   Summer
##        col 2165 col 2166 col 2167 col 2168   col 2169   col 2170 col 2171
## 2992 No Holiday       44     2000     17.9   4/4/2018 No Holiday     17.9
## 7588 No Holiday       78     1614      7.6 13/10/2018 No Holiday      7.6
## 3994 No Holiday       93      569     22.8 16/05/2018 No Holiday     22.8
## 8095 No Holiday       78      983      5.5  3/11/2018 No Holiday      5.5
## 6182    Holiday       39     2000     36.9 15/08/2018    Holiday     36.9
## 4702 No Holiday       72     1786     22.2 14/06/2018 No Holiday     22.2
##      col 2172 col 2173 col 2174 col 2175   col 2176 col 2177 col 2178 col 2179
## 2992     2.79       44     2000     2.79 No Holiday     2.79     1209        0
## 7588     0.00       78     1614     0.00 No Holiday     0.00      374        0
## 3994     0.06       93      569     0.06 No Holiday     0.06       97        0
## 8095     0.00       78      983     0.00 No Holiday     0.00        0        0
## 6182     2.46       39     2000     2.46    Holiday     2.46      591        0
## 4702     0.00       72     1786     0.00 No Holiday     0.00     1807        0
##      col 2180 col 2181   col 2182   col 2183 col 2184   col 2185 col 2186
## 2992     2.79     2000   4/4/2018   4/4/2018      Yes No Holiday      5.4
## 7588     0.00     1614 13/10/2018 13/10/2018      Yes No Holiday      4.0
## 3994     0.06      569 16/05/2018 16/05/2018      Yes No Holiday     21.6
## 8095     0.00      983  3/11/2018  3/11/2018       No No Holiday      1.9
## 6182     2.46     2000 15/08/2018 15/08/2018      Yes    Holiday     20.6
## 4702     0.00     1786 14/06/2018 14/06/2018      Yes No Holiday     16.9
##        col 2187 col 2188 col 2189 col 2190 col 2191 col 2192 col 2193 col 2194
## 2992 No Holiday   Spring      2.2        0     17.9     2000       15      2.2
## 7588 No Holiday   Autumn      0.7        0      7.6     1614        3      0.7
## 3994 No Holiday   Spring      3.1        4     22.8      569        9      3.1
## 8095 No Holiday   Autumn      0.6        0      5.5      983        6      0.6
## 6182    Holiday   Summer      1.5        0     36.9     2000       13      1.5
## 4702 No Holiday   Summer      1.0        0     22.2     1786       21      1.0
##      col 2195 col 2196 col 2197 col 2198 col 2199 col 2200   col 2201 col 2202
## 2992     2.79     2000      Yes        0   Spring     2000   4/4/2018      Yes
## 7588     0.00     1614      Yes        0   Autumn     1614 13/10/2018      Yes
## 3994     0.06      569      Yes        4   Spring      569 16/05/2018      Yes
## 8095     0.00      983       No        0   Autumn      983  3/11/2018       No
## 6182     2.46     2000      Yes        0   Summer     2000 15/08/2018      Yes
## 4702     0.00     1786      Yes        0   Summer     1786 14/06/2018      Yes
##        col 2203   col 2204 col 2205 col 2206 col 2207 col 2208 col 2209
## 2992   4/4/2018   4/4/2018      5.4       15      Yes     17.9     1209
## 7588 13/10/2018 13/10/2018      4.0        3      Yes      7.6      374
## 3994 16/05/2018 16/05/2018     21.6        9      Yes     22.8       97
## 8095  3/11/2018  3/11/2018      1.9        6       No      5.5        0
## 6182 15/08/2018 15/08/2018     20.6       13      Yes     36.9      591
## 4702 14/06/2018 14/06/2018     16.9       21      Yes     22.2     1807
##      col 2210 col 2211 col 2212 col 2213 col 2214 col 2215 col 2216 col 2217
## 2992        0        0      2.2     2.79     2000        0     2000     2000
## 7588        0        0      0.7     0.00     1614        0     1614     1614
## 3994        0        0      3.1     0.06      569        4      569      569
## 8095        0        0      0.6     0.00      983        0      983      983
## 6182        0        0      1.5     2.46     2000        0     2000     2000
## 4702        0        0      1.0     0.00     1786        0     1786     1786
##      col 2218 col 2219 col 2220 col 2221 col 2222 col 2223 col 2224 col 2225
## 2992     17.9        0       15      Yes      5.4     2.79      5.4      Yes
## 7588      7.6        0        3      Yes      4.0     0.00      4.0      Yes
## 3994     22.8        0        9      Yes     21.6     0.06     21.6      Yes
## 8095      5.5        0        6       No      1.9     0.00      1.9       No
## 6182     36.9        0       13      Yes     20.6     2.46     20.6      Yes
## 4702     22.2        0       21      Yes     16.9     0.00     16.9      Yes
##        col 2226 col 2227 col 2228 col 2229 col 2230   col 2231 col 2232
## 2992 No Holiday       44        0       15   Spring   4/4/2018       44
## 7588 No Holiday       78        0        3   Autumn 13/10/2018       78
## 3994 No Holiday       93        4        9   Spring 16/05/2018       93
## 8095 No Holiday       78        0        6   Autumn  3/11/2018       78
## 6182    Holiday       39        0       13   Summer 15/08/2018       39
## 4702 No Holiday       72        0       21   Summer 14/06/2018       72
##      col 2233 col 2234 col 2235 col 2236 col 2237 col 2238 col 2239 col 2240
## 2992     17.9      2.2        0   Spring     17.9      Yes      Yes     2.79
## 7588      7.6      0.7        0   Autumn      7.6      Yes      Yes     0.00
## 3994     22.8      3.1        4   Spring     22.8      Yes      Yes     0.06
## 8095      5.5      0.6        0   Autumn      5.5       No       No     0.00
## 6182     36.9      1.5        0   Summer     36.9      Yes      Yes     2.46
## 4702     22.2      1.0        0   Summer     22.2      Yes      Yes     0.00
##        col 2241 col 2242   col 2243   col 2244   col 2245 col 2246 col 2247
## 2992   4/4/2018     1209   4/4/2018 No Holiday No Holiday     1209   Spring
## 7588 13/10/2018      374 13/10/2018 No Holiday No Holiday      374   Autumn
## 3994 16/05/2018       97 16/05/2018 No Holiday No Holiday       97   Spring
## 8095  3/11/2018        0  3/11/2018 No Holiday No Holiday        0   Autumn
## 6182 15/08/2018      591 15/08/2018    Holiday    Holiday      591   Summer
## 4702 14/06/2018     1807 14/06/2018 No Holiday No Holiday     1807   Summer
##      col 2248 col 2249 col 2250 col 2251 col 2252   col 2253 col 2254 col 2255
## 2992        0      Yes      Yes       15   Spring   4/4/2018      5.4   Spring
## 7588        0      Yes      Yes        3   Autumn 13/10/2018      4.0   Autumn
## 3994        4      Yes      Yes        9   Spring 16/05/2018     21.6   Spring
## 8095        0       No       No        6   Autumn  3/11/2018      1.9   Autumn
## 6182        0      Yes      Yes       13   Summer 15/08/2018     20.6   Summer
## 4702        0      Yes      Yes       21   Summer 14/06/2018     16.9   Summer
##        col 2256 col 2257 col 2258   col 2259 col 2260 col 2261 col 2262
## 2992 No Holiday     17.9     17.9 No Holiday        0     1209       15
## 7588 No Holiday      7.6      7.6 No Holiday        0      374        3
## 3994 No Holiday     22.8     22.8 No Holiday        4       97        9
## 8095 No Holiday      5.5      5.5 No Holiday        0        0        6
## 6182    Holiday     36.9     36.9    Holiday        0      591       13
## 4702 No Holiday     22.2     22.2 No Holiday        0     1807       21
##      col 2263 col 2264 col 2265 col 2266 col 2267   col 2268 col 2269 col 2270
## 2992      5.4     2.79      5.4     2000     1209   4/4/2018     17.9     17.9
## 7588      4.0     0.00      4.0     1614      374 13/10/2018      7.6      7.6
## 3994     21.6     0.06     21.6      569       97 16/05/2018     22.8     22.8
## 8095      1.9     0.00      1.9      983        0  3/11/2018      5.5      5.5
## 6182     20.6     2.46     20.6     2000      591 15/08/2018     36.9     36.9
## 4702     16.9     0.00     16.9     1786     1807 14/06/2018     22.2     22.2
##      col 2271   col 2272 col 2273 col 2274 col 2275 col 2276 col 2277 col 2278
## 2992     2.79 No Holiday      2.2       44     2.79        0   Spring       15
## 7588     0.00 No Holiday      0.7       78     0.00        0   Autumn        3
## 3994     0.06 No Holiday      3.1       93     0.06        4   Spring        9
## 8095     0.00 No Holiday      0.6       78     0.00        0   Autumn        6
## 6182     2.46    Holiday      1.5       39     2.46        0   Summer       13
## 4702     0.00 No Holiday      1.0       72     0.00        0   Summer       21
##      col 2279 col 2280 col 2281 col 2282 col 2283 col 2284 col 2285 col 2286
## 2992   Spring     2.79        0     1209   Spring     1209       44        0
## 7588   Autumn     0.00        0      374   Autumn      374       78        0
## 3994   Spring     0.06        0       97   Spring       97       93        4
## 8095   Autumn     0.00        0        0   Autumn        0       78        0
## 6182   Summer     2.46        0      591   Summer      591       39        0
## 4702   Summer     0.00        0     1807   Summer     1807       72        0
##      col 2287 col 2288 col 2289 col 2290 col 2291 col 2292 col 2293 col 2294
## 2992     2000      Yes     17.9      5.4        0       15     2.79        0
## 7588     1614      Yes      7.6      4.0        0        3     0.00        0
## 3994      569      Yes     22.8     21.6        0        9     0.06        4
## 8095      983       No      5.5      1.9        0        6     0.00        0
## 6182     2000      Yes     36.9     20.6        0       13     2.46        0
## 4702     1786      Yes     22.2     16.9        0       21     0.00        0
##      col 2295 col 2296 col 2297 col 2298 col 2299   col 2300 col 2301 col 2302
## 2992     2000        0        0   Spring     2000 No Holiday      Yes       15
## 7588     1614        0        0   Autumn     1614 No Holiday      Yes        3
## 3994      569        0        0   Spring      569 No Holiday      Yes        9
## 8095      983        0        0   Autumn      983 No Holiday       No        6
## 6182     2000        0        0   Summer     2000    Holiday      Yes       13
## 4702     1786        0        0   Summer     1786 No Holiday      Yes       21
##      col 2303 col 2304 col 2305 col 2306 col 2307   col 2308   col 2309
## 2992       15       44        0     2000     1209 No Holiday   4/4/2018
## 7588        3       78        0     1614      374 No Holiday 13/10/2018
## 3994        9       93        0      569       97 No Holiday 16/05/2018
## 8095        6       78        0      983        0 No Holiday  3/11/2018
## 6182       13       39        0     2000      591    Holiday 15/08/2018
## 4702       21       72        0     1786     1807 No Holiday 14/06/2018
##      col 2310 col 2311 col 2312 col 2313 col 2314 col 2315 col 2316 col 2317
## 2992       44        0       15   Spring   Spring        0      2.2     17.9
## 7588       78        0        3   Autumn   Autumn        0      0.7      7.6
## 3994       93        0        9   Spring   Spring        4      3.1     22.8
## 8095       78        0        6   Autumn   Autumn        0      0.6      5.5
## 6182       39        0       13   Summer   Summer        0      1.5     36.9
## 4702       72        0       21   Summer   Summer        0      1.0     22.2
##      col 2318   col 2319 col 2320 col 2321   col 2322 col 2323 col 2324
## 2992     2.79 No Holiday     2.79     2.79   4/4/2018     1209        0
## 7588     0.00 No Holiday     0.00     0.00 13/10/2018      374        0
## 3994     0.06 No Holiday     0.06     0.06 16/05/2018       97        0
## 8095     0.00 No Holiday     0.00     0.00  3/11/2018        0        0
## 6182     2.46    Holiday     2.46     2.46 15/08/2018      591        0
## 4702     0.00 No Holiday     0.00     0.00 14/06/2018     1807        0
##      col 2325 col 2326 col 2327 col 2328 col 2329 col 2330 col 2331   col 2332
## 2992      5.4      5.4     1209      Yes   Spring      Yes   Spring No Holiday
## 7588      4.0      4.0      374      Yes   Autumn      Yes   Autumn No Holiday
## 3994     21.6     21.6       97      Yes   Spring      Yes   Spring No Holiday
## 8095      1.9      1.9        0       No   Autumn       No   Autumn No Holiday
## 6182     20.6     20.6      591      Yes   Summer      Yes   Summer    Holiday
## 4702     16.9     16.9     1807      Yes   Summer      Yes   Summer No Holiday
##      col 2333 col 2334   col 2335 col 2336 col 2337 col 2338 col 2339 col 2340
## 2992       15       44   4/4/2018     2000     2000     2000     17.9   Spring
## 7588        3       78 13/10/2018     1614     1614     1614      7.6   Autumn
## 3994        9       93 16/05/2018      569      569      569     22.8   Spring
## 8095        6       78  3/11/2018      983      983      983      5.5   Autumn
## 6182       13       39 15/08/2018     2000     2000     2000     36.9   Summer
## 4702       21       72 14/06/2018     1786     1786     1786     22.2   Summer
##      col 2341 col 2342 col 2343   col 2344   col 2345 col 2346 col 2347
## 2992     1209       44      5.4 No Holiday No Holiday      2.2      2.2
## 7588      374       78      4.0 No Holiday No Holiday      0.7      0.7
## 3994       97       93     21.6 No Holiday No Holiday      3.1      3.1
## 8095        0       78      1.9 No Holiday No Holiday      0.6      0.6
## 6182      591       39     20.6    Holiday    Holiday      1.5      1.5
## 4702     1807       72     16.9 No Holiday No Holiday      1.0      1.0
##      col 2348 col 2349 col 2350 col 2351 col 2352 col 2353   col 2354 col 2355
## 2992   Spring     2000     2.79       44     2000      2.2   4/4/2018       44
## 7588   Autumn     1614     0.00       78     1614      0.7 13/10/2018       78
## 3994   Spring      569     0.06       93      569      3.1 16/05/2018       93
## 8095   Autumn      983     0.00       78      983      0.6  3/11/2018       78
## 6182   Summer     2000     2.46       39     2000      1.5 15/08/2018       39
## 4702   Summer     1786     0.00       72     1786      1.0 14/06/2018       72
##        col 2356 col 2357 col 2358   col 2359 col 2360 col 2361 col 2362
## 2992   4/4/2018       15       15   4/4/2018     17.9       15      5.4
## 7588 13/10/2018        3        3 13/10/2018      7.6        3      4.0
## 3994 16/05/2018        9        9 16/05/2018     22.8        9     21.6
## 8095  3/11/2018        6        6  3/11/2018      5.5        6      1.9
## 6182 15/08/2018       13       13 15/08/2018     36.9       13     20.6
## 4702 14/06/2018       21       21 14/06/2018     22.2       21     16.9
##      col 2363 col 2364 col 2365 col 2366 col 2367 col 2368 col 2369 col 2370
## 2992   Spring      Yes       44   Spring   Spring      Yes        0   Spring
## 7588   Autumn      Yes       78   Autumn   Autumn      Yes        0   Autumn
## 3994   Spring      Yes       93   Spring   Spring      Yes        0   Spring
## 8095   Autumn       No       78   Autumn   Autumn       No        0   Autumn
## 6182   Summer      Yes       39   Summer   Summer      Yes        0   Summer
## 4702   Summer      Yes       72   Summer   Summer      Yes        0   Summer
##      col 2371 col 2372 col 2373 col 2374 col 2375   col 2376 col 2377
## 2992      5.4     17.9        0       44     1209   4/4/2018       15
## 7588      4.0      7.6        0       78      374 13/10/2018        3
## 3994     21.6     22.8        0       93       97 16/05/2018        9
## 8095      1.9      5.5        0       78        0  3/11/2018        6
## 6182     20.6     36.9        0       39      591 15/08/2018       13
## 4702     16.9     22.2        0       72     1807 14/06/2018       21
##        col 2378 col 2379 col 2380 col 2381 col 2382 col 2383 col 2384 col 2385
## 2992   4/4/2018      Yes     17.9        0       44      2.2     2.79     17.9
## 7588 13/10/2018      Yes      7.6        0       78      0.7     0.00      7.6
## 3994 16/05/2018      Yes     22.8        0       93      3.1     0.06     22.8
## 8095  3/11/2018       No      5.5        0       78      0.6     0.00      5.5
## 6182 15/08/2018      Yes     36.9        0       39      1.5     2.46     36.9
## 4702 14/06/2018      Yes     22.2        0       72      1.0     0.00     22.2
##      col 2386 col 2387   col 2388 col 2389 col 2390 col 2391 col 2392 col 2393
## 2992     2000      2.2   4/4/2018       44        0     2.79     2.79   Spring
## 7588     1614      0.7 13/10/2018       78        0     0.00     0.00   Autumn
## 3994      569      3.1 16/05/2018       93        0     0.06     0.06   Spring
## 8095      983      0.6  3/11/2018       78        0     0.00     0.00   Autumn
## 6182     2000      1.5 15/08/2018       39        0     2.46     2.46   Summer
## 4702     1786      1.0 14/06/2018       72        0     0.00     0.00   Summer
##      col 2394   col 2395 col 2396 col 2397 col 2398 col 2399 col 2400 col 2401
## 2992     2.79   4/4/2018       15      2.2     2000     17.9     17.9      5.4
## 7588     0.00 13/10/2018        3      0.7     1614      7.6      7.6      4.0
## 3994     0.06 16/05/2018        9      3.1      569     22.8     22.8     21.6
## 8095     0.00  3/11/2018        6      0.6      983      5.5      5.5      1.9
## 6182     2.46 15/08/2018       13      1.5     2000     36.9     36.9     20.6
## 4702     0.00 14/06/2018       21      1.0     1786     22.2     22.2     16.9
##      col 2402 col 2403 col 2404 col 2405 col 2406 col 2407   col 2408
## 2992     17.9     1209        0      5.4        0      5.4   4/4/2018
## 7588      7.6      374        0      4.0        0      4.0 13/10/2018
## 3994     22.8       97        4     21.6        4     21.6 16/05/2018
## 8095      5.5        0        0      1.9        0      1.9  3/11/2018
## 6182     36.9      591        0     20.6        0     20.6 15/08/2018
## 4702     22.2     1807        0     16.9        0     16.9 14/06/2018
##        col 2409 col 2410 col 2411 col 2412 col 2413 col 2414 col 2415 col 2416
## 2992 No Holiday      5.4        0     1209        0      5.4   Spring      5.4
## 7588 No Holiday      4.0        0      374        0      4.0   Autumn      4.0
## 3994 No Holiday     21.6        0       97        0     21.6   Spring     21.6
## 8095 No Holiday      1.9        0        0        0      1.9   Autumn      1.9
## 6182    Holiday     20.6        0      591        0     20.6   Summer     20.6
## 4702 No Holiday     16.9        0     1807        0     16.9   Summer     16.9
##        col 2417 col 2418 col 2419 col 2420 col 2421 col 2422 col 2423 col 2424
## 2992 No Holiday      2.2     17.9      2.2      2.2        0      2.2        0
## 7588 No Holiday      0.7      7.6      0.7      0.7        0      0.7        0
## 3994 No Holiday      3.1     22.8      3.1      3.1        0      3.1        4
## 8095 No Holiday      0.6      5.5      0.6      0.6        0      0.6        0
## 6182    Holiday      1.5     36.9      1.5      1.5        0      1.5        0
## 4702 No Holiday      1.0     22.2      1.0      1.0        0      1.0        0
##        col 2425 col 2426 col 2427 col 2428 col 2429 col 2430   col 2431
## 2992   4/4/2018       44     2000   Spring        0     2.79 No Holiday
## 7588 13/10/2018       78     1614   Autumn        0     0.00 No Holiday
## 3994 16/05/2018       93      569   Spring        4     0.06 No Holiday
## 8095  3/11/2018       78      983   Autumn        0     0.00 No Holiday
## 6182 15/08/2018       39     2000   Summer        0     2.46    Holiday
## 4702 14/06/2018       72     1786   Summer        0     0.00 No Holiday
##      col 2432 col 2433 col 2434 col 2435 col 2436 col 2437 col 2438 col 2439
## 2992   Spring   Spring        0     2.79     2.79       44        0     1209
## 7588   Autumn   Autumn        0     0.00     0.00       78        0      374
## 3994   Spring   Spring        4     0.06     0.06       93        0       97
## 8095   Autumn   Autumn        0     0.00     0.00       78        0        0
## 6182   Summer   Summer        0     2.46     2.46       39        0      591
## 4702   Summer   Summer        0     0.00     0.00       72        0     1807
##        col 2440 col 2441 col 2442   col 2443 col 2444   col 2445 col 2446
## 2992   4/4/2018        0      2.2   4/4/2018        0 No Holiday     2.79
## 7588 13/10/2018        0      0.7 13/10/2018        0 No Holiday     0.00
## 3994 16/05/2018        4      3.1 16/05/2018        4 No Holiday     0.06
## 8095  3/11/2018        0      0.6  3/11/2018        0 No Holiday     0.00
## 6182 15/08/2018        0      1.5 15/08/2018        0    Holiday     2.46
## 4702 14/06/2018        0      1.0 14/06/2018        0 No Holiday     0.00
##        col 2447 col 2448 col 2449 col 2450 col 2451 col 2452 col 2453 col 2454
## 2992   4/4/2018     2.79     2000      2.2        0        0      5.4        0
## 7588 13/10/2018     0.00     1614      0.7        0        0      4.0        0
## 3994 16/05/2018     0.06      569      3.1        4        4     21.6        0
## 8095  3/11/2018     0.00      983      0.6        0        0      1.9        0
## 6182 15/08/2018     2.46     2000      1.5        0        0     20.6        0
## 4702 14/06/2018     0.00     1786      1.0        0        0     16.9        0
##      col 2455   col 2456 col 2457 col 2458 col 2459 col 2460 col 2461 col 2462
## 2992       44   4/4/2018        0     1209     2000        0      5.4      Yes
## 7588       78 13/10/2018        0      374     1614        0      4.0      Yes
## 3994       93 16/05/2018        4       97      569        0     21.6      Yes
## 8095       78  3/11/2018        0        0      983        0      1.9       No
## 6182       39 15/08/2018        0      591     2000        0     20.6      Yes
## 4702       72 14/06/2018        0     1807     1786        0     16.9      Yes
##      col 2463 col 2464 col 2465 col 2466 col 2467   col 2468 col 2469 col 2470
## 2992     1209     17.9       15     17.9     1209 No Holiday        0       15
## 7588      374      7.6        3      7.6      374 No Holiday        0        3
## 3994       97     22.8        9     22.8       97 No Holiday        0        9
## 8095        0      5.5        6      5.5        0 No Holiday        0        6
## 6182      591     36.9       13     36.9      591    Holiday        0       13
## 4702     1807     22.2       21     22.2     1807 No Holiday        0       21
##      col 2471 col 2472 col 2473 col 2474   col 2475 col 2476 col 2477 col 2478
## 2992      Yes     17.9      5.4        0 No Holiday       15      2.2     2000
## 7588      Yes      7.6      4.0        0 No Holiday        3      0.7     1614
## 3994      Yes     22.8     21.6        4 No Holiday        9      3.1      569
## 8095       No      5.5      1.9        0 No Holiday        6      0.6      983
## 6182      Yes     36.9     20.6        0    Holiday       13      1.5     2000
## 4702      Yes     22.2     16.9        0 No Holiday       21      1.0     1786
##      col 2479 col 2480 col 2481 col 2482 col 2483   col 2484   col 2485
## 2992        0       15     2.79       15        0   4/4/2018 No Holiday
## 7588        0        3     0.00        3        0 13/10/2018 No Holiday
## 3994        0        9     0.06        9        0 16/05/2018 No Holiday
## 8095        0        6     0.00        6        0  3/11/2018 No Holiday
## 6182        0       13     2.46       13        0 15/08/2018    Holiday
## 4702        0       21     0.00       21        0 14/06/2018 No Holiday
##      col 2486 col 2487 col 2488 col 2489 col 2490 col 2491 col 2492   col 2493
## 2992     1209        0   Spring   Spring     17.9      5.4     2000 No Holiday
## 7588      374        0   Autumn   Autumn      7.6      4.0     1614 No Holiday
## 3994       97        4   Spring   Spring     22.8     21.6      569 No Holiday
## 8095        0        0   Autumn   Autumn      5.5      1.9      983 No Holiday
## 6182      591        0   Summer   Summer     36.9     20.6     2000    Holiday
## 4702     1807        0   Summer   Summer     22.2     16.9     1786 No Holiday
##      col 2494 col 2495 col 2496 col 2497 col 2498 col 2499 col 2500 col 2501
## 2992        0      2.2     17.9      Yes     1209      Yes      Yes      2.2
## 7588        0      0.7      7.6      Yes      374      Yes      Yes      0.7
## 3994        0      3.1     22.8      Yes       97      Yes      Yes      3.1
## 8095        0      0.6      5.5       No        0       No       No      0.6
## 6182        0      1.5     36.9      Yes      591      Yes      Yes      1.5
## 4702        0      1.0     22.2      Yes     1807      Yes      Yes      1.0
##      col 2502 col 2503 col 2504 col 2505 col 2506 col 2507 col 2508 col 2509
## 2992   Spring        0     17.9   Spring   Spring     2000       44        0
## 7588   Autumn        0      7.6   Autumn   Autumn     1614       78        0
## 3994   Spring        4     22.8   Spring   Spring      569       93        0
## 8095   Autumn        0      5.5   Autumn   Autumn      983       78        0
## 6182   Summer        0     36.9   Summer   Summer     2000       39        0
## 4702   Summer        0     22.2   Summer   Summer     1786       72        0
##        col 2510 col 2511 col 2512 col 2513 col 2514 col 2515   col 2516
## 2992   4/4/2018        0      2.2     1209      2.2   Spring   4/4/2018
## 7588 13/10/2018        0      0.7      374      0.7   Autumn 13/10/2018
## 3994 16/05/2018        0      3.1       97      3.1   Spring 16/05/2018
## 8095  3/11/2018        0      0.6        0      0.6   Autumn  3/11/2018
## 6182 15/08/2018        0      1.5      591      1.5   Summer 15/08/2018
## 4702 14/06/2018        0      1.0     1807      1.0   Summer 14/06/2018
##      col 2517 col 2518 col 2519 col 2520 col 2521 col 2522 col 2523   col 2524
## 2992       44   Spring       44        0      2.2     1209     2000   4/4/2018
## 7588       78   Autumn       78        0      0.7      374     1614 13/10/2018
## 3994       93   Spring       93        0      3.1       97      569 16/05/2018
## 8095       78   Autumn       78        0      0.6        0      983  3/11/2018
## 6182       39   Summer       39        0      1.5      591     2000 15/08/2018
## 4702       72   Summer       72        0      1.0     1807     1786 14/06/2018
##      col 2525 col 2526 col 2527 col 2528 col 2529 col 2530 col 2531 col 2532
## 2992        0       15        0     2.79       15   Spring     2000       15
## 7588        0        3        0     0.00        3   Autumn     1614        3
## 3994        0        9        4     0.06        9   Spring      569        9
## 8095        0        6        0     0.00        6   Autumn      983        6
## 6182        0       13        0     2.46       13   Summer     2000       13
## 4702        0       21        0     0.00       21   Summer     1786       21
##      col 2533 col 2534 col 2535 col 2536 col 2537 col 2538 col 2539 col 2540
## 2992     1209     2.79        0       44        0     2000       44        0
## 7588      374     0.00        0       78        0     1614       78        0
## 3994       97     0.06        4       93        4      569       93        0
## 8095        0     0.00        0       78        0      983       78        0
## 6182      591     2.46        0       39        0     2000       39        0
## 4702     1807     0.00        0       72        0     1786       72        0
##      col 2541   col 2542 col 2543 col 2544   col 2545 col 2546 col 2547
## 2992        0 No Holiday     2000     2000   4/4/2018      5.4   Spring
## 7588        0 No Holiday     1614     1614 13/10/2018      4.0   Autumn
## 3994        0 No Holiday      569      569 16/05/2018     21.6   Spring
## 8095        0 No Holiday      983      983  3/11/2018      1.9   Autumn
## 6182        0    Holiday     2000     2000 15/08/2018     20.6   Summer
## 4702        0 No Holiday     1786     1786 14/06/2018     16.9   Summer
##      col 2548 col 2549 col 2550 col 2551 col 2552 col 2553 col 2554 col 2555
## 2992      Yes        0     2000       44       15   Spring        0     17.9
## 7588      Yes        0     1614       78        3   Autumn        0      7.6
## 3994      Yes        0      569       93        9   Spring        0     22.8
## 8095       No        0      983       78        6   Autumn        0      5.5
## 6182      Yes        0     2000       39       13   Summer        0     36.9
## 4702      Yes        0     1786       72       21   Summer        0     22.2
##      col 2556 col 2557 col 2558 col 2559 col 2560   col 2561   col 2562
## 2992     1209     17.9     2.79   Spring       44   4/4/2018 No Holiday
## 7588      374      7.6     0.00   Autumn       78 13/10/2018 No Holiday
## 3994       97     22.8     0.06   Spring       93 16/05/2018 No Holiday
## 8095        0      5.5     0.00   Autumn       78  3/11/2018 No Holiday
## 6182      591     36.9     2.46   Summer       39 15/08/2018    Holiday
## 4702     1807     22.2     0.00   Summer       72 14/06/2018 No Holiday
##      col 2563 col 2564 col 2565 col 2566 col 2567 col 2568 col 2569 col 2570
## 2992      5.4        0     2.79     2.79        0      5.4     2000        0
## 7588      4.0        0     0.00     0.00        0      4.0     1614        0
## 3994     21.6        0     0.06     0.06        0     21.6      569        4
## 8095      1.9        0     0.00     0.00        0      1.9      983        0
## 6182     20.6        0     2.46     2.46        0     20.6     2000        0
## 4702     16.9        0     0.00     0.00        0     16.9     1786        0
##        col 2571 col 2572   col 2573   col 2574 col 2575 col 2576 col 2577
## 2992 No Holiday       44 No Holiday   4/4/2018   Spring   Spring     2.79
## 7588 No Holiday       78 No Holiday 13/10/2018   Autumn   Autumn     0.00
## 3994 No Holiday       93 No Holiday 16/05/2018   Spring   Spring     0.06
## 8095 No Holiday       78 No Holiday  3/11/2018   Autumn   Autumn     0.00
## 6182    Holiday       39    Holiday 15/08/2018   Summer   Summer     2.46
## 4702 No Holiday       72 No Holiday 14/06/2018   Summer   Summer     0.00
##        col 2578 col 2579   col 2580 col 2581   col 2582 col 2583 col 2584
## 2992 No Holiday        0 No Holiday   Spring   4/4/2018      2.2       15
## 7588 No Holiday        0 No Holiday   Autumn 13/10/2018      0.7        3
## 3994 No Holiday        0 No Holiday   Spring 16/05/2018      3.1        9
## 8095 No Holiday        0 No Holiday   Autumn  3/11/2018      0.6        6
## 6182    Holiday        0    Holiday   Summer 15/08/2018      1.5       13
## 4702 No Holiday        0 No Holiday   Summer 14/06/2018      1.0       21
##      col 2585 col 2586 col 2587 col 2588 col 2589 col 2590 col 2591 col 2592
## 2992       44       15      2.2     17.9   Spring      Yes      2.2     2000
## 7588       78        3      0.7      7.6   Autumn      Yes      0.7     1614
## 3994       93        9      3.1     22.8   Spring      Yes      3.1      569
## 8095       78        6      0.6      5.5   Autumn       No      0.6      983
## 6182       39       13      1.5     36.9   Summer      Yes      1.5     2000
## 4702       72       21      1.0     22.2   Summer      Yes      1.0     1786
##        col 2593 col 2594 col 2595 col 2596   col 2597 col 2598 col 2599
## 2992 No Holiday      2.2       15       15 No Holiday       44      2.2
## 7588 No Holiday      0.7        3        3 No Holiday       78      0.7
## 3994 No Holiday      3.1        9        9 No Holiday       93      3.1
## 8095 No Holiday      0.6        6        6 No Holiday       78      0.6
## 6182    Holiday      1.5       13       13    Holiday       39      1.5
## 4702 No Holiday      1.0       21       21 No Holiday       72      1.0
##      col 2600 col 2601 col 2602 col 2603   col 2604 col 2605 col 2606 col 2607
## 2992   Spring     2000      2.2       44   4/4/2018     2.79     1209      5.4
## 7588   Autumn     1614      0.7       78 13/10/2018     0.00      374      4.0
## 3994   Spring      569      3.1       93 16/05/2018     0.06       97     21.6
## 8095   Autumn      983      0.6       78  3/11/2018     0.00        0      1.9
## 6182   Summer     2000      1.5       39 15/08/2018     2.46      591     20.6
## 4702   Summer     1786      1.0       72 14/06/2018     0.00     1807     16.9
##      col 2608 col 2609 col 2610 col 2611   col 2612 col 2613 col 2614 col 2615
## 2992     2.79     2.79     2000      Yes   4/4/2018        0     17.9     2000
## 7588     0.00     0.00     1614      Yes 13/10/2018        0      7.6     1614
## 3994     0.06     0.06      569      Yes 16/05/2018        4     22.8      569
## 8095     0.00     0.00      983       No  3/11/2018        0      5.5      983
## 6182     2.46     2.46     2000      Yes 15/08/2018        0     36.9     2000
## 4702     0.00     0.00     1786      Yes 14/06/2018        0     22.2     1786
##      col 2616 col 2617 col 2618 col 2619 col 2620 col 2621 col 2622 col 2623
## 2992     17.9        0     2000        0       15       15     1209   Spring
## 7588      7.6        0     1614        0        3        3      374   Autumn
## 3994     22.8        0      569        4        9        9       97   Spring
## 8095      5.5        0      983        0        6        6        0   Autumn
## 6182     36.9        0     2000        0       13       13      591   Summer
## 4702     22.2        0     1786        0       21       21     1807   Summer
##      col 2624 col 2625 col 2626 col 2627 col 2628 col 2629   col 2630 col 2631
## 2992      Yes     17.9     17.9       44       15        0 No Holiday      5.4
## 7588      Yes      7.6      7.6       78        3        0 No Holiday      4.0
## 3994      Yes     22.8     22.8       93        9        4 No Holiday     21.6
## 8095       No      5.5      5.5       78        6        0 No Holiday      1.9
## 6182      Yes     36.9     36.9       39       13        0    Holiday     20.6
## 4702      Yes     22.2     22.2       72       21        0 No Holiday     16.9
##      col 2632 col 2633 col 2634 col 2635 col 2636 col 2637 col 2638 col 2639
## 2992     17.9      2.2       44   Spring       44     17.9       44      5.4
## 7588      7.6      0.7       78   Autumn       78      7.6       78      4.0
## 3994     22.8      3.1       93   Spring       93     22.8       93     21.6
## 8095      5.5      0.6       78   Autumn       78      5.5       78      1.9
## 6182     36.9      1.5       39   Summer       39     36.9       39     20.6
## 4702     22.2      1.0       72   Summer       72     22.2       72     16.9
##      col 2640 col 2641   col 2642 col 2643 col 2644 col 2645 col 2646 col 2647
## 2992      5.4     1209   4/4/2018      Yes        0     17.9      2.2        0
## 7588      4.0      374 13/10/2018      Yes        0      7.6      0.7        0
## 3994     21.6       97 16/05/2018      Yes        4     22.8      3.1        4
## 8095      1.9        0  3/11/2018       No        0      5.5      0.6        0
## 6182     20.6      591 15/08/2018      Yes        0     36.9      1.5        0
## 4702     16.9     1807 14/06/2018      Yes        0     22.2      1.0        0
##      col 2648   col 2649 col 2650 col 2651 col 2652   col 2653 col 2654
## 2992      2.2   4/4/2018     2000      5.4     17.9 No Holiday       44
## 7588      0.7 13/10/2018     1614      4.0      7.6 No Holiday       78
## 3994      3.1 16/05/2018      569     21.6     22.8 No Holiday       93
## 8095      0.6  3/11/2018      983      1.9      5.5 No Holiday       78
## 6182      1.5 15/08/2018     2000     20.6     36.9    Holiday       39
## 4702      1.0 14/06/2018     1786     16.9     22.2 No Holiday       72
##      col 2655 col 2656 col 2657   col 2658 col 2659 col 2660 col 2661 col 2662
## 2992     2000       15       44   4/4/2018       15     17.9     1209       44
## 7588     1614        3       78 13/10/2018        3      7.6      374       78
## 3994      569        9       93 16/05/2018        9     22.8       97       93
## 8095      983        6       78  3/11/2018        6      5.5        0       78
## 6182     2000       13       39 15/08/2018       13     36.9      591       39
## 4702     1786       21       72 14/06/2018       21     22.2     1807       72
##        col 2663   col 2664 col 2665 col 2666 col 2667 col 2668 col 2669
## 2992 No Holiday   4/4/2018     1209        0        0     2000     17.9
## 7588 No Holiday 13/10/2018      374        0        0     1614      7.6
## 3994 No Holiday 16/05/2018       97        4        4      569     22.8
## 8095 No Holiday  3/11/2018        0        0        0      983      5.5
## 6182    Holiday 15/08/2018      591        0        0     2000     36.9
## 4702 No Holiday 14/06/2018     1807        0        0     1786     22.2
##      col 2670 col 2671 col 2672 col 2673 col 2674 col 2675 col 2676 col 2677
## 2992     17.9      Yes      Yes        0      2.2        0     2000     2.79
## 7588      7.6      Yes      Yes        0      0.7        0     1614     0.00
## 3994     22.8      Yes      Yes        0      3.1        4      569     0.06
## 8095      5.5       No       No        0      0.6        0      983     0.00
## 6182     36.9      Yes      Yes        0      1.5        0     2000     2.46
## 4702     22.2      Yes      Yes        0      1.0        0     1786     0.00
##      col 2678 col 2679 col 2680 col 2681 col 2682   col 2683 col 2684 col 2685
## 2992       44     2.79     2.79       15     1209 No Holiday        0        0
## 7588       78     0.00     0.00        3      374 No Holiday        0        0
## 3994       93     0.06     0.06        9       97 No Holiday        4        4
## 8095       78     0.00     0.00        6        0 No Holiday        0        0
## 6182       39     2.46     2.46       13      591    Holiday        0        0
## 4702       72     0.00     0.00       21     1807 No Holiday        0        0
##      col 2686 col 2687   col 2688 col 2689 col 2690 col 2691 col 2692 col 2693
## 2992   Spring        0 No Holiday      5.4        0      2.2      2.2     1209
## 7588   Autumn        0 No Holiday      4.0        0      0.7      0.7      374
## 3994   Spring        4 No Holiday     21.6        4      3.1      3.1       97
## 8095   Autumn        0 No Holiday      1.9        0      0.6      0.6        0
## 6182   Summer        0    Holiday     20.6        0      1.5      1.5      591
## 4702   Summer        0 No Holiday     16.9        0      1.0      1.0     1807
##      col 2694   col 2695 col 2696 col 2697 col 2698   col 2699 col 2700
## 2992        0   4/4/2018       44       15      5.4 No Holiday        0
## 7588        0 13/10/2018       78        3      4.0 No Holiday        0
## 3994        4 16/05/2018       93        9     21.6 No Holiday        0
## 8095        0  3/11/2018       78        6      1.9 No Holiday        0
## 6182        0 15/08/2018       39       13     20.6    Holiday        0
## 4702        0 14/06/2018       72       21     16.9 No Holiday        0
##      col 2701   col 2702 col 2703 col 2704 col 2705 col 2706 col 2707 col 2708
## 2992     2.79   4/4/2018      Yes        0     2.79     1209     1209   Spring
## 7588     0.00 13/10/2018      Yes        0     0.00      374      374   Autumn
## 3994     0.06 16/05/2018      Yes        4     0.06       97       97   Spring
## 8095     0.00  3/11/2018       No        0     0.00        0        0   Autumn
## 6182     2.46 15/08/2018      Yes        0     2.46      591      591   Summer
## 4702     0.00 14/06/2018      Yes        0     0.00     1807     1807   Summer
##      col 2709 col 2710   col 2711   col 2712 col 2713 col 2714 col 2715
## 2992      2.2     17.9 No Holiday No Holiday      2.2      Yes   Spring
## 7588      0.7      7.6 No Holiday No Holiday      0.7      Yes   Autumn
## 3994      3.1     22.8 No Holiday No Holiday      3.1      Yes   Spring
## 8095      0.6      5.5 No Holiday No Holiday      0.6       No   Autumn
## 6182      1.5     36.9    Holiday    Holiday      1.5      Yes   Summer
## 4702      1.0     22.2 No Holiday No Holiday      1.0      Yes   Summer
##      col 2716 col 2717 col 2718 col 2719 col 2720 col 2721 col 2722 col 2723
## 2992     2000       44     2000     17.9     17.9       44        0     1209
## 7588     1614       78     1614      7.6      7.6       78        0      374
## 3994      569       93      569     22.8     22.8       93        4       97
## 8095      983       78      983      5.5      5.5       78        0        0
## 6182     2000       39     2000     36.9     36.9       39        0      591
## 4702     1786       72     1786     22.2     22.2       72        0     1807
##      col 2724 col 2725 col 2726 col 2727 col 2728   col 2729 col 2730 col 2731
## 2992     2.79     2.79     2.79        0       15 No Holiday        0      Yes
## 7588     0.00     0.00     0.00        0        3 No Holiday        0      Yes
## 3994     0.06     0.06     0.06        4        9 No Holiday        4      Yes
## 8095     0.00     0.00     0.00        0        6 No Holiday        0       No
## 6182     2.46     2.46     2.46        0       13    Holiday        0      Yes
## 4702     0.00     0.00     0.00        0       21 No Holiday        0      Yes
##      col 2732 col 2733   col 2734 col 2735 col 2736 col 2737 col 2738 col 2739
## 2992     2000     2.79 No Holiday      2.2   Spring        0      Yes      Yes
## 7588     1614     0.00 No Holiday      0.7   Autumn        0      Yes      Yes
## 3994      569     0.06 No Holiday      3.1   Spring        4      Yes      Yes
## 8095      983     0.00 No Holiday      0.6   Autumn        0       No       No
## 6182     2000     2.46    Holiday      1.5   Summer        0      Yes      Yes
## 4702     1786     0.00 No Holiday      1.0   Summer        0      Yes      Yes
##        col 2740   col 2741 col 2742 col 2743 col 2744 col 2745 col 2746
## 2992   4/4/2018 No Holiday        0     2.79     2000     2.79     17.9
## 7588 13/10/2018 No Holiday        0     0.00     1614     0.00      7.6
## 3994 16/05/2018 No Holiday        4     0.06      569     0.06     22.8
## 8095  3/11/2018 No Holiday        0     0.00      983     0.00      5.5
## 6182 15/08/2018    Holiday        0     2.46     2000     2.46     36.9
## 4702 14/06/2018 No Holiday        0     0.00     1786     0.00     22.2
##      col 2747 col 2748 col 2749 col 2750 col 2751 col 2752 col 2753   col 2754
## 2992       15       44      5.4     2000     17.9     1209     17.9   4/4/2018
## 7588        3       78      4.0     1614      7.6      374      7.6 13/10/2018
## 3994        9       93     21.6      569     22.8       97     22.8 16/05/2018
## 8095        6       78      1.9      983      5.5        0      5.5  3/11/2018
## 6182       13       39     20.6     2000     36.9      591     36.9 15/08/2018
## 4702       21       72     16.9     1786     22.2     1807     22.2 14/06/2018
##      col 2755 col 2756 col 2757 col 2758 col 2759 col 2760 col 2761 col 2762
## 2992     2.79       44     17.9        0     2000      5.4      5.4      Yes
## 7588     0.00       78      7.6        0     1614      4.0      4.0      Yes
## 3994     0.06       93     22.8        0      569     21.6     21.6      Yes
## 8095     0.00       78      5.5        0      983      1.9      1.9       No
## 6182     2.46       39     36.9        0     2000     20.6     20.6      Yes
## 4702     0.00       72     22.2        0     1786     16.9     16.9      Yes
##      col 2763 col 2764 col 2765 col 2766 col 2767 col 2768   col 2769 col 2770
## 2992     1209   Spring     2000     1209       44       44 No Holiday      5.4
## 7588      374   Autumn     1614      374       78       78 No Holiday      4.0
## 3994       97   Spring      569       97       93       93 No Holiday     21.6
## 8095        0   Autumn      983        0       78       78 No Holiday      1.9
## 6182      591   Summer     2000      591       39       39    Holiday     20.6
## 4702     1807   Summer     1786     1807       72       72 No Holiday     16.9
##      col 2771 col 2772 col 2773 col 2774 col 2775 col 2776 col 2777 col 2778
## 2992       44   Spring      Yes     17.9      5.4   Spring     1209     2000
## 7588       78   Autumn      Yes      7.6      4.0   Autumn      374     1614
## 3994       93   Spring      Yes     22.8     21.6   Spring       97      569
## 8095       78   Autumn       No      5.5      1.9   Autumn        0      983
## 6182       39   Summer      Yes     36.9     20.6   Summer      591     2000
## 4702       72   Summer      Yes     22.2     16.9   Summer     1807     1786
##        col 2779 col 2780 col 2781 col 2782 col 2783   col 2784 col 2785
## 2992 No Holiday      Yes       15      2.2        0 No Holiday     17.9
## 7588 No Holiday      Yes        3      0.7        0 No Holiday      7.6
## 3994 No Holiday      Yes        9      3.1        4 No Holiday     22.8
## 8095 No Holiday       No        6      0.6        0 No Holiday      5.5
## 6182    Holiday      Yes       13      1.5        0    Holiday     36.9
## 4702 No Holiday      Yes       21      1.0        0 No Holiday     22.2
##      col 2786 col 2787 col 2788 col 2789 col 2790   col 2791 col 2792 col 2793
## 2992      5.4      2.2     1209        0       15 No Holiday        0        0
## 7588      4.0      0.7      374        0        3 No Holiday        0        0
## 3994     21.6      3.1       97        4        9 No Holiday        0        4
## 8095      1.9      0.6        0        0        6 No Holiday        0        0
## 6182     20.6      1.5      591        0       13    Holiday        0        0
## 4702     16.9      1.0     1807        0       21 No Holiday        0        0
##      col 2794 col 2795   col 2796   col 2797 col 2798 col 2799   col 2800
## 2992     2000     1209   4/4/2018 No Holiday       15     17.9   4/4/2018
## 7588     1614      374 13/10/2018 No Holiday        3      7.6 13/10/2018
## 3994      569       97 16/05/2018 No Holiday        9     22.8 16/05/2018
## 8095      983        0  3/11/2018 No Holiday        6      5.5  3/11/2018
## 6182     2000      591 15/08/2018    Holiday       13     36.9 15/08/2018
## 4702     1786     1807 14/06/2018 No Holiday       21     22.2 14/06/2018
##      col 2801 col 2802 col 2803   col 2804   col 2805 col 2806   col 2807
## 2992     1209      5.4     2000   4/4/2018   4/4/2018      5.4   4/4/2018
## 7588      374      4.0     1614 13/10/2018 13/10/2018      4.0 13/10/2018
## 3994       97     21.6      569 16/05/2018 16/05/2018     21.6 16/05/2018
## 8095        0      1.9      983  3/11/2018  3/11/2018      1.9  3/11/2018
## 6182      591     20.6     2000 15/08/2018 15/08/2018     20.6 15/08/2018
## 4702     1807     16.9     1786 14/06/2018 14/06/2018     16.9 14/06/2018
##      col 2808   col 2809 col 2810 col 2811 col 2812 col 2813 col 2814 col 2815
## 2992        0 No Holiday      2.2      2.2       44     2.79     2.79      Yes
## 7588        0 No Holiday      0.7      0.7       78     0.00     0.00      Yes
## 3994        4 No Holiday      3.1      3.1       93     0.06     0.06      Yes
## 8095        0 No Holiday      0.6      0.6       78     0.00     0.00       No
## 6182        0    Holiday      1.5      1.5       39     2.46     2.46      Yes
## 4702        0 No Holiday      1.0      1.0       72     0.00     0.00      Yes
##        col 2816 col 2817 col 2818 col 2819 col 2820 col 2821 col 2822 col 2823
## 2992 No Holiday        0       15       44     2.79        0     1209     1209
## 7588 No Holiday        0        3       78     0.00        0      374      374
## 3994 No Holiday        4        9       93     0.06        4       97       97
## 8095 No Holiday        0        6       78     0.00        0        0        0
## 6182    Holiday        0       13       39     2.46        0      591      591
## 4702 No Holiday        0       21       72     0.00        0     1807     1807
##      col 2824 col 2825 col 2826 col 2827 col 2828 col 2829 col 2830 col 2831
## 2992        0        0      5.4     2.79     2.79        0   Spring        0
## 7588        0        0      4.0     0.00     0.00        0   Autumn        0
## 3994        4        0     21.6     0.06     0.06        4   Spring        4
## 8095        0        0      1.9     0.00     0.00        0   Autumn        0
## 6182        0        0     20.6     2.46     2.46        0   Summer        0
## 4702        0        0     16.9     0.00     0.00        0   Summer        0
##        col 2832 col 2833   col 2834 col 2835   col 2836 col 2837 col 2838
## 2992   4/4/2018       15   4/4/2018      5.4   4/4/2018        0     2000
## 7588 13/10/2018        3 13/10/2018      4.0 13/10/2018        0     1614
## 3994 16/05/2018        9 16/05/2018     21.6 16/05/2018        0      569
## 8095  3/11/2018        6  3/11/2018      1.9  3/11/2018        0      983
## 6182 15/08/2018       13 15/08/2018     20.6 15/08/2018        0     2000
## 4702 14/06/2018       21 14/06/2018     16.9 14/06/2018        0     1786
##      col 2839 col 2840   col 2841 col 2842 col 2843 col 2844 col 2845
## 2992     2000       44 No Holiday     2.79      Yes      Yes     2000
## 7588     1614       78 No Holiday     0.00      Yes      Yes     1614
## 3994      569       93 No Holiday     0.06      Yes      Yes      569
## 8095      983       78 No Holiday     0.00       No       No      983
## 6182     2000       39    Holiday     2.46      Yes      Yes     2000
## 4702     1786       72 No Holiday     0.00      Yes      Yes     1786
##        col 2846   col 2847 col 2848 col 2849   col 2850 col 2851 col 2852
## 2992   4/4/2018   4/4/2018       44      5.4   4/4/2018     17.9       15
## 7588 13/10/2018 13/10/2018       78      4.0 13/10/2018      7.6        3
## 3994 16/05/2018 16/05/2018       93     21.6 16/05/2018     22.8        9
## 8095  3/11/2018  3/11/2018       78      1.9  3/11/2018      5.5        6
## 6182 15/08/2018 15/08/2018       39     20.6 15/08/2018     36.9       13
## 4702 14/06/2018 14/06/2018       72     16.9 14/06/2018     22.2       21
##      col 2853 col 2854 col 2855   col 2856 col 2857 col 2858 col 2859 col 2860
## 2992     2.79        0     1209 No Holiday   Spring       44     2000        0
## 7588     0.00        0      374 No Holiday   Autumn       78     1614        0
## 3994     0.06        4       97 No Holiday   Spring       93      569        4
## 8095     0.00        0        0 No Holiday   Autumn       78      983        0
## 6182     2.46        0      591    Holiday   Summer       39     2000        0
## 4702     0.00        0     1807 No Holiday   Summer       72     1786        0
##      col 2861 col 2862 col 2863   col 2864 col 2865 col 2866 col 2867 col 2868
## 2992     1209      2.2      Yes   4/4/2018     17.9   Spring        0      Yes
## 7588      374      0.7      Yes 13/10/2018      7.6   Autumn        0      Yes
## 3994       97      3.1      Yes 16/05/2018     22.8   Spring        4      Yes
## 8095        0      0.6       No  3/11/2018      5.5   Autumn        0       No
## 6182      591      1.5      Yes 15/08/2018     36.9   Summer        0      Yes
## 4702     1807      1.0      Yes 14/06/2018     22.2   Summer        0      Yes
##      col 2869 col 2870 col 2871 col 2872 col 2873 col 2874 col 2875 col 2876
## 2992      5.4     2000        0      5.4     2000      Yes        0     1209
## 7588      4.0     1614        0      4.0     1614      Yes        0      374
## 3994     21.6      569        0     21.6      569      Yes        4       97
## 8095      1.9      983        0      1.9      983       No        0        0
## 6182     20.6     2000        0     20.6     2000      Yes        0      591
## 4702     16.9     1786        0     16.9     1786      Yes        0     1807
##      col 2877 col 2878 col 2879 col 2880 col 2881 col 2882 col 2883 col 2884
## 2992      Yes       15       44     2000        0   Spring     17.9        0
## 7588      Yes        3       78     1614        0   Autumn      7.6        0
## 3994      Yes        9       93      569        4   Spring     22.8        0
## 8095       No        6       78      983        0   Autumn      5.5        0
## 6182      Yes       13       39     2000        0   Summer     36.9        0
## 4702      Yes       21       72     1786        0   Summer     22.2        0
##      col 2885 col 2886 col 2887 col 2888 col 2889   col 2890 col 2891 col 2892
## 2992        0     2000     2.79      Yes   Spring No Holiday     2.79      2.2
## 7588        0     1614     0.00      Yes   Autumn No Holiday     0.00      0.7
## 3994        4      569     0.06      Yes   Spring No Holiday     0.06      3.1
## 8095        0      983     0.00       No   Autumn No Holiday     0.00      0.6
## 6182        0     2000     2.46      Yes   Summer    Holiday     2.46      1.5
## 4702        0     1786     0.00      Yes   Summer No Holiday     0.00      1.0
##      col 2893 col 2894 col 2895 col 2896 col 2897 col 2898 col 2899   col 2900
## 2992        0       15       15       44      Yes      2.2       15 No Holiday
## 7588        0        3        3       78      Yes      0.7        3 No Holiday
## 3994        0        9        9       93      Yes      3.1        9 No Holiday
## 8095        0        6        6       78       No      0.6        6 No Holiday
## 6182        0       13       13       39      Yes      1.5       13    Holiday
## 4702        0       21       21       72      Yes      1.0       21 No Holiday
##      col 2901 col 2902 col 2903 col 2904 col 2905 col 2906 col 2907   col 2908
## 2992       15       44        0     1209      5.4       15   Spring   4/4/2018
## 7588        3       78        0      374      4.0        3   Autumn 13/10/2018
## 3994        9       93        4       97     21.6        9   Spring 16/05/2018
## 8095        6       78        0        0      1.9        6   Autumn  3/11/2018
## 6182       13       39        0      591     20.6       13   Summer 15/08/2018
## 4702       21       72        0     1807     16.9       21   Summer 14/06/2018
##      col 2909 col 2910 col 2911 col 2912 col 2913 col 2914 col 2915 col 2916
## 2992     17.9      2.2     2000      5.4      2.2   Spring       44      Yes
## 7588      7.6      0.7     1614      4.0      0.7   Autumn       78      Yes
## 3994     22.8      3.1      569     21.6      3.1   Spring       93      Yes
## 8095      5.5      0.6      983      1.9      0.6   Autumn       78       No
## 6182     36.9      1.5     2000     20.6      1.5   Summer       39      Yes
## 4702     22.2      1.0     1786     16.9      1.0   Summer       72      Yes
##      col 2917   col 2918 col 2919 col 2920 col 2921 col 2922 col 2923 col 2924
## 2992      2.2   4/4/2018     1209   Spring     2000     2000        0     2000
## 7588      0.7 13/10/2018      374   Autumn     1614     1614        0     1614
## 3994      3.1 16/05/2018       97   Spring      569      569        0      569
## 8095      0.6  3/11/2018        0   Autumn      983      983        0      983
## 6182      1.5 15/08/2018      591   Summer     2000     2000        0     2000
## 4702      1.0 14/06/2018     1807   Summer     1786     1786        0     1786
##      col 2925 col 2926 col 2927 col 2928 col 2929 col 2930   col 2931 col 2932
## 2992       15     17.9        0        0   Spring       44 No Holiday   Spring
## 7588        3      7.6        0        0   Autumn       78 No Holiday   Autumn
## 3994        9     22.8        0        4   Spring       93 No Holiday   Spring
## 8095        6      5.5        0        0   Autumn       78 No Holiday   Autumn
## 6182       13     36.9        0        0   Summer       39    Holiday   Summer
## 4702       21     22.2        0        0   Summer       72 No Holiday   Summer
##      col 2933 col 2934 col 2935 col 2936   col 2937 col 2938   col 2939
## 2992   Spring      5.4     2.79     2.79 No Holiday     17.9   4/4/2018
## 7588   Autumn      4.0     0.00     0.00 No Holiday      7.6 13/10/2018
## 3994   Spring     21.6     0.06     0.06 No Holiday     22.8 16/05/2018
## 8095   Autumn      1.9     0.00     0.00 No Holiday      5.5  3/11/2018
## 6182   Summer     20.6     2.46     2.46    Holiday     36.9 15/08/2018
## 4702   Summer     16.9     0.00     0.00 No Holiday     22.2 14/06/2018
##      col 2940 col 2941 col 2942 col 2943 col 2944 col 2945 col 2946 col 2947
## 2992       44      5.4      5.4     1209      5.4     2000     2.79      2.2
## 7588       78      4.0      4.0      374      4.0     1614     0.00      0.7
## 3994       93     21.6     21.6       97     21.6      569     0.06      3.1
## 8095       78      1.9      1.9        0      1.9      983     0.00      0.6
## 6182       39     20.6     20.6      591     20.6     2000     2.46      1.5
## 4702       72     16.9     16.9     1807     16.9     1786     0.00      1.0
##      col 2948 col 2949 col 2950 col 2951 col 2952 col 2953 col 2954 col 2955
## 2992     2000       15     2000        0     1209       15        0        0
## 7588     1614        3     1614        0      374        3        0        0
## 3994      569        9      569        0       97        9        4        4
## 8095      983        6      983        0        0        6        0        0
## 6182     2000       13     2000        0      591       13        0        0
## 4702     1786       21     1786        0     1807       21        0        0
##      col 2956 col 2957   col 2958 col 2959 col 2960 col 2961 col 2962 col 2963
## 2992      5.4      Yes No Holiday      5.4       15   Spring      2.2     17.9
## 7588      4.0      Yes No Holiday      4.0        3   Autumn      0.7      7.6
## 3994     21.6      Yes No Holiday     21.6        9   Spring      3.1     22.8
## 8095      1.9       No No Holiday      1.9        6   Autumn      0.6      5.5
## 6182     20.6      Yes    Holiday     20.6       13   Summer      1.5     36.9
## 4702     16.9      Yes No Holiday     16.9       21   Summer      1.0     22.2
##      col 2964 col 2965 col 2966 col 2967 col 2968 col 2969 col 2970 col 2971
## 2992     2000     2000     2000      2.2        0        0        0      Yes
## 7588     1614     1614     1614      0.7        0        0        0      Yes
## 3994      569      569      569      3.1        0        0        0      Yes
## 8095      983      983      983      0.6        0        0        0       No
## 6182     2000     2000     2000      1.5        0        0        0      Yes
## 4702     1786     1786     1786      1.0        0        0        0      Yes
##      col 2972 col 2973 col 2974 col 2975   col 2976 col 2977 col 2978 col 2979
## 2992     2000       15        0       15 No Holiday   Spring       44       15
## 7588     1614        3        0        3 No Holiday   Autumn       78        3
## 3994      569        9        0        9 No Holiday   Spring       93        9
## 8095      983        6        0        6 No Holiday   Autumn       78        6
## 6182     2000       13        0       13    Holiday   Summer       39       13
## 4702     1786       21        0       21 No Holiday   Summer       72       21
##      col 2980 col 2981 col 2982 col 2983   col 2984 col 2985 col 2986
## 2992     2000       15     2.79       15   4/4/2018     17.9       44
## 7588     1614        3     0.00        3 13/10/2018      7.6       78
## 3994      569        9     0.06        9 16/05/2018     22.8       93
## 8095      983        6     0.00        6  3/11/2018      5.5       78
## 6182     2000       13     2.46       13 15/08/2018     36.9       39
## 4702     1786       21     0.00       21 14/06/2018     22.2       72
##        col 2987 col 2988 col 2989 col 2990 col 2991 col 2992   col 2993
## 2992   4/4/2018      5.4       44      Yes        0       15   4/4/2018
## 7588 13/10/2018      4.0       78      Yes        0        3 13/10/2018
## 3994 16/05/2018     21.6       93      Yes        4        9 16/05/2018
## 8095  3/11/2018      1.9       78       No        0        6  3/11/2018
## 6182 15/08/2018     20.6       39      Yes        0       13 15/08/2018
## 4702 14/06/2018     16.9       72      Yes        0       21 14/06/2018
##      col 2994 col 2995 col 2996 col 2997 col 2998 col 2999 col 3000   col 3001
## 2992      5.4        0   Spring      2.2     2.79     17.9     17.9   4/4/2018
## 7588      4.0        0   Autumn      0.7     0.00      7.6      7.6 13/10/2018
## 3994     21.6        4   Spring      3.1     0.06     22.8     22.8 16/05/2018
## 8095      1.9        0   Autumn      0.6     0.00      5.5      5.5  3/11/2018
## 6182     20.6        0   Summer      1.5     2.46     36.9     36.9 15/08/2018
## 4702     16.9        0   Summer      1.0     0.00     22.2     22.2 14/06/2018
##      col 3002 col 3003 col 3004 col 3005 col 3006 col 3007 col 3008 col 3009
## 2992      2.2     2.79      5.4       44      2.2        0     1209      5.4
## 7588      0.7     0.00      4.0       78      0.7        0      374      4.0
## 3994      3.1     0.06     21.6       93      3.1        0       97     21.6
## 8095      0.6     0.00      1.9       78      0.6        0        0      1.9
## 6182      1.5     2.46     20.6       39      1.5        0      591     20.6
## 4702      1.0     0.00     16.9       72      1.0        0     1807     16.9
##        col 3010 col 3011 col 3012 col 3013 col 3014 col 3015   col 3016
## 2992 No Holiday       15     1209        0        0        0   4/4/2018
## 7588 No Holiday        3      374        0        0        0 13/10/2018
## 3994 No Holiday        9       97        4        4        0 16/05/2018
## 8095 No Holiday        6        0        0        0        0  3/11/2018
## 6182    Holiday       13      591        0        0        0 15/08/2018
## 4702 No Holiday       21     1807        0        0        0 14/06/2018
##      col 3017 col 3018 col 3019 col 3020 col 3021 col 3022 col 3023 col 3024
## 2992      Yes     17.9     17.9   Spring       44     2000     17.9   Spring
## 7588      Yes      7.6      7.6   Autumn       78     1614      7.6   Autumn
## 3994      Yes     22.8     22.8   Spring       93      569     22.8   Spring
## 8095       No      5.5      5.5   Autumn       78      983      5.5   Autumn
## 6182      Yes     36.9     36.9   Summer       39     2000     36.9   Summer
## 4702      Yes     22.2     22.2   Summer       72     1786     22.2   Summer
##      col 3025   col 3026 col 3027 col 3028 col 3029 col 3030 col 3031
## 2992     1209 No Holiday     2.79     2000        0      Yes   Spring
## 7588      374 No Holiday     0.00     1614        0      Yes   Autumn
## 3994       97 No Holiday     0.06      569        0      Yes   Spring
## 8095        0 No Holiday     0.00      983        0       No   Autumn
## 6182      591    Holiday     2.46     2000        0      Yes   Summer
## 4702     1807 No Holiday     0.00     1786        0      Yes   Summer
##        col 3032 col 3033 col 3034 col 3035 col 3036 col 3037 col 3038 col 3039
## 2992 No Holiday     2000      2.2      Yes     2.79      2.2     2000      2.2
## 7588 No Holiday     1614      0.7      Yes     0.00      0.7     1614      0.7
## 3994 No Holiday      569      3.1      Yes     0.06      3.1      569      3.1
## 8095 No Holiday      983      0.6       No     0.00      0.6      983      0.6
## 6182    Holiday     2000      1.5      Yes     2.46      1.5     2000      1.5
## 4702 No Holiday     1786      1.0      Yes     0.00      1.0     1786      1.0
##      col 3040 col 3041 col 3042 col 3043   col 3044 col 3045 col 3046
## 2992   Spring        0      2.2     17.9 No Holiday        0      Yes
## 7588   Autumn        0      0.7      7.6 No Holiday        0      Yes
## 3994   Spring        0      3.1     22.8 No Holiday        0      Yes
## 8095   Autumn        0      0.6      5.5 No Holiday        0       No
## 6182   Summer        0      1.5     36.9    Holiday        0      Yes
## 4702   Summer        0      1.0     22.2 No Holiday        0      Yes
##        col 3047 col 3048   col 3049   col 3050   col 3051 col 3052 col 3053
## 2992 No Holiday       44 No Holiday   4/4/2018 No Holiday   Spring     17.9
## 7588 No Holiday       78 No Holiday 13/10/2018 No Holiday   Autumn      7.6
## 3994 No Holiday       93 No Holiday 16/05/2018 No Holiday   Spring     22.8
## 8095 No Holiday       78 No Holiday  3/11/2018 No Holiday   Autumn      5.5
## 6182    Holiday       39    Holiday 15/08/2018    Holiday   Summer     36.9
## 4702 No Holiday       72 No Holiday 14/06/2018 No Holiday   Summer     22.2
##      col 3054 col 3055 col 3056 col 3057 col 3058 col 3059 col 3060   col 3061
## 2992   Spring      5.4     2.79     1209      2.2     17.9        0 No Holiday
## 7588   Autumn      4.0     0.00      374      0.7      7.6        0 No Holiday
## 3994   Spring     21.6     0.06       97      3.1     22.8        0 No Holiday
## 8095   Autumn      1.9     0.00        0      0.6      5.5        0 No Holiday
## 6182   Summer     20.6     2.46      591      1.5     36.9        0    Holiday
## 4702   Summer     16.9     0.00     1807      1.0     22.2        0 No Holiday
##      col 3062 col 3063 col 3064 col 3065 col 3066 col 3067   col 3068 col 3069
## 2992      2.2       44     2000       44       44      2.2   4/4/2018        0
## 7588      0.7       78     1614       78       78      0.7 13/10/2018        0
## 3994      3.1       93      569       93       93      3.1 16/05/2018        0
## 8095      0.6       78      983       78       78      0.6  3/11/2018        0
## 6182      1.5       39     2000       39       39      1.5 15/08/2018        0
## 4702      1.0       72     1786       72       72      1.0 14/06/2018        0
##      col 3070 col 3071   col 3072 col 3073   col 3074 col 3075 col 3076
## 2992        0        0   4/4/2018     2.79   4/4/2018     17.9     2000
## 7588        0        0 13/10/2018     0.00 13/10/2018      7.6     1614
## 3994        0        0 16/05/2018     0.06 16/05/2018     22.8      569
## 8095        0        0  3/11/2018     0.00  3/11/2018      5.5      983
## 6182        0        0 15/08/2018     2.46 15/08/2018     36.9     2000
## 4702        0        0 14/06/2018     0.00 14/06/2018     22.2     1786
##      col 3077 col 3078 col 3079 col 3080   col 3081 col 3082 col 3083 col 3084
## 2992     2.79   Spring     2.79        0   4/4/2018     17.9   Spring       44
## 7588     0.00   Autumn     0.00        0 13/10/2018      7.6   Autumn       78
## 3994     0.06   Spring     0.06        4 16/05/2018     22.8   Spring       93
## 8095     0.00   Autumn     0.00        0  3/11/2018      5.5   Autumn       78
## 6182     2.46   Summer     2.46        0 15/08/2018     36.9   Summer       39
## 4702     0.00   Summer     0.00        0 14/06/2018     22.2   Summer       72
##      col 3085 col 3086 col 3087 col 3088 col 3089   col 3090 col 3091 col 3092
## 2992        0       44     2.79        0        0   4/4/2018      5.4        0
## 7588        0       78     0.00        0        0 13/10/2018      4.0        0
## 3994        0       93     0.06        4        0 16/05/2018     21.6        4
## 8095        0       78     0.00        0        0  3/11/2018      1.9        0
## 6182        0       39     2.46        0        0 15/08/2018     20.6        0
## 4702        0       72     0.00        0        0 14/06/2018     16.9        0
##      col 3093 col 3094 col 3095 col 3096   col 3097 col 3098 col 3099 col 3100
## 2992     1209       15       44       44   4/4/2018      2.2      5.4   Spring
## 7588      374        3       78       78 13/10/2018      0.7      4.0   Autumn
## 3994       97        9       93       93 16/05/2018      3.1     21.6   Spring
## 8095        0        6       78       78  3/11/2018      0.6      1.9   Autumn
## 6182      591       13       39       39 15/08/2018      1.5     20.6   Summer
## 4702     1807       21       72       72 14/06/2018      1.0     16.9   Summer
##      col 3101 col 3102   col 3103 col 3104 col 3105 col 3106 col 3107 col 3108
## 2992     2.79     2.79 No Holiday       15        0        0     17.9     2000
## 7588     0.00     0.00 No Holiday        3        0        0      7.6     1614
## 3994     0.06     0.06 No Holiday        9        0        0     22.8      569
## 8095     0.00     0.00 No Holiday        6        0        0      5.5      983
## 6182     2.46     2.46    Holiday       13        0        0     36.9     2000
## 4702     0.00     0.00 No Holiday       21        0        0     22.2     1786
##      col 3109 col 3110 col 3111 col 3112 col 3113 col 3114 col 3115 col 3116
## 2992   Spring     2.79        0   Spring       44   Spring     17.9       44
## 7588   Autumn     0.00        0   Autumn       78   Autumn      7.6       78
## 3994   Spring     0.06        4   Spring       93   Spring     22.8       93
## 8095   Autumn     0.00        0   Autumn       78   Autumn      5.5       78
## 6182   Summer     2.46        0   Summer       39   Summer     36.9       39
## 4702   Summer     0.00        0   Summer       72   Summer     22.2       72
##        col 3117 col 3118 col 3119 col 3120 col 3121 col 3122 col 3123 col 3124
## 2992 No Holiday        0     2000      5.4     1209      5.4       44     1209
## 7588 No Holiday        0     1614      4.0      374      4.0       78      374
## 3994 No Holiday        4      569     21.6       97     21.6       93       97
## 8095 No Holiday        0      983      1.9        0      1.9       78        0
## 6182    Holiday        0     2000     20.6      591     20.6       39      591
## 4702 No Holiday        0     1786     16.9     1807     16.9       72     1807
##      col 3125 col 3126 col 3127 col 3128 col 3129 col 3130   col 3131 col 3132
## 2992        0     2000        0     17.9     2000       44   4/4/2018        0
## 7588        0     1614        0      7.6     1614       78 13/10/2018        0
## 3994        4      569        4     22.8      569       93 16/05/2018        0
## 8095        0      983        0      5.5      983       78  3/11/2018        0
## 6182        0     2000        0     36.9     2000       39 15/08/2018        0
## 4702        0     1786        0     22.2     1786       72 14/06/2018        0
##      col 3133 col 3134 col 3135 col 3136 col 3137   col 3138 col 3139 col 3140
## 2992        0        0        0       15     2.79   4/4/2018     17.9     2000
## 7588        0        0        0        3     0.00 13/10/2018      7.6     1614
## 3994        0        4        0        9     0.06 16/05/2018     22.8      569
## 8095        0        0        0        6     0.00  3/11/2018      5.5      983
## 6182        0        0        0       13     2.46 15/08/2018     36.9     2000
## 4702        0        0        0       21     0.00 14/06/2018     22.2     1786
##        col 3141 col 3142 col 3143 col 3144 col 3145 col 3146 col 3147
## 2992   4/4/2018       44      5.4       15       15      5.4      5.4
## 7588 13/10/2018       78      4.0        3        3      4.0      4.0
## 3994 16/05/2018       93     21.6        9        9     21.6     21.6
## 8095  3/11/2018       78      1.9        6        6      1.9      1.9
## 6182 15/08/2018       39     20.6       13       13     20.6     20.6
## 4702 14/06/2018       72     16.9       21       21     16.9     16.9
##        col 3148 col 3149 col 3150 col 3151 col 3152 col 3153 col 3154 col 3155
## 2992 No Holiday      2.2        0       44     1209     17.9      5.4      2.2
## 7588 No Holiday      0.7        0       78      374      7.6      4.0      0.7
## 3994 No Holiday      3.1        0       93       97     22.8     21.6      3.1
## 8095 No Holiday      0.6        0       78        0      5.5      1.9      0.6
## 6182    Holiday      1.5        0       39      591     36.9     20.6      1.5
## 4702 No Holiday      1.0        0       72     1807     22.2     16.9      1.0
##      col 3156 col 3157   col 3158 col 3159 col 3160 col 3161 col 3162 col 3163
## 2992     2000      Yes No Holiday      5.4       15      5.4       44     2000
## 7588     1614      Yes No Holiday      4.0        3      4.0       78     1614
## 3994      569      Yes No Holiday     21.6        9     21.6       93      569
## 8095      983       No No Holiday      1.9        6      1.9       78      983
## 6182     2000      Yes    Holiday     20.6       13     20.6       39     2000
## 4702     1786      Yes No Holiday     16.9       21     16.9       72     1786
##      col 3164 col 3165 col 3166   col 3167 col 3168 col 3169 col 3170 col 3171
## 2992     1209        0        0   4/4/2018     17.9     2.79        0       15
## 7588      374        0        0 13/10/2018      7.6     0.00        0        3
## 3994       97        4        4 16/05/2018     22.8     0.06        4        9
## 8095        0        0        0  3/11/2018      5.5     0.00        0        6
## 6182      591        0        0 15/08/2018     36.9     2.46        0       13
## 4702     1807        0        0 14/06/2018     22.2     0.00        0       21
##      col 3172   col 3173 col 3174 col 3175 col 3176 col 3177 col 3178 col 3179
## 2992        0 No Holiday      5.4     1209     2.79       44       44       44
## 7588        0 No Holiday      4.0      374     0.00       78       78       78
## 3994        4 No Holiday     21.6       97     0.06       93       93       93
## 8095        0 No Holiday      1.9        0     0.00       78       78       78
## 6182        0    Holiday     20.6      591     2.46       39       39       39
## 4702        0 No Holiday     16.9     1807     0.00       72       72       72
##      col 3180 col 3181 col 3182 col 3183 col 3184 col 3185 col 3186 col 3187
## 2992        0      Yes     2.79     17.9     1209      5.4        0     2.79
## 7588        0      Yes     0.00      7.6      374      4.0        0     0.00
## 3994        0      Yes     0.06     22.8       97     21.6        0     0.06
## 8095        0       No     0.00      5.5        0      1.9        0     0.00
## 6182        0      Yes     2.46     36.9      591     20.6        0     2.46
## 4702        0      Yes     0.00     22.2     1807     16.9        0     0.00
##        col 3188 col 3189 col 3190 col 3191 col 3192 col 3193 col 3194 col 3195
## 2992   4/4/2018     2000     2.79      Yes      2.2     2000        0        0
## 7588 13/10/2018     1614     0.00      Yes      0.7     1614        0        0
## 3994 16/05/2018      569     0.06      Yes      3.1      569        4        0
## 8095  3/11/2018      983     0.00       No      0.6      983        0        0
## 6182 15/08/2018     2000     2.46      Yes      1.5     2000        0        0
## 4702 14/06/2018     1786     0.00      Yes      1.0     1786        0        0
##      col 3196 col 3197 col 3198 col 3199 col 3200 col 3201 col 3202 col 3203
## 2992     2000     2.79     1209      5.4   Spring       15   Spring     1209
## 7588     1614     0.00      374      4.0   Autumn        3   Autumn      374
## 3994      569     0.06       97     21.6   Spring        9   Spring       97
## 8095      983     0.00        0      1.9   Autumn        6   Autumn        0
## 6182     2000     2.46      591     20.6   Summer       13   Summer      591
## 4702     1786     0.00     1807     16.9   Summer       21   Summer     1807
##      col 3204 col 3205 col 3206   col 3207 col 3208 col 3209 col 3210
## 2992     17.9      5.4       15   4/4/2018        0        0      Yes
## 7588      7.6      4.0        3 13/10/2018        0        0      Yes
## 3994     22.8     21.6        9 16/05/2018        4        0      Yes
## 8095      5.5      1.9        6  3/11/2018        0        0       No
## 6182     36.9     20.6       13 15/08/2018        0        0      Yes
## 4702     22.2     16.9       21 14/06/2018        0        0      Yes
##        col 3211 col 3212 col 3213 col 3214 col 3215 col 3216 col 3217 col 3218
## 2992 No Holiday       15     17.9     1209     2000     2.79     17.9     2000
## 7588 No Holiday        3      7.6      374     1614     0.00      7.6     1614
## 3994 No Holiday        9     22.8       97      569     0.06     22.8      569
## 8095 No Holiday        6      5.5        0      983     0.00      5.5      983
## 6182    Holiday       13     36.9      591     2000     2.46     36.9     2000
## 4702 No Holiday       21     22.2     1807     1786     0.00     22.2     1786
##      col 3219 col 3220 col 3221 col 3222 col 3223 col 3224 col 3225 col 3226
## 2992       44   Spring     17.9        0   Spring        0   Spring   Spring
## 7588       78   Autumn      7.6        0   Autumn        0   Autumn   Autumn
## 3994       93   Spring     22.8        4   Spring        4   Spring   Spring
## 8095       78   Autumn      5.5        0   Autumn        0   Autumn   Autumn
## 6182       39   Summer     36.9        0   Summer        0   Summer   Summer
## 4702       72   Summer     22.2        0   Summer        0   Summer   Summer
##      col 3227 col 3228 col 3229 col 3230 col 3231 col 3232 col 3233 col 3234
## 2992      5.4      Yes       44     1209     2000      5.4        0     17.9
## 7588      4.0      Yes       78      374     1614      4.0        0      7.6
## 3994     21.6      Yes       93       97      569     21.6        0     22.8
## 8095      1.9       No       78        0      983      1.9        0      5.5
## 6182     20.6      Yes       39      591     2000     20.6        0     36.9
## 4702     16.9      Yes       72     1807     1786     16.9        0     22.2
##      col 3235   col 3236 col 3237   col 3238 col 3239 col 3240 col 3241
## 2992       15   4/4/2018     1209 No Holiday      2.2      Yes        0
## 7588        3 13/10/2018      374 No Holiday      0.7      Yes        0
## 3994        9 16/05/2018       97 No Holiday      3.1      Yes        0
## 8095        6  3/11/2018        0 No Holiday      0.6       No        0
## 6182       13 15/08/2018      591    Holiday      1.5      Yes        0
## 4702       21 14/06/2018     1807 No Holiday      1.0      Yes        0
##      col 3242 col 3243 col 3244 col 3245 col 3246 col 3247 col 3248   col 3249
## 2992     1209       44      2.2      Yes      5.4      2.2     1209 No Holiday
## 7588      374       78      0.7      Yes      4.0      0.7      374 No Holiday
## 3994       97       93      3.1      Yes     21.6      3.1       97 No Holiday
## 8095        0       78      0.6       No      1.9      0.6        0 No Holiday
## 6182      591       39      1.5      Yes     20.6      1.5      591    Holiday
## 4702     1807       72      1.0      Yes     16.9      1.0     1807 No Holiday
##      col 3250 col 3251 col 3252 col 3253 col 3254 col 3255 col 3256 col 3257
## 2992     2.79     1209     1209     2000        0     2.79   Spring        0
## 7588     0.00      374      374     1614        0     0.00   Autumn        0
## 3994     0.06       97       97      569        0     0.06   Spring        0
## 8095     0.00        0        0      983        0     0.00   Autumn        0
## 6182     2.46      591      591     2000        0     2.46   Summer        0
## 4702     0.00     1807     1807     1786        0     0.00   Summer        0
##      col 3258 col 3259 col 3260 col 3261 col 3262 col 3263 col 3264 col 3265
## 2992        0      5.4        0     2.79     2000     2000       44     17.9
## 7588        0      4.0        0     0.00     1614     1614       78      7.6
## 3994        0     21.6        4     0.06      569      569       93     22.8
## 8095        0      1.9        0     0.00      983      983       78      5.5
## 6182        0     20.6        0     2.46     2000     2000       39     36.9
## 4702        0     16.9        0     0.00     1786     1786       72     22.2
##      col 3266 col 3267   col 3268 col 3269 col 3270 col 3271 col 3272 col 3273
## 2992     1209   Spring No Holiday     1209      Yes       44      Yes      2.2
## 7588      374   Autumn No Holiday      374      Yes       78      Yes      0.7
## 3994       97   Spring No Holiday       97      Yes       93      Yes      3.1
## 8095        0   Autumn No Holiday        0       No       78       No      0.6
## 6182      591   Summer    Holiday      591      Yes       39      Yes      1.5
## 4702     1807   Summer No Holiday     1807      Yes       72      Yes      1.0
##      col 3274   col 3275 col 3276 col 3277   col 3278 col 3279 col 3280
## 2992      2.2 No Holiday       44       44 No Holiday     2000     2000
## 7588      0.7 No Holiday       78       78 No Holiday     1614     1614
## 3994      3.1 No Holiday       93       93 No Holiday      569      569
## 8095      0.6 No Holiday       78       78 No Holiday      983      983
## 6182      1.5    Holiday       39       39    Holiday     2000     2000
## 4702      1.0 No Holiday       72       72 No Holiday     1786     1786
##      col 3281 col 3282 col 3283 col 3284 col 3285 col 3286 col 3287 col 3288
## 2992      5.4   Spring       44       44       15        0      Yes     1209
## 7588      4.0   Autumn       78       78        3        0      Yes      374
## 3994     21.6   Spring       93       93        9        0      Yes       97
## 8095      1.9   Autumn       78       78        6        0       No        0
## 6182     20.6   Summer       39       39       13        0      Yes      591
## 4702     16.9   Summer       72       72       21        0      Yes     1807
##      col 3289   col 3290 col 3291 col 3292 col 3293 col 3294 col 3295 col 3296
## 2992     1209 No Holiday        0     2000      2.2      5.4        0        0
## 7588      374 No Holiday        0     1614      0.7      4.0        0        0
## 3994       97 No Holiday        4      569      3.1     21.6        0        0
## 8095        0 No Holiday        0      983      0.6      1.9        0        0
## 6182      591    Holiday        0     2000      1.5     20.6        0        0
## 4702     1807 No Holiday        0     1786      1.0     16.9        0        0
##      col 3297 col 3298 col 3299 col 3300   col 3301 col 3302 col 3303 col 3304
## 2992       15     1209     1209      5.4 No Holiday        0       44     2.79
## 7588        3      374      374      4.0 No Holiday        0       78     0.00
## 3994        9       97       97     21.6 No Holiday        4       93     0.06
## 8095        6        0        0      1.9 No Holiday        0       78     0.00
## 6182       13      591      591     20.6    Holiday        0       39     2.46
## 4702       21     1807     1807     16.9 No Holiday        0       72     0.00
##      col 3305 col 3306 col 3307 col 3308 col 3309   col 3310 col 3311 col 3312
## 2992   Spring      2.2      2.2   Spring     1209   4/4/2018      2.2   Spring
## 7588   Autumn      0.7      0.7   Autumn      374 13/10/2018      0.7   Autumn
## 3994   Spring      3.1      3.1   Spring       97 16/05/2018      3.1   Spring
## 8095   Autumn      0.6      0.6   Autumn        0  3/11/2018      0.6   Autumn
## 6182   Summer      1.5      1.5   Summer      591 15/08/2018      1.5   Summer
## 4702   Summer      1.0      1.0   Summer     1807 14/06/2018      1.0   Summer
##      col 3313 col 3314 col 3315 col 3316 col 3317   col 3318 col 3319 col 3320
## 2992       44     17.9        0     2000     2.79 No Holiday        0      5.4
## 7588       78      7.6        0     1614     0.00 No Holiday        0      4.0
## 3994       93     22.8        4      569     0.06 No Holiday        4     21.6
## 8095       78      5.5        0      983     0.00 No Holiday        0      1.9
## 6182       39     36.9        0     2000     2.46    Holiday        0     20.6
## 4702       72     22.2        0     1786     0.00 No Holiday        0     16.9
##      col 3321 col 3322 col 3323 col 3324 col 3325 col 3326 col 3327   col 3328
## 2992      5.4        0      Yes        0        0        0        0   4/4/2018
## 7588      4.0        0      Yes        0        0        0        0 13/10/2018
## 3994     21.6        4      Yes        4        0        4        4 16/05/2018
## 8095      1.9        0       No        0        0        0        0  3/11/2018
## 6182     20.6        0      Yes        0        0        0        0 15/08/2018
## 4702     16.9        0      Yes        0        0        0        0 14/06/2018
##      col 3329 col 3330   col 3331 col 3332 col 3333 col 3334   col 3335
## 2992   Spring   Spring   4/4/2018      Yes        0      Yes No Holiday
## 7588   Autumn   Autumn 13/10/2018      Yes        0      Yes No Holiday
## 3994   Spring   Spring 16/05/2018      Yes        4      Yes No Holiday
## 8095   Autumn   Autumn  3/11/2018       No        0       No No Holiday
## 6182   Summer   Summer 15/08/2018      Yes        0      Yes    Holiday
## 4702   Summer   Summer 14/06/2018      Yes        0      Yes No Holiday
##      col 3336 col 3337 col 3338 col 3339 col 3340 col 3341 col 3342 col 3343
## 2992        0      2.2     2000   Spring       44     1209      2.2      2.2
## 7588        0      0.7     1614   Autumn       78      374      0.7      0.7
## 3994        0      3.1      569   Spring       93       97      3.1      3.1
## 8095        0      0.6      983   Autumn       78        0      0.6      0.6
## 6182        0      1.5     2000   Summer       39      591      1.5      1.5
## 4702        0      1.0     1786   Summer       72     1807      1.0      1.0
##      col 3344 col 3345 col 3346 col 3347   col 3348 col 3349 col 3350
## 2992      Yes      5.4     17.9        0 No Holiday       15       15
## 7588      Yes      4.0      7.6        0 No Holiday        3        3
## 3994      Yes     21.6     22.8        0 No Holiday        9        9
## 8095       No      1.9      5.5        0 No Holiday        6        6
## 6182      Yes     20.6     36.9        0    Holiday       13       13
## 4702      Yes     16.9     22.2        0 No Holiday       21       21
##        col 3351 col 3352 col 3353 col 3354 col 3355 col 3356 col 3357 col 3358
## 2992   4/4/2018   Spring      2.2     2000      Yes     17.9      Yes        0
## 7588 13/10/2018   Autumn      0.7     1614      Yes      7.6      Yes        0
## 3994 16/05/2018   Spring      3.1      569      Yes     22.8      Yes        4
## 8095  3/11/2018   Autumn      0.6      983       No      5.5       No        0
## 6182 15/08/2018   Summer      1.5     2000      Yes     36.9      Yes        0
## 4702 14/06/2018   Summer      1.0     1786      Yes     22.2      Yes        0
##      col 3359 col 3360 col 3361 col 3362   col 3363 col 3364   col 3365
## 2992       15     2.79       15     1209 No Holiday        0 No Holiday
## 7588        3     0.00        3      374 No Holiday        0 No Holiday
## 3994        9     0.06        9       97 No Holiday        4 No Holiday
## 8095        6     0.00        6        0 No Holiday        0 No Holiday
## 6182       13     2.46       13      591    Holiday        0    Holiday
## 4702       21     0.00       21     1807 No Holiday        0 No Holiday
##      col 3366 col 3367   col 3368 col 3369 col 3370 col 3371 col 3372 col 3373
## 2992     17.9        0 No Holiday       15        0       44     2.79     2000
## 7588      7.6        0 No Holiday        3        0       78     0.00     1614
## 3994     22.8        0 No Holiday        9        0       93     0.06      569
## 8095      5.5        0 No Holiday        6        0       78     0.00      983
## 6182     36.9        0    Holiday       13        0       39     2.46     2000
## 4702     22.2        0 No Holiday       21        0       72     0.00     1786
##      col 3374 col 3375 col 3376 col 3377 col 3378 col 3379 col 3380 col 3381
## 2992     2000       44     2000      5.4     1209       44     1209   Spring
## 7588     1614       78     1614      4.0      374       78      374   Autumn
## 3994      569       93      569     21.6       97       93       97   Spring
## 8095      983       78      983      1.9        0       78        0   Autumn
## 6182     2000       39     2000     20.6      591       39      591   Summer
## 4702     1786       72     1786     16.9     1807       72     1807   Summer
##      col 3382 col 3383 col 3384 col 3385 col 3386 col 3387   col 3388 col 3389
## 2992        0      Yes       15      Yes     17.9       44 No Holiday       44
## 7588        0      Yes        3      Yes      7.6       78 No Holiday       78
## 3994        0      Yes        9      Yes     22.8       93 No Holiday       93
## 8095        0       No        6       No      5.5       78 No Holiday       78
## 6182        0      Yes       13      Yes     36.9       39    Holiday       39
## 4702        0      Yes       21      Yes     22.2       72 No Holiday       72
##      col 3390 col 3391   col 3392 col 3393 col 3394 col 3395 col 3396
## 2992        0     17.9   4/4/2018   Spring       15       15     1209
## 7588        0      7.6 13/10/2018   Autumn        3        3      374
## 3994        0     22.8 16/05/2018   Spring        9        9       97
## 8095        0      5.5  3/11/2018   Autumn        6        6        0
## 6182        0     36.9 15/08/2018   Summer       13       13      591
## 4702        0     22.2 14/06/2018   Summer       21       21     1807
##        col 3397 col 3398 col 3399 col 3400 col 3401 col 3402 col 3403 col 3404
## 2992   4/4/2018     2000     1209       44        0     2000     17.9     17.9
## 7588 13/10/2018     1614      374       78        0     1614      7.6      7.6
## 3994 16/05/2018      569       97       93        4      569     22.8     22.8
## 8095  3/11/2018      983        0       78        0      983      5.5      5.5
## 6182 15/08/2018     2000      591       39        0     2000     36.9     36.9
## 4702 14/06/2018     1786     1807       72        0     1786     22.2     22.2
##      col 3405 col 3406 col 3407 col 3408   col 3409 col 3410 col 3411 col 3412
## 2992        0     2.79        0     2000   4/4/2018     17.9   Spring   Spring
## 7588        0     0.00        0     1614 13/10/2018      7.6   Autumn   Autumn
## 3994        0     0.06        0      569 16/05/2018     22.8   Spring   Spring
## 8095        0     0.00        0      983  3/11/2018      5.5   Autumn   Autumn
## 6182        0     2.46        0     2000 15/08/2018     36.9   Summer   Summer
## 4702        0     0.00        0     1786 14/06/2018     22.2   Summer   Summer
##      col 3413 col 3414 col 3415 col 3416 col 3417 col 3418 col 3419   col 3420
## 2992      5.4     2000     2000       44     17.9   Spring        0   4/4/2018
## 7588      4.0     1614     1614       78      7.6   Autumn        0 13/10/2018
## 3994     21.6      569      569       93     22.8   Spring        4 16/05/2018
## 8095      1.9      983      983       78      5.5   Autumn        0  3/11/2018
## 6182     20.6     2000     2000       39     36.9   Summer        0 15/08/2018
## 4702     16.9     1786     1786       72     22.2   Summer        0 14/06/2018
##      col 3421   col 3422   col 3423 col 3424 col 3425   col 3426 col 3427
## 2992     2000   4/4/2018 No Holiday        0        0 No Holiday      2.2
## 7588     1614 13/10/2018 No Holiday        0        0 No Holiday      0.7
## 3994      569 16/05/2018 No Holiday        0        4 No Holiday      3.1
## 8095      983  3/11/2018 No Holiday        0        0 No Holiday      0.6
## 6182     2000 15/08/2018    Holiday        0        0    Holiday      1.5
## 4702     1786 14/06/2018 No Holiday        0        0 No Holiday      1.0
##      col 3428   col 3429 col 3430 col 3431 col 3432   col 3433 col 3434
## 2992     1209   4/4/2018     1209     2.79     2000 No Holiday      Yes
## 7588      374 13/10/2018      374     0.00     1614 No Holiday      Yes
## 3994       97 16/05/2018       97     0.06      569 No Holiday      Yes
## 8095        0  3/11/2018        0     0.00      983 No Holiday       No
## 6182      591 15/08/2018      591     2.46     2000    Holiday      Yes
## 4702     1807 14/06/2018     1807     0.00     1786 No Holiday      Yes
##      col 3435 col 3436 col 3437 col 3438 col 3439 col 3440 col 3441 col 3442
## 2992        0     2000      2.2      5.4       15        0      Yes     2000
## 7588        0     1614      0.7      4.0        3        0      Yes     1614
## 3994        0      569      3.1     21.6        9        0      Yes      569
## 8095        0      983      0.6      1.9        6        0       No      983
## 6182        0     2000      1.5     20.6       13        0      Yes     2000
## 4702        0     1786      1.0     16.9       21        0      Yes     1786
##      col 3443 col 3444 col 3445 col 3446 col 3447 col 3448 col 3449 col 3450
## 2992       44      5.4        0      Yes     2000     2000      5.4        0
## 7588       78      4.0        0      Yes     1614     1614      4.0        0
## 3994       93     21.6        4      Yes      569      569     21.6        0
## 8095       78      1.9        0       No      983      983      1.9        0
## 6182       39     20.6        0      Yes     2000     2000     20.6        0
## 4702       72     16.9        0      Yes     1786     1786     16.9        0
##      col 3451 col 3452 col 3453 col 3454   col 3455 col 3456 col 3457 col 3458
## 2992     2.79      5.4       15     17.9   4/4/2018      2.2       15        0
## 7588     0.00      4.0        3      7.6 13/10/2018      0.7        3        0
## 3994     0.06     21.6        9     22.8 16/05/2018      3.1        9        4
## 8095     0.00      1.9        6      5.5  3/11/2018      0.6        6        0
## 6182     2.46     20.6       13     36.9 15/08/2018      1.5       13        0
## 4702     0.00     16.9       21     22.2 14/06/2018      1.0       21        0
##      col 3459 col 3460 col 3461 col 3462 col 3463 col 3464 col 3465 col 3466
## 2992      2.2      5.4      Yes      Yes     2000   Spring     1209      2.2
## 7588      0.7      4.0      Yes      Yes     1614   Autumn      374      0.7
## 3994      3.1     21.6      Yes      Yes      569   Spring       97      3.1
## 8095      0.6      1.9       No       No      983   Autumn        0      0.6
## 6182      1.5     20.6      Yes      Yes     2000   Summer      591      1.5
## 4702      1.0     16.9      Yes      Yes     1786   Summer     1807      1.0
##      col 3467 col 3468 col 3469 col 3470 col 3471 col 3472 col 3473 col 3474
## 2992     2.79        0     2.79     1209        0     17.9     2.79        0
## 7588     0.00        0     0.00      374        0      7.6     0.00        0
## 3994     0.06        0     0.06       97        0     22.8     0.06        0
## 8095     0.00        0     0.00        0        0      5.5     0.00        0
## 6182     2.46        0     2.46      591        0     36.9     2.46        0
## 4702     0.00        0     0.00     1807        0     22.2     0.00        0
##      col 3475 col 3476   col 3477 col 3478 col 3479 col 3480 col 3481 col 3482
## 2992        0   Spring No Holiday      2.2       15     17.9   Spring     2.79
## 7588        0   Autumn No Holiday      0.7        3      7.6   Autumn     0.00
## 3994        4   Spring No Holiday      3.1        9     22.8   Spring     0.06
## 8095        0   Autumn No Holiday      0.6        6      5.5   Autumn     0.00
## 6182        0   Summer    Holiday      1.5       13     36.9   Summer     2.46
## 4702        0   Summer No Holiday      1.0       21     22.2   Summer     0.00
##      col 3483 col 3484 col 3485 col 3486 col 3487 col 3488 col 3489 col 3490
## 2992     2.79        0       44       15       15     17.9       15     2.79
## 7588     0.00        0       78        3        3      7.6        3     0.00
## 3994     0.06        0       93        9        9     22.8        9     0.06
## 8095     0.00        0       78        6        6      5.5        6     0.00
## 6182     2.46        0       39       13       13     36.9       13     2.46
## 4702     0.00        0       72       21       21     22.2       21     0.00
##      col 3491 col 3492 col 3493 col 3494 col 3495 col 3496 col 3497   col 3498
## 2992      Yes     2000     2.79   Spring     2000     2000   Spring No Holiday
## 7588      Yes     1614     0.00   Autumn     1614     1614   Autumn No Holiday
## 3994      Yes      569     0.06   Spring      569      569   Spring No Holiday
## 8095       No      983     0.00   Autumn      983      983   Autumn No Holiday
## 6182      Yes     2000     2.46   Summer     2000     2000   Summer    Holiday
## 4702      Yes     1786     0.00   Summer     1786     1786   Summer No Holiday
##      col 3499 col 3500 col 3501 col 3502 col 3503   col 3504 col 3505 col 3506
## 2992      5.4     2000        0   Spring        0   4/4/2018        0     2.79
## 7588      4.0     1614        0   Autumn        0 13/10/2018        0     0.00
## 3994     21.6      569        0   Spring        0 16/05/2018        4     0.06
## 8095      1.9      983        0   Autumn        0  3/11/2018        0     0.00
## 6182     20.6     2000        0   Summer        0 15/08/2018        0     2.46
## 4702     16.9     1786        0   Summer        0 14/06/2018        0     0.00
##      col 3507 col 3508   col 3509 col 3510   col 3511 col 3512 col 3513
## 2992      Yes      Yes   4/4/2018       15   4/4/2018      5.4     2000
## 7588      Yes      Yes 13/10/2018        3 13/10/2018      4.0     1614
## 3994      Yes      Yes 16/05/2018        9 16/05/2018     21.6      569
## 8095       No       No  3/11/2018        6  3/11/2018      1.9      983
## 6182      Yes      Yes 15/08/2018       13 15/08/2018     20.6     2000
## 4702      Yes      Yes 14/06/2018       21 14/06/2018     16.9     1786
##        col 3514 col 3515 col 3516 col 3517   col 3518 col 3519 col 3520
## 2992   4/4/2018      2.2       44     2.79   4/4/2018   Spring      5.4
## 7588 13/10/2018      0.7       78     0.00 13/10/2018   Autumn      4.0
## 3994 16/05/2018      3.1       93     0.06 16/05/2018   Spring     21.6
## 8095  3/11/2018      0.6       78     0.00  3/11/2018   Autumn      1.9
## 6182 15/08/2018      1.5       39     2.46 15/08/2018   Summer     20.6
## 4702 14/06/2018      1.0       72     0.00 14/06/2018   Summer     16.9
##      col 3521   col 3522   col 3523 col 3524 col 3525 col 3526 col 3527
## 2992        0   4/4/2018 No Holiday        0     1209       15     17.9
## 7588        0 13/10/2018 No Holiday        0      374        3      7.6
## 3994        0 16/05/2018 No Holiday        0       97        9     22.8
## 8095        0  3/11/2018 No Holiday        0        0        6      5.5
## 6182        0 15/08/2018    Holiday        0      591       13     36.9
## 4702        0 14/06/2018 No Holiday        0     1807       21     22.2
##      col 3528 col 3529   col 3530 col 3531 col 3532 col 3533 col 3534 col 3535
## 2992      5.4   Spring   4/4/2018       15      2.2       15        0       15
## 7588      4.0   Autumn 13/10/2018        3      0.7        3        0        3
## 3994     21.6   Spring 16/05/2018        9      3.1        9        0        9
## 8095      1.9   Autumn  3/11/2018        6      0.6        6        0        6
## 6182     20.6   Summer 15/08/2018       13      1.5       13        0       13
## 4702     16.9   Summer 14/06/2018       21      1.0       21        0       21
##      col 3536 col 3537 col 3538 col 3539 col 3540 col 3541 col 3542   col 3543
## 2992      Yes   Spring       44       44      5.4      5.4      5.4   4/4/2018
## 7588      Yes   Autumn       78       78      4.0      4.0      4.0 13/10/2018
## 3994      Yes   Spring       93       93     21.6     21.6     21.6 16/05/2018
## 8095       No   Autumn       78       78      1.9      1.9      1.9  3/11/2018
## 6182      Yes   Summer       39       39     20.6     20.6     20.6 15/08/2018
## 4702      Yes   Summer       72       72     16.9     16.9     16.9 14/06/2018
##      col 3544 col 3545 col 3546 col 3547 col 3548 col 3549   col 3550 col 3551
## 2992       15     2.79       44     2.79     17.9     17.9 No Holiday     17.9
## 7588        3     0.00       78     0.00      7.6      7.6 No Holiday      7.6
## 3994        9     0.06       93     0.06     22.8     22.8 No Holiday     22.8
## 8095        6     0.00       78     0.00      5.5      5.5 No Holiday      5.5
## 6182       13     2.46       39     2.46     36.9     36.9    Holiday     36.9
## 4702       21     0.00       72     0.00     22.2     22.2 No Holiday     22.2
##      col 3552 col 3553 col 3554 col 3555 col 3556 col 3557   col 3558 col 3559
## 2992       15      5.4       44     17.9       15      5.4 No Holiday       44
## 7588        3      4.0       78      7.6        3      4.0 No Holiday       78
## 3994        9     21.6       93     22.8        9     21.6 No Holiday       93
## 8095        6      1.9       78      5.5        6      1.9 No Holiday       78
## 6182       13     20.6       39     36.9       13     20.6    Holiday       39
## 4702       21     16.9       72     22.2       21     16.9 No Holiday       72
##      col 3560 col 3561 col 3562 col 3563 col 3564 col 3565 col 3566 col 3567
## 2992     17.9      Yes     1209       15      2.2     2000      5.4        0
## 7588      7.6      Yes      374        3      0.7     1614      4.0        0
## 3994     22.8      Yes       97        9      3.1      569     21.6        4
## 8095      5.5       No        0        6      0.6      983      1.9        0
## 6182     36.9      Yes      591       13      1.5     2000     20.6        0
## 4702     22.2      Yes     1807       21      1.0     1786     16.9        0
##      col 3568 col 3569 col 3570 col 3571 col 3572 col 3573 col 3574 col 3575
## 2992   Spring        0        0       44       15       15      2.2     2.79
## 7588   Autumn        0        0       78        3        3      0.7     0.00
## 3994   Spring        4        4       93        9        9      3.1     0.06
## 8095   Autumn        0        0       78        6        6      0.6     0.00
## 6182   Summer        0        0       39       13       13      1.5     2.46
## 4702   Summer        0        0       72       21       21      1.0     0.00
##      col 3576 col 3577   col 3578   col 3579 col 3580 col 3581 col 3582
## 2992     2.79     2000 No Holiday   4/4/2018      2.2     1209     2.79
## 7588     0.00     1614 No Holiday 13/10/2018      0.7      374     0.00
## 3994     0.06      569 No Holiday 16/05/2018      3.1       97     0.06
## 8095     0.00      983 No Holiday  3/11/2018      0.6        0     0.00
## 6182     2.46     2000    Holiday 15/08/2018      1.5      591     2.46
## 4702     0.00     1786 No Holiday 14/06/2018      1.0     1807     0.00
##      col 3583 col 3584   col 3585 col 3586 col 3587 col 3588 col 3589 col 3590
## 2992     2000      Yes   4/4/2018   Spring       15     2.79       44      5.4
## 7588     1614      Yes 13/10/2018   Autumn        3     0.00       78      4.0
## 3994      569      Yes 16/05/2018   Spring        9     0.06       93     21.6
## 8095      983       No  3/11/2018   Autumn        6     0.00       78      1.9
## 6182     2000      Yes 15/08/2018   Summer       13     2.46       39     20.6
## 4702     1786      Yes 14/06/2018   Summer       21     0.00       72     16.9
##      col 3591 col 3592 col 3593 col 3594 col 3595   col 3596   col 3597
## 2992       44      Yes      Yes     1209      5.4 No Holiday No Holiday
## 7588       78      Yes      Yes      374      4.0 No Holiday No Holiday
## 3994       93      Yes      Yes       97     21.6 No Holiday No Holiday
## 8095       78       No       No        0      1.9 No Holiday No Holiday
## 6182       39      Yes      Yes      591     20.6    Holiday    Holiday
## 4702       72      Yes      Yes     1807     16.9 No Holiday No Holiday
##      col 3598 col 3599 col 3600 col 3601 col 3602 col 3603 col 3604 col 3605
## 2992       15      2.2     2000     2000      2.2     2000     17.9     17.9
## 7588        3      0.7     1614     1614      0.7     1614      7.6      7.6
## 3994        9      3.1      569      569      3.1      569     22.8     22.8
## 8095        6      0.6      983      983      0.6      983      5.5      5.5
## 6182       13      1.5     2000     2000      1.5     2000     36.9     36.9
## 4702       21      1.0     1786     1786      1.0     1786     22.2     22.2
##        col 3606 col 3607 col 3608 col 3609 col 3610 col 3611   col 3612
## 2992   4/4/2018       15     2000      5.4     2.79     17.9   4/4/2018
## 7588 13/10/2018        3     1614      4.0     0.00      7.6 13/10/2018
## 3994 16/05/2018        9      569     21.6     0.06     22.8 16/05/2018
## 8095  3/11/2018        6      983      1.9     0.00      5.5  3/11/2018
## 6182 15/08/2018       13     2000     20.6     2.46     36.9 15/08/2018
## 4702 14/06/2018       21     1786     16.9     0.00     22.2 14/06/2018
##        col 3613 col 3614 col 3615 col 3616   col 3617 col 3618 col 3619
## 2992 No Holiday      Yes     1209     2.79 No Holiday      2.2      2.2
## 7588 No Holiday      Yes      374     0.00 No Holiday      0.7      0.7
## 3994 No Holiday      Yes       97     0.06 No Holiday      3.1      3.1
## 8095 No Holiday       No        0     0.00 No Holiday      0.6      0.6
## 6182    Holiday      Yes      591     2.46    Holiday      1.5      1.5
## 4702 No Holiday      Yes     1807     0.00 No Holiday      1.0      1.0
##      col 3620 col 3621   col 3622 col 3623 col 3624 col 3625 col 3626 col 3627
## 2992     2.79     2.79 No Holiday     2000     2000        0      2.2       15
## 7588     0.00     0.00 No Holiday     1614     1614        0      0.7        3
## 3994     0.06     0.06 No Holiday      569      569        0      3.1        9
## 8095     0.00     0.00 No Holiday      983      983        0      0.6        6
## 6182     2.46     2.46    Holiday     2000     2000        0      1.5       13
## 4702     0.00     0.00 No Holiday     1786     1786        0      1.0       21
##        col 3628 col 3629 col 3630   col 3631 col 3632   col 3633 col 3634
## 2992 No Holiday       44   Spring No Holiday   Spring   4/4/2018      5.4
## 7588 No Holiday       78   Autumn No Holiday   Autumn 13/10/2018      4.0
## 3994 No Holiday       93   Spring No Holiday   Spring 16/05/2018     21.6
## 8095 No Holiday       78   Autumn No Holiday   Autumn  3/11/2018      1.9
## 6182    Holiday       39   Summer    Holiday   Summer 15/08/2018     20.6
## 4702 No Holiday       72   Summer No Holiday   Summer 14/06/2018     16.9
##      col 3635 col 3636 col 3637   col 3638 col 3639 col 3640 col 3641 col 3642
## 2992     1209      5.4        0 No Holiday      2.2      2.2      Yes     2.79
## 7588      374      4.0        0 No Holiday      0.7      0.7      Yes     0.00
## 3994       97     21.6        4 No Holiday      3.1      3.1      Yes     0.06
## 8095        0      1.9        0 No Holiday      0.6      0.6       No     0.00
## 6182      591     20.6        0    Holiday      1.5      1.5      Yes     2.46
## 4702     1807     16.9        0 No Holiday      1.0      1.0      Yes     0.00
##      col 3643 col 3644 col 3645   col 3646 col 3647 col 3648 col 3649 col 3650
## 2992      Yes        0      Yes   4/4/2018        0      5.4      5.4     17.9
## 7588      Yes        0      Yes 13/10/2018        0      4.0      4.0      7.6
## 3994      Yes        4      Yes 16/05/2018        4     21.6     21.6     22.8
## 8095       No        0       No  3/11/2018        0      1.9      1.9      5.5
## 6182      Yes        0      Yes 15/08/2018        0     20.6     20.6     36.9
## 4702      Yes        0      Yes 14/06/2018        0     16.9     16.9     22.2
##      col 3651 col 3652 col 3653 col 3654 col 3655 col 3656 col 3657 col 3658
## 2992      2.2        0      2.2      2.2      5.4     2.79     2000       15
## 7588      0.7        0      0.7      0.7      4.0     0.00     1614        3
## 3994      3.1        4      3.1      3.1     21.6     0.06      569        9
## 8095      0.6        0      0.6      0.6      1.9     0.00      983        6
## 6182      1.5        0      1.5      1.5     20.6     2.46     2000       13
## 4702      1.0        0      1.0      1.0     16.9     0.00     1786       21
##      col 3659   col 3660 col 3661 col 3662 col 3663 col 3664   col 3665
## 2992      5.4 No Holiday       44   Spring       15        0 No Holiday
## 7588      4.0 No Holiday       78   Autumn        3        0 No Holiday
## 3994     21.6 No Holiday       93   Spring        9        4 No Holiday
## 8095      1.9 No Holiday       78   Autumn        6        0 No Holiday
## 6182     20.6    Holiday       39   Summer       13        0    Holiday
## 4702     16.9 No Holiday       72   Summer       21        0 No Holiday
##      col 3666 col 3667 col 3668 col 3669 col 3670 col 3671 col 3672 col 3673
## 2992      Yes     1209       15       15      5.4     1209        0       44
## 7588      Yes      374        3        3      4.0      374        0       78
## 3994      Yes       97        9        9     21.6       97        0       93
## 8095       No        0        6        6      1.9        0        0       78
## 6182      Yes      591       13       13     20.6      591        0       39
## 4702      Yes     1807       21       21     16.9     1807        0       72
##      col 3674 col 3675 col 3676 col 3677 col 3678 col 3679 col 3680 col 3681
## 2992       15   Spring     1209     17.9     1209        0   Spring      5.4
## 7588        3   Autumn      374      7.6      374        0   Autumn      4.0
## 3994        9   Spring       97     22.8       97        0   Spring     21.6
## 8095        6   Autumn        0      5.5        0        0   Autumn      1.9
## 6182       13   Summer      591     36.9      591        0   Summer     20.6
## 4702       21   Summer     1807     22.2     1807        0   Summer     16.9
##      col 3682 col 3683 col 3684 col 3685 col 3686 col 3687 col 3688 col 3689
## 2992      5.4       15      Yes        0     2.79        0        0   Spring
## 7588      4.0        3      Yes        0     0.00        0        0   Autumn
## 3994     21.6        9      Yes        0     0.06        0        0   Spring
## 8095      1.9        6       No        0     0.00        0        0   Autumn
## 6182     20.6       13      Yes        0     2.46        0        0   Summer
## 4702     16.9       21      Yes        0     0.00        0        0   Summer
##      col 3690 col 3691 col 3692   col 3693 col 3694 col 3695 col 3696 col 3697
## 2992     2.79      2.2      5.4   4/4/2018      2.2        0        0       15
## 7588     0.00      0.7      4.0 13/10/2018      0.7        0        0        3
## 3994     0.06      3.1     21.6 16/05/2018      3.1        0        0        9
## 8095     0.00      0.6      1.9  3/11/2018      0.6        0        0        6
## 6182     2.46      1.5     20.6 15/08/2018      1.5        0        0       13
## 4702     0.00      1.0     16.9 14/06/2018      1.0        0        0       21
##      col 3698 col 3699 col 3700 col 3701 col 3702 col 3703 col 3704 col 3705
## 2992     17.9       44      2.2      5.4      2.2     2.79       15      Yes
## 7588      7.6       78      0.7      4.0      0.7     0.00        3      Yes
## 3994     22.8       93      3.1     21.6      3.1     0.06        9      Yes
## 8095      5.5       78      0.6      1.9      0.6     0.00        6       No
## 6182     36.9       39      1.5     20.6      1.5     2.46       13      Yes
## 4702     22.2       72      1.0     16.9      1.0     0.00       21      Yes
##      col 3706 col 3707 col 3708 col 3709 col 3710 col 3711   col 3712 col 3713
## 2992       44     17.9     2000     2000     2.79      Yes   4/4/2018       15
## 7588       78      7.6     1614     1614     0.00      Yes 13/10/2018        3
## 3994       93     22.8      569      569     0.06      Yes 16/05/2018        9
## 8095       78      5.5      983      983     0.00       No  3/11/2018        6
## 6182       39     36.9     2000     2000     2.46      Yes 15/08/2018       13
## 4702       72     22.2     1786     1786     0.00      Yes 14/06/2018       21
##      col 3714 col 3715 col 3716 col 3717 col 3718 col 3719 col 3720   col 3721
## 2992     2.79   Spring      Yes       44       15     2000   Spring   4/4/2018
## 7588     0.00   Autumn      Yes       78        3     1614   Autumn 13/10/2018
## 3994     0.06   Spring      Yes       93        9      569   Spring 16/05/2018
## 8095     0.00   Autumn       No       78        6      983   Autumn  3/11/2018
## 6182     2.46   Summer      Yes       39       13     2000   Summer 15/08/2018
## 4702     0.00   Summer      Yes       72       21     1786   Summer 14/06/2018
##      col 3722 col 3723 col 3724 col 3725 col 3726 col 3727 col 3728 col 3729
## 2992     1209     2.79     1209   Spring       44       44     1209     1209
## 7588      374     0.00      374   Autumn       78       78      374      374
## 3994       97     0.06       97   Spring       93       93       97       97
## 8095        0     0.00        0   Autumn       78       78        0        0
## 6182      591     2.46      591   Summer       39       39      591      591
## 4702     1807     0.00     1807   Summer       72       72     1807     1807
##      col 3730 col 3731 col 3732 col 3733 col 3734   col 3735 col 3736 col 3737
## 2992     17.9        0     1209     1209     17.9 No Holiday     2000      2.2
## 7588      7.6        0      374      374      7.6 No Holiday     1614      0.7
## 3994     22.8        0       97       97     22.8 No Holiday      569      3.1
## 8095      5.5        0        0        0      5.5 No Holiday      983      0.6
## 6182     36.9        0      591      591     36.9    Holiday     2000      1.5
## 4702     22.2        0     1807     1807     22.2 No Holiday     1786      1.0
##        col 3738 col 3739 col 3740 col 3741 col 3742 col 3743   col 3744
## 2992   4/4/2018     2000       15      2.2     1209     1209 No Holiday
## 7588 13/10/2018     1614        3      0.7      374      374 No Holiday
## 3994 16/05/2018      569        9      3.1       97       97 No Holiday
## 8095  3/11/2018      983        6      0.6        0        0 No Holiday
## 6182 15/08/2018     2000       13      1.5      591      591    Holiday
## 4702 14/06/2018     1786       21      1.0     1807     1807 No Holiday
##      col 3745   col 3746 col 3747 col 3748 col 3749   col 3750 col 3751
## 2992     2000 No Holiday   Spring       15     17.9 No Holiday     2.79
## 7588     1614 No Holiday   Autumn        3      7.6 No Holiday     0.00
## 3994      569 No Holiday   Spring        9     22.8 No Holiday     0.06
## 8095      983 No Holiday   Autumn        6      5.5 No Holiday     0.00
## 6182     2000    Holiday   Summer       13     36.9    Holiday     2.46
## 4702     1786 No Holiday   Summer       21     22.2 No Holiday     0.00
##      col 3752   col 3753 col 3754 col 3755 col 3756 col 3757 col 3758 col 3759
## 2992        0   4/4/2018      2.2      Yes        0      Yes        0      5.4
## 7588        0 13/10/2018      0.7      Yes        0      Yes        0      4.0
## 3994        0 16/05/2018      3.1      Yes        4      Yes        4     21.6
## 8095        0  3/11/2018      0.6       No        0       No        0      1.9
## 6182        0 15/08/2018      1.5      Yes        0      Yes        0     20.6
## 4702        0 14/06/2018      1.0      Yes        0      Yes        0     16.9
##      col 3760 col 3761 col 3762 col 3763 col 3764 col 3765 col 3766   col 3767
## 2992     17.9      2.2        0      5.4      Yes     17.9       15 No Holiday
## 7588      7.6      0.7        0      4.0      Yes      7.6        3 No Holiday
## 3994     22.8      3.1        4     21.6      Yes     22.8        9 No Holiday
## 8095      5.5      0.6        0      1.9       No      5.5        6 No Holiday
## 6182     36.9      1.5        0     20.6      Yes     36.9       13    Holiday
## 4702     22.2      1.0        0     16.9      Yes     22.2       21 No Holiday
##      col 3768   col 3769 col 3770 col 3771 col 3772 col 3773 col 3774 col 3775
## 2992     1209   4/4/2018     17.9      Yes   Spring     1209       44        0
## 7588      374 13/10/2018      7.6      Yes   Autumn      374       78        0
## 3994       97 16/05/2018     22.8      Yes   Spring       97       93        0
## 8095        0  3/11/2018      5.5       No   Autumn        0       78        0
## 6182      591 15/08/2018     36.9      Yes   Summer      591       39        0
## 4702     1807 14/06/2018     22.2      Yes   Summer     1807       72        0
##      col 3776 col 3777 col 3778 col 3779   col 3780 col 3781 col 3782 col 3783
## 2992      2.2     2000        0       44   4/4/2018       44     1209        0
## 7588      0.7     1614        0       78 13/10/2018       78      374        0
## 3994      3.1      569        0       93 16/05/2018       93       97        0
## 8095      0.6      983        0       78  3/11/2018       78        0        0
## 6182      1.5     2000        0       39 15/08/2018       39      591        0
## 4702      1.0     1786        0       72 14/06/2018       72     1807        0
##      col 3784 col 3785 col 3786 col 3787 col 3788 col 3789 col 3790 col 3791
## 2992     2000   Spring   Spring        0       15        0     17.9      Yes
## 7588     1614   Autumn   Autumn        0        3        0      7.6      Yes
## 3994      569   Spring   Spring        4        9        4     22.8      Yes
## 8095      983   Autumn   Autumn        0        6        0      5.5       No
## 6182     2000   Summer   Summer        0       13        0     36.9      Yes
## 4702     1786   Summer   Summer        0       21        0     22.2      Yes
##      col 3792 col 3793 col 3794   col 3795   col 3796 col 3797 col 3798
## 2992      2.2        0       44 No Holiday No Holiday       15        0
## 7588      0.7        0       78 No Holiday No Holiday        3        0
## 3994      3.1        4       93 No Holiday No Holiday        9        4
## 8095      0.6        0       78 No Holiday No Holiday        6        0
## 6182      1.5        0       39    Holiday    Holiday       13        0
## 4702      1.0        0       72 No Holiday No Holiday       21        0
##      col 3799   col 3800 col 3801 col 3802   col 3803 col 3804 col 3805
## 2992        0   4/4/2018        0     2000   4/4/2018       15      2.2
## 7588        0 13/10/2018        0     1614 13/10/2018        3      0.7
## 3994        0 16/05/2018        4      569 16/05/2018        9      3.1
## 8095        0  3/11/2018        0      983  3/11/2018        6      0.6
## 6182        0 15/08/2018        0     2000 15/08/2018       13      1.5
## 4702        0 14/06/2018        0     1786 14/06/2018       21      1.0
##      col 3806 col 3807   col 3808   col 3809 col 3810 col 3811 col 3812
## 2992     2000      Yes   4/4/2018 No Holiday     2000     2000     1209
## 7588     1614      Yes 13/10/2018 No Holiday     1614     1614      374
## 3994      569      Yes 16/05/2018 No Holiday      569      569       97
## 8095      983       No  3/11/2018 No Holiday      983      983        0
## 6182     2000      Yes 15/08/2018    Holiday     2000     2000      591
## 4702     1786      Yes 14/06/2018 No Holiday     1786     1786     1807
##      col 3813 col 3814 col 3815 col 3816 col 3817 col 3818 col 3819   col 3820
## 2992   Spring       15       44        0        0     1209       44 No Holiday
## 7588   Autumn        3       78        0        0      374       78 No Holiday
## 3994   Spring        9       93        4        0       97       93 No Holiday
## 8095   Autumn        6       78        0        0        0       78 No Holiday
## 6182   Summer       13       39        0        0      591       39    Holiday
## 4702   Summer       21       72        0        0     1807       72 No Holiday
##      col 3821 col 3822 col 3823   col 3824   col 3825 col 3826 col 3827
## 2992      2.2     2000        0 No Holiday No Holiday   Spring      2.2
## 7588      0.7     1614        0 No Holiday No Holiday   Autumn      0.7
## 3994      3.1      569        0 No Holiday No Holiday   Spring      3.1
## 8095      0.6      983        0 No Holiday No Holiday   Autumn      0.6
## 6182      1.5     2000        0    Holiday    Holiday   Summer      1.5
## 4702      1.0     1786        0 No Holiday No Holiday   Summer      1.0
##      col 3828 col 3829 col 3830 col 3831 col 3832 col 3833 col 3834 col 3835
## 2992     17.9       15     17.9        0      5.4      Yes     17.9      Yes
## 7588      7.6        3      7.6        0      4.0      Yes      7.6      Yes
## 3994     22.8        9     22.8        0     21.6      Yes     22.8      Yes
## 8095      5.5        6      5.5        0      1.9       No      5.5       No
## 6182     36.9       13     36.9        0     20.6      Yes     36.9      Yes
## 4702     22.2       21     22.2        0     16.9      Yes     22.2      Yes
##      col 3836 col 3837   col 3838 col 3839 col 3840 col 3841 col 3842 col 3843
## 2992      2.2      Yes No Holiday      5.4   Spring     2.79     17.9       15
## 7588      0.7      Yes No Holiday      4.0   Autumn     0.00      7.6        3
## 3994      3.1      Yes No Holiday     21.6   Spring     0.06     22.8        9
## 8095      0.6       No No Holiday      1.9   Autumn     0.00      5.5        6
## 6182      1.5      Yes    Holiday     20.6   Summer     2.46     36.9       13
## 4702      1.0      Yes No Holiday     16.9   Summer     0.00     22.2       21
##      col 3844   col 3845 col 3846 col 3847   col 3848 col 3849 col 3850
## 2992      5.4 No Holiday      5.4     2.79   4/4/2018       44     17.9
## 7588      4.0 No Holiday      4.0     0.00 13/10/2018       78      7.6
## 3994     21.6 No Holiday     21.6     0.06 16/05/2018       93     22.8
## 8095      1.9 No Holiday      1.9     0.00  3/11/2018       78      5.5
## 6182     20.6    Holiday     20.6     2.46 15/08/2018       39     36.9
## 4702     16.9 No Holiday     16.9     0.00 14/06/2018       72     22.2
##      col 3851 col 3852 col 3853 col 3854 col 3855 col 3856 col 3857 col 3858
## 2992     1209        0     2.79     2.79   Spring     2.79       44   Spring
## 7588      374        0     0.00     0.00   Autumn     0.00       78   Autumn
## 3994       97        4     0.06     0.06   Spring     0.06       93   Spring
## 8095        0        0     0.00     0.00   Autumn     0.00       78   Autumn
## 6182      591        0     2.46     2.46   Summer     2.46       39   Summer
## 4702     1807        0     0.00     0.00   Summer     0.00       72   Summer
##        col 3859 col 3860 col 3861 col 3862 col 3863 col 3864 col 3865 col 3866
## 2992   4/4/2018      Yes     2.79     17.9     17.9     17.9       44        0
## 7588 13/10/2018      Yes     0.00      7.6      7.6      7.6       78        0
## 3994 16/05/2018      Yes     0.06     22.8     22.8     22.8       93        0
## 8095  3/11/2018       No     0.00      5.5      5.5      5.5       78        0
## 6182 15/08/2018      Yes     2.46     36.9     36.9     36.9       39        0
## 4702 14/06/2018      Yes     0.00     22.2     22.2     22.2       72        0
##      col 3867 col 3868 col 3869 col 3870 col 3871 col 3872 col 3873   col 3874
## 2992      5.4        0     2000   Spring      2.2     2.79      2.2   4/4/2018
## 7588      4.0        0     1614   Autumn      0.7     0.00      0.7 13/10/2018
## 3994     21.6        0      569   Spring      3.1     0.06      3.1 16/05/2018
## 8095      1.9        0      983   Autumn      0.6     0.00      0.6  3/11/2018
## 6182     20.6        0     2000   Summer      1.5     2.46      1.5 15/08/2018
## 4702     16.9        0     1786   Summer      1.0     0.00      1.0 14/06/2018
##      col 3875 col 3876 col 3877 col 3878 col 3879 col 3880 col 3881 col 3882
## 2992       44       15   Spring        0   Spring       44        0     17.9
## 7588       78        3   Autumn        0   Autumn       78        0      7.6
## 3994       93        9   Spring        0   Spring       93        0     22.8
## 8095       78        6   Autumn        0   Autumn       78        0      5.5
## 6182       39       13   Summer        0   Summer       39        0     36.9
## 4702       72       21   Summer        0   Summer       72        0     22.2
##      col 3883 col 3884   col 3885 col 3886 col 3887   col 3888   col 3889
## 2992       15     17.9 No Holiday      Yes   Spring   4/4/2018   4/4/2018
## 7588        3      7.6 No Holiday      Yes   Autumn 13/10/2018 13/10/2018
## 3994        9     22.8 No Holiday      Yes   Spring 16/05/2018 16/05/2018
## 8095        6      5.5 No Holiday       No   Autumn  3/11/2018  3/11/2018
## 6182       13     36.9    Holiday      Yes   Summer 15/08/2018 15/08/2018
## 4702       21     22.2 No Holiday      Yes   Summer 14/06/2018 14/06/2018
##      col 3890 col 3891 col 3892 col 3893 col 3894 col 3895 col 3896 col 3897
## 2992       44       15      2.2     2000      2.2       44       44      5.4
## 7588       78        3      0.7     1614      0.7       78       78      4.0
## 3994       93        9      3.1      569      3.1       93       93     21.6
## 8095       78        6      0.6      983      0.6       78       78      1.9
## 6182       39       13      1.5     2000      1.5       39       39     20.6
## 4702       72       21      1.0     1786      1.0       72       72     16.9
##      col 3898 col 3899 col 3900 col 3901 col 3902 col 3903 col 3904 col 3905
## 2992     2.79      5.4       15      5.4     2000       15       15      5.4
## 7588     0.00      4.0        3      4.0     1614        3        3      4.0
## 3994     0.06     21.6        9     21.6      569        9        9     21.6
## 8095     0.00      1.9        6      1.9      983        6        6      1.9
## 6182     2.46     20.6       13     20.6     2000       13       13     20.6
## 4702     0.00     16.9       21     16.9     1786       21       21     16.9
##        col 3906 col 3907 col 3908 col 3909 col 3910   col 3911 col 3912
## 2992   4/4/2018     2000     1209      2.2        0   4/4/2018     1209
## 7588 13/10/2018     1614      374      0.7        0 13/10/2018      374
## 3994 16/05/2018      569       97      3.1        0 16/05/2018       97
## 8095  3/11/2018      983        0      0.6        0  3/11/2018        0
## 6182 15/08/2018     2000      591      1.5        0 15/08/2018      591
## 4702 14/06/2018     1786     1807      1.0        0 14/06/2018     1807
##      col 3913 col 3914 col 3915 col 3916 col 3917 col 3918 col 3919 col 3920
## 2992     17.9     17.9      2.2      5.4     17.9       15       44       15
## 7588      7.6      7.6      0.7      4.0      7.6        3       78        3
## 3994     22.8     22.8      3.1     21.6     22.8        9       93        9
## 8095      5.5      5.5      0.6      1.9      5.5        6       78        6
## 6182     36.9     36.9      1.5     20.6     36.9       13       39       13
## 4702     22.2     22.2      1.0     16.9     22.2       21       72       21
##      col 3921 col 3922 col 3923 col 3924   col 3925 col 3926 col 3927 col 3928
## 2992     17.9      Yes       44       15   4/4/2018       44   Spring      2.2
## 7588      7.6      Yes       78        3 13/10/2018       78   Autumn      0.7
## 3994     22.8      Yes       93        9 16/05/2018       93   Spring      3.1
## 8095      5.5       No       78        6  3/11/2018       78   Autumn      0.6
## 6182     36.9      Yes       39       13 15/08/2018       39   Summer      1.5
## 4702     22.2      Yes       72       21 14/06/2018       72   Summer      1.0
##      col 3929   col 3930 col 3931 col 3932 col 3933 col 3934 col 3935 col 3936
## 2992   Spring No Holiday      Yes     17.9   Spring     1209      5.4     1209
## 7588   Autumn No Holiday      Yes      7.6   Autumn      374      4.0      374
## 3994   Spring No Holiday      Yes     22.8   Spring       97     21.6       97
## 8095   Autumn No Holiday       No      5.5   Autumn        0      1.9        0
## 6182   Summer    Holiday      Yes     36.9   Summer      591     20.6      591
## 4702   Summer No Holiday      Yes     22.2   Summer     1807     16.9     1807
##      col 3937 col 3938 col 3939 col 3940 col 3941 col 3942 col 3943   col 3944
## 2992   Spring        0     2000      Yes     2.79     17.9     17.9   4/4/2018
## 7588   Autumn        0     1614      Yes     0.00      7.6      7.6 13/10/2018
## 3994   Spring        0      569      Yes     0.06     22.8     22.8 16/05/2018
## 8095   Autumn        0      983       No     0.00      5.5      5.5  3/11/2018
## 6182   Summer        0     2000      Yes     2.46     36.9     36.9 15/08/2018
## 4702   Summer        0     1786      Yes     0.00     22.2     22.2 14/06/2018
##      col 3945 col 3946 col 3947 col 3948 col 3949 col 3950 col 3951 col 3952
## 2992   Spring     17.9       44     2000        0       44      Yes      5.4
## 7588   Autumn      7.6       78     1614        0       78      Yes      4.0
## 3994   Spring     22.8       93      569        4       93      Yes     21.6
## 8095   Autumn      5.5       78      983        0       78       No      1.9
## 6182   Summer     36.9       39     2000        0       39      Yes     20.6
## 4702   Summer     22.2       72     1786        0       72      Yes     16.9
##        col 3953 col 3954 col 3955 col 3956   col 3957 col 3958 col 3959
## 2992   4/4/2018      5.4       44      5.4   4/4/2018        0     17.9
## 7588 13/10/2018      4.0       78      4.0 13/10/2018        0      7.6
## 3994 16/05/2018     21.6       93     21.6 16/05/2018        0     22.8
## 8095  3/11/2018      1.9       78      1.9  3/11/2018        0      5.5
## 6182 15/08/2018     20.6       39     20.6 15/08/2018        0     36.9
## 4702 14/06/2018     16.9       72     16.9 14/06/2018        0     22.2
##      col 3960 col 3961 col 3962 col 3963 col 3964 col 3965   col 3966 col 3967
## 2992       44      5.4        0      2.2        0     17.9 No Holiday      5.4
## 7588       78      4.0        0      0.7        0      7.6 No Holiday      4.0
## 3994       93     21.6        4      3.1        0     22.8 No Holiday     21.6
## 8095       78      1.9        0      0.6        0      5.5 No Holiday      1.9
## 6182       39     20.6        0      1.5        0     36.9    Holiday     20.6
## 4702       72     16.9        0      1.0        0     22.2 No Holiday     16.9
##      col 3968 col 3969 col 3970 col 3971 col 3972 col 3973 col 3974 col 3975
## 2992     2.79        0      Yes   Spring     17.9      Yes       44     17.9
## 7588     0.00        0      Yes   Autumn      7.6      Yes       78      7.6
## 3994     0.06        0      Yes   Spring     22.8      Yes       93     22.8
## 8095     0.00        0       No   Autumn      5.5       No       78      5.5
## 6182     2.46        0      Yes   Summer     36.9      Yes       39     36.9
## 4702     0.00        0      Yes   Summer     22.2      Yes       72     22.2
##      col 3976 col 3977 col 3978 col 3979 col 3980   col 3981   col 3982
## 2992     2000        0     2000     17.9   Spring   4/4/2018   4/4/2018
## 7588     1614        0     1614      7.6   Autumn 13/10/2018 13/10/2018
## 3994      569        0      569     22.8   Spring 16/05/2018 16/05/2018
## 8095      983        0      983      5.5   Autumn  3/11/2018  3/11/2018
## 6182     2000        0     2000     36.9   Summer 15/08/2018 15/08/2018
## 4702     1786        0     1786     22.2   Summer 14/06/2018 14/06/2018
##      col 3983 col 3984 col 3985 col 3986 col 3987 col 3988 col 3989 col 3990
## 2992     2000       15        0     2000     2000        0     2000      Yes
## 7588     1614        3        0     1614     1614        0     1614      Yes
## 3994      569        9        0      569      569        0      569      Yes
## 8095      983        6        0      983      983        0      983       No
## 6182     2000       13        0     2000     2000        0     2000      Yes
## 4702     1786       21        0     1786     1786        0     1786      Yes
##      col 3991 col 3992 col 3993 col 3994   col 3995 col 3996 col 3997
## 2992       15     2.79     1209     2000 No Holiday   Spring        0
## 7588        3     0.00      374     1614 No Holiday   Autumn        0
## 3994        9     0.06       97      569 No Holiday   Spring        4
## 8095        6     0.00        0      983 No Holiday   Autumn        0
## 6182       13     2.46      591     2000    Holiday   Summer        0
## 4702       21     0.00     1807     1786 No Holiday   Summer        0
##        col 3998 col 3999 col 4000 col 4001   col 4002 col 4003 col 4004
## 2992 No Holiday   Spring     2000     17.9   4/4/2018      Yes     17.9
## 7588 No Holiday   Autumn     1614      7.6 13/10/2018      Yes      7.6
## 3994 No Holiday   Spring      569     22.8 16/05/2018      Yes     22.8
## 8095 No Holiday   Autumn      983      5.5  3/11/2018       No      5.5
## 6182    Holiday   Summer     2000     36.9 15/08/2018      Yes     36.9
## 4702 No Holiday   Summer     1786     22.2 14/06/2018      Yes     22.2
##        col 4005   col 4006 col 4007 col 4008 col 4009 col 4010 col 4011
## 2992   4/4/2018 No Holiday     17.9     17.9        0        0       44
## 7588 13/10/2018 No Holiday      7.6      7.6        0        0       78
## 3994 16/05/2018 No Holiday     22.8     22.8        0        4       93
## 8095  3/11/2018 No Holiday      5.5      5.5        0        0       78
## 6182 15/08/2018    Holiday     36.9     36.9        0        0       39
## 4702 14/06/2018 No Holiday     22.2     22.2        0        0       72
##        col 4012 col 4013 col 4014   col 4015   col 4016 col 4017   col 4018
## 2992   4/4/2018        0     17.9   4/4/2018   4/4/2018      2.2 No Holiday
## 7588 13/10/2018        0      7.6 13/10/2018 13/10/2018      0.7 No Holiday
## 3994 16/05/2018        0     22.8 16/05/2018 16/05/2018      3.1 No Holiday
## 8095  3/11/2018        0      5.5  3/11/2018  3/11/2018      0.6 No Holiday
## 6182 15/08/2018        0     36.9 15/08/2018 15/08/2018      1.5    Holiday
## 4702 14/06/2018        0     22.2 14/06/2018 14/06/2018      1.0 No Holiday
##        col 4019 col 4020 col 4021 col 4022   col 4023 col 4024 col 4025
## 2992   4/4/2018       44     17.9       15   4/4/2018        0     2.79
## 7588 13/10/2018       78      7.6        3 13/10/2018        0     0.00
## 3994 16/05/2018       93     22.8        9 16/05/2018        0     0.06
## 8095  3/11/2018       78      5.5        6  3/11/2018        0     0.00
## 6182 15/08/2018       39     36.9       13 15/08/2018        0     2.46
## 4702 14/06/2018       72     22.2       21 14/06/2018        0     0.00
##      col 4026 col 4027 col 4028 col 4029 col 4030 col 4031 col 4032   col 4033
## 2992        0       15     2.79     2000        0      Yes       44 No Holiday
## 7588        0        3     0.00     1614        0      Yes       78 No Holiday
## 3994        4        9     0.06      569        0      Yes       93 No Holiday
## 8095        0        6     0.00      983        0       No       78 No Holiday
## 6182        0       13     2.46     2000        0      Yes       39    Holiday
## 4702        0       21     0.00     1786        0      Yes       72 No Holiday
##      col 4034 col 4035 col 4036 col 4037   col 4038   col 4039 col 4040
## 2992      2.2   Spring      Yes       44 No Holiday   4/4/2018     17.9
## 7588      0.7   Autumn      Yes       78 No Holiday 13/10/2018      7.6
## 3994      3.1   Spring      Yes       93 No Holiday 16/05/2018     22.8
## 8095      0.6   Autumn       No       78 No Holiday  3/11/2018      5.5
## 6182      1.5   Summer      Yes       39    Holiday 15/08/2018     36.9
## 4702      1.0   Summer      Yes       72 No Holiday 14/06/2018     22.2
##      col 4041 col 4042 col 4043   col 4044   col 4045 col 4046 col 4047
## 2992   Spring     17.9       15   4/4/2018 No Holiday     17.9        0
## 7588   Autumn      7.6        3 13/10/2018 No Holiday      7.6        0
## 3994   Spring     22.8        9 16/05/2018 No Holiday     22.8        4
## 8095   Autumn      5.5        6  3/11/2018 No Holiday      5.5        0
## 6182   Summer     36.9       13 15/08/2018    Holiday     36.9        0
## 4702   Summer     22.2       21 14/06/2018 No Holiday     22.2        0
##      col 4048 col 4049 col 4050 col 4051 col 4052 col 4053 col 4054 col 4055
## 2992      5.4        0      5.4       15      Yes       44     17.9     1209
## 7588      4.0        0      4.0        3      Yes       78      7.6      374
## 3994     21.6        0     21.6        9      Yes       93     22.8       97
## 8095      1.9        0      1.9        6       No       78      5.5        0
## 6182     20.6        0     20.6       13      Yes       39     36.9      591
## 4702     16.9        0     16.9       21      Yes       72     22.2     1807
##      col 4056 col 4057 col 4058 col 4059 col 4060   col 4061 col 4062 col 4063
## 2992      2.2       44      5.4   Spring   Spring   4/4/2018      5.4   Spring
## 7588      0.7       78      4.0   Autumn   Autumn 13/10/2018      4.0   Autumn
## 3994      3.1       93     21.6   Spring   Spring 16/05/2018     21.6   Spring
## 8095      0.6       78      1.9   Autumn   Autumn  3/11/2018      1.9   Autumn
## 6182      1.5       39     20.6   Summer   Summer 15/08/2018     20.6   Summer
## 4702      1.0       72     16.9   Summer   Summer 14/06/2018     16.9   Summer
##      col 4064 col 4065 col 4066 col 4067 col 4068 col 4069 col 4070 col 4071
## 2992       15     2.79       44       44      2.2     1209        0       15
## 7588        3     0.00       78       78      0.7      374        0        3
## 3994        9     0.06       93       93      3.1       97        0        9
## 8095        6     0.00       78       78      0.6        0        0        6
## 6182       13     2.46       39       39      1.5      591        0       13
## 4702       21     0.00       72       72      1.0     1807        0       21
##        col 4072   col 4073 col 4074 col 4075 col 4076 col 4077   col 4078
## 2992 No Holiday No Holiday       44      2.2     2000     2.79 No Holiday
## 7588 No Holiday No Holiday       78      0.7     1614     0.00 No Holiday
## 3994 No Holiday No Holiday       93      3.1      569     0.06 No Holiday
## 8095 No Holiday No Holiday       78      0.6      983     0.00 No Holiday
## 6182    Holiday    Holiday       39      1.5     2000     2.46    Holiday
## 4702 No Holiday No Holiday       72      1.0     1786     0.00 No Holiday
##      col 4079 col 4080 col 4081 col 4082 col 4083   col 4084   col 4085
## 2992        0       15      5.4     2.79     2000 No Holiday No Holiday
## 7588        0        3      4.0     0.00     1614 No Holiday No Holiday
## 3994        0        9     21.6     0.06      569 No Holiday No Holiday
## 8095        0        6      1.9     0.00      983 No Holiday No Holiday
## 6182        0       13     20.6     2.46     2000    Holiday    Holiday
## 4702        0       21     16.9     0.00     1786 No Holiday No Holiday
##      col 4086   col 4087 col 4088 col 4089   col 4090 col 4091 col 4092
## 2992     2000 No Holiday     17.9      5.4 No Holiday     1209      5.4
## 7588     1614 No Holiday      7.6      4.0 No Holiday      374      4.0
## 3994      569 No Holiday     22.8     21.6 No Holiday       97     21.6
## 8095      983 No Holiday      5.5      1.9 No Holiday        0      1.9
## 6182     2000    Holiday     36.9     20.6    Holiday      591     20.6
## 4702     1786 No Holiday     22.2     16.9 No Holiday     1807     16.9
##      col 4093 col 4094 col 4095 col 4096 col 4097   col 4098 col 4099 col 4100
## 2992     1209      Yes     1209   Spring     17.9 No Holiday        0     2.79
## 7588      374      Yes      374   Autumn      7.6 No Holiday        0     0.00
## 3994       97      Yes       97   Spring     22.8 No Holiday        0     0.06
## 8095        0       No        0   Autumn      5.5 No Holiday        0     0.00
## 6182      591      Yes      591   Summer     36.9    Holiday        0     2.46
## 4702     1807      Yes     1807   Summer     22.2 No Holiday        0     0.00
##      col 4101 col 4102 col 4103 col 4104 col 4105 col 4106 col 4107 col 4108
## 2992        0   Spring      5.4     17.9      Yes     17.9       15      Yes
## 7588        0   Autumn      4.0      7.6      Yes      7.6        3      Yes
## 3994        0   Spring     21.6     22.8      Yes     22.8        9      Yes
## 8095        0   Autumn      1.9      5.5       No      5.5        6       No
## 6182        0   Summer     20.6     36.9      Yes     36.9       13      Yes
## 4702        0   Summer     16.9     22.2      Yes     22.2       21      Yes
##      col 4109 col 4110 col 4111 col 4112   col 4113 col 4114 col 4115 col 4116
## 2992     2000     17.9      2.2     2.79 No Holiday        0        0     17.9
## 7588     1614      7.6      0.7     0.00 No Holiday        0        0      7.6
## 3994      569     22.8      3.1     0.06 No Holiday        0        0     22.8
## 8095      983      5.5      0.6     0.00 No Holiday        0        0      5.5
## 6182     2000     36.9      1.5     2.46    Holiday        0        0     36.9
## 4702     1786     22.2      1.0     0.00 No Holiday        0        0     22.2
##      col 4117 col 4118 col 4119 col 4120 col 4121 col 4122   col 4123 col 4124
## 2992        0        0       44     2000   Spring     1209   4/4/2018     17.9
## 7588        0        0       78     1614   Autumn      374 13/10/2018      7.6
## 3994        0        4       93      569   Spring       97 16/05/2018     22.8
## 8095        0        0       78      983   Autumn        0  3/11/2018      5.5
## 6182        0        0       39     2000   Summer      591 15/08/2018     36.9
## 4702        0        0       72     1786   Summer     1807 14/06/2018     22.2
##      col 4125 col 4126 col 4127   col 4128 col 4129 col 4130   col 4131
## 2992   Spring      2.2      5.4 No Holiday     2.79     2000   4/4/2018
## 7588   Autumn      0.7      4.0 No Holiday     0.00     1614 13/10/2018
## 3994   Spring      3.1     21.6 No Holiday     0.06      569 16/05/2018
## 8095   Autumn      0.6      1.9 No Holiday     0.00      983  3/11/2018
## 6182   Summer      1.5     20.6    Holiday     2.46     2000 15/08/2018
## 4702   Summer      1.0     16.9 No Holiday     0.00     1786 14/06/2018
##        col 4132 col 4133 col 4134 col 4135 col 4136 col 4137 col 4138 col 4139
## 2992   4/4/2018        0     17.9     17.9        0      2.2      Yes     2000
## 7588 13/10/2018        0      7.6      7.6        0      0.7      Yes     1614
## 3994 16/05/2018        0     22.8     22.8        0      3.1      Yes      569
## 8095  3/11/2018        0      5.5      5.5        0      0.6       No      983
## 6182 15/08/2018        0     36.9     36.9        0      1.5      Yes     2000
## 4702 14/06/2018        0     22.2     22.2        0      1.0      Yes     1786
##      col 4140   col 4141 col 4142 col 4143 col 4144 col 4145 col 4146 col 4147
## 2992      5.4   4/4/2018      2.2     2000   Spring   Spring      5.4   Spring
## 7588      4.0 13/10/2018      0.7     1614   Autumn   Autumn      4.0   Autumn
## 3994     21.6 16/05/2018      3.1      569   Spring   Spring     21.6   Spring
## 8095      1.9  3/11/2018      0.6      983   Autumn   Autumn      1.9   Autumn
## 6182     20.6 15/08/2018      1.5     2000   Summer   Summer     20.6   Summer
## 4702     16.9 14/06/2018      1.0     1786   Summer   Summer     16.9   Summer
##      col 4148 col 4149 col 4150 col 4151 col 4152 col 4153   col 4154
## 2992      5.4        0        0        0        0      Yes No Holiday
## 7588      4.0        0        0        0        0      Yes No Holiday
## 3994     21.6        4        0        0        4      Yes No Holiday
## 8095      1.9        0        0        0        0       No No Holiday
## 6182     20.6        0        0        0        0      Yes    Holiday
## 4702     16.9        0        0        0        0      Yes No Holiday
##        col 4155 col 4156 col 4157 col 4158 col 4159 col 4160 col 4161 col 4162
## 2992 No Holiday     1209      Yes     2000      Yes      Yes      2.2     1209
## 7588 No Holiday      374      Yes     1614      Yes      Yes      0.7      374
## 3994 No Holiday       97      Yes      569      Yes      Yes      3.1       97
## 8095 No Holiday        0       No      983       No       No      0.6        0
## 6182    Holiday      591      Yes     2000      Yes      Yes      1.5      591
## 4702 No Holiday     1807      Yes     1786      Yes      Yes      1.0     1807
##      col 4163 col 4164 col 4165 col 4166 col 4167 col 4168 col 4169 col 4170
## 2992        0      2.2        0        0     1209     1209     17.9        0
## 7588        0      0.7        0        0      374      374      7.6        0
## 3994        0      3.1        0        4       97       97     22.8        0
## 8095        0      0.6        0        0        0        0      5.5        0
## 6182        0      1.5        0        0      591      591     36.9        0
## 4702        0      1.0        0        0     1807     1807     22.2        0
##      col 4171 col 4172 col 4173   col 4174 col 4175 col 4176 col 4177 col 4178
## 2992        0       15      5.4 No Holiday      2.2       44     1209       44
## 7588        0        3      4.0 No Holiday      0.7       78      374       78
## 3994        0        9     21.6 No Holiday      3.1       93       97       93
## 8095        0        6      1.9 No Holiday      0.6       78        0       78
## 6182        0       13     20.6    Holiday      1.5       39      591       39
## 4702        0       21     16.9 No Holiday      1.0       72     1807       72
##      col 4179 col 4180 col 4181 col 4182 col 4183 col 4184 col 4185 col 4186
## 2992      Yes     17.9   Spring     17.9        0     2000     2000     2.79
## 7588      Yes      7.6   Autumn      7.6        0     1614     1614     0.00
## 3994      Yes     22.8   Spring     22.8        0      569      569     0.06
## 8095       No      5.5   Autumn      5.5        0      983      983     0.00
## 6182      Yes     36.9   Summer     36.9        0     2000     2000     2.46
## 4702      Yes     22.2   Summer     22.2        0     1786     1786     0.00
##      col 4187   col 4188 col 4189   col 4190   col 4191   col 4192 col 4193
## 2992      5.4 No Holiday       15   4/4/2018 No Holiday No Holiday       15
## 7588      4.0 No Holiday        3 13/10/2018 No Holiday No Holiday        3
## 3994     21.6 No Holiday        9 16/05/2018 No Holiday No Holiday        9
## 8095      1.9 No Holiday        6  3/11/2018 No Holiday No Holiday        6
## 6182     20.6    Holiday       13 15/08/2018    Holiday    Holiday       13
## 4702     16.9 No Holiday       21 14/06/2018 No Holiday No Holiday       21
##      col 4194 col 4195 col 4196 col 4197 col 4198 col 4199 col 4200 col 4201
## 2992     2000        0       15      2.2        0   Spring   Spring     17.9
## 7588     1614        0        3      0.7        0   Autumn   Autumn      7.6
## 3994      569        4        9      3.1        4   Spring   Spring     22.8
## 8095      983        0        6      0.6        0   Autumn   Autumn      5.5
## 6182     2000        0       13      1.5        0   Summer   Summer     36.9
## 4702     1786        0       21      1.0        0   Summer   Summer     22.2
##      col 4202   col 4203 col 4204 col 4205   col 4206 col 4207 col 4208
## 2992       44   4/4/2018        0      Yes   4/4/2018      2.2     1209
## 7588       78 13/10/2018        0      Yes 13/10/2018      0.7      374
## 3994       93 16/05/2018        4      Yes 16/05/2018      3.1       97
## 8095       78  3/11/2018        0       No  3/11/2018      0.6        0
## 6182       39 15/08/2018        0      Yes 15/08/2018      1.5      591
## 4702       72 14/06/2018        0      Yes 14/06/2018      1.0     1807
##        col 4209   col 4210 col 4211   col 4212 col 4213 col 4214 col 4215
## 2992   4/4/2018   4/4/2018       44   4/4/2018     2000     17.9        0
## 7588 13/10/2018 13/10/2018       78 13/10/2018     1614      7.6        0
## 3994 16/05/2018 16/05/2018       93 16/05/2018      569     22.8        4
## 8095  3/11/2018  3/11/2018       78  3/11/2018      983      5.5        0
## 6182 15/08/2018 15/08/2018       39 15/08/2018     2000     36.9        0
## 4702 14/06/2018 14/06/2018       72 14/06/2018     1786     22.2        0
##      col 4216 col 4217 col 4218 col 4219 col 4220 col 4221 col 4222 col 4223
## 2992       15     2.79     2000      5.4      5.4      2.2       15     1209
## 7588        3     0.00     1614      4.0      4.0      0.7        3      374
## 3994        9     0.06      569     21.6     21.6      3.1        9       97
## 8095        6     0.00      983      1.9      1.9      0.6        6        0
## 6182       13     2.46     2000     20.6     20.6      1.5       13      591
## 4702       21     0.00     1786     16.9     16.9      1.0       21     1807
##      col 4224 col 4225 col 4226 col 4227 col 4228 col 4229 col 4230 col 4231
## 2992       44       15      Yes        0     2000     1209      Yes     2.79
## 7588       78        3      Yes        0     1614      374      Yes     0.00
## 3994       93        9      Yes        4      569       97      Yes     0.06
## 8095       78        6       No        0      983        0       No     0.00
## 6182       39       13      Yes        0     2000      591      Yes     2.46
## 4702       72       21      Yes        0     1786     1807      Yes     0.00
##      col 4232 col 4233 col 4234 col 4235 col 4236 col 4237 col 4238   col 4239
## 2992     17.9      Yes      2.2      Yes        0     17.9      2.2 No Holiday
## 7588      7.6      Yes      0.7      Yes        0      7.6      0.7 No Holiday
## 3994     22.8      Yes      3.1      Yes        0     22.8      3.1 No Holiday
## 8095      5.5       No      0.6       No        0      5.5      0.6 No Holiday
## 6182     36.9      Yes      1.5      Yes        0     36.9      1.5    Holiday
## 4702     22.2      Yes      1.0      Yes        0     22.2      1.0 No Holiday
##      col 4240 col 4241 col 4242 col 4243 col 4244 col 4245 col 4246 col 4247
## 2992     17.9   Spring     1209     2.79     2.79   Spring        0      5.4
## 7588      7.6   Autumn      374     0.00     0.00   Autumn        0      4.0
## 3994     22.8   Spring       97     0.06     0.06   Spring        4     21.6
## 8095      5.5   Autumn        0     0.00     0.00   Autumn        0      1.9
## 6182     36.9   Summer      591     2.46     2.46   Summer        0     20.6
## 4702     22.2   Summer     1807     0.00     0.00   Summer        0     16.9
##      col 4248 col 4249 col 4250 col 4251 col 4252 col 4253   col 4254 col 4255
## 2992     17.9     2000     17.9      Yes      5.4     2000 No Holiday      5.4
## 7588      7.6     1614      7.6      Yes      4.0     1614 No Holiday      4.0
## 3994     22.8      569     22.8      Yes     21.6      569 No Holiday     21.6
## 8095      5.5      983      5.5       No      1.9      983 No Holiday      1.9
## 6182     36.9     2000     36.9      Yes     20.6     2000    Holiday     20.6
## 4702     22.2     1786     22.2      Yes     16.9     1786 No Holiday     16.9
##        col 4256 col 4257 col 4258 col 4259   col 4260 col 4261 col 4262
## 2992 No Holiday       44        0      5.4 No Holiday     17.9       44
## 7588 No Holiday       78        0      4.0 No Holiday      7.6       78
## 3994 No Holiday       93        0     21.6 No Holiday     22.8       93
## 8095 No Holiday       78        0      1.9 No Holiday      5.5       78
## 6182    Holiday       39        0     20.6    Holiday     36.9       39
## 4702 No Holiday       72        0     16.9 No Holiday     22.2       72
##      col 4263 col 4264 col 4265 col 4266 col 4267 col 4268 col 4269 col 4270
## 2992   Spring      Yes      5.4     1209      5.4      5.4     1209     1209
## 7588   Autumn      Yes      4.0      374      4.0      4.0      374      374
## 3994   Spring      Yes     21.6       97     21.6     21.6       97       97
## 8095   Autumn       No      1.9        0      1.9      1.9        0        0
## 6182   Summer      Yes     20.6      591     20.6     20.6      591      591
## 4702   Summer      Yes     16.9     1807     16.9     16.9     1807     1807
##      col 4271 col 4272   col 4273 col 4274 col 4275   col 4276   col 4277
## 2992       15       15   4/4/2018      2.2       15   4/4/2018 No Holiday
## 7588        3        3 13/10/2018      0.7        3 13/10/2018 No Holiday
## 3994        9        9 16/05/2018      3.1        9 16/05/2018 No Holiday
## 8095        6        6  3/11/2018      0.6        6  3/11/2018 No Holiday
## 6182       13       13 15/08/2018      1.5       13 15/08/2018    Holiday
## 4702       21       21 14/06/2018      1.0       21 14/06/2018 No Holiday
##        col 4278 col 4279   col 4280 col 4281 col 4282   col 4283 col 4284
## 2992   4/4/2018        0   4/4/2018   Spring     1209 No Holiday        0
## 7588 13/10/2018        0 13/10/2018   Autumn      374 No Holiday        0
## 3994 16/05/2018        4 16/05/2018   Spring       97 No Holiday        4
## 8095  3/11/2018        0  3/11/2018   Autumn        0 No Holiday        0
## 6182 15/08/2018        0 15/08/2018   Summer      591    Holiday        0
## 4702 14/06/2018        0 14/06/2018   Summer     1807 No Holiday        0
##      col 4285 col 4286   col 4287 col 4288 col 4289 col 4290 col 4291 col 4292
## 2992      Yes     2000 No Holiday     1209       15        0       44      Yes
## 7588      Yes     1614 No Holiday      374        3        0       78      Yes
## 3994      Yes      569 No Holiday       97        9        4       93      Yes
## 8095       No      983 No Holiday        0        6        0       78       No
## 6182      Yes     2000    Holiday      591       13        0       39      Yes
## 4702      Yes     1786 No Holiday     1807       21        0       72      Yes
##        col 4293   col 4294 col 4295 col 4296   col 4297 col 4298 col 4299
## 2992   4/4/2018 No Holiday     2000   Spring No Holiday        0     2000
## 7588 13/10/2018 No Holiday     1614   Autumn No Holiday        0     1614
## 3994 16/05/2018 No Holiday      569   Spring No Holiday        0      569
## 8095  3/11/2018 No Holiday      983   Autumn No Holiday        0      983
## 6182 15/08/2018    Holiday     2000   Summer    Holiday        0     2000
## 4702 14/06/2018 No Holiday     1786   Summer No Holiday        0     1786
##      col 4300 col 4301 col 4302 col 4303 col 4304 col 4305 col 4306 col 4307
## 2992       15       15        0     1209        0      2.2     17.9      Yes
## 7588        3        3        0      374        0      0.7      7.6      Yes
## 3994        9        9        0       97        4      3.1     22.8      Yes
## 8095        6        6        0        0        0      0.6      5.5       No
## 6182       13       13        0      591        0      1.5     36.9      Yes
## 4702       21       21        0     1807        0      1.0     22.2      Yes
##      col 4308 col 4309   col 4310 col 4311 col 4312 col 4313 col 4314 col 4315
## 2992        0        0   4/4/2018     2000        0     2000        0     2.79
## 7588        0        0 13/10/2018     1614        0     1614        0     0.00
## 3994        0        0 16/05/2018      569        0      569        0     0.06
## 8095        0        0  3/11/2018      983        0      983        0     0.00
## 6182        0        0 15/08/2018     2000        0     2000        0     2.46
## 4702        0        0 14/06/2018     1786        0     1786        0     0.00
##      col 4316   col 4317 col 4318 col 4319   col 4320   col 4321 col 4322
## 2992     1209 No Holiday     2.79       15   4/4/2018 No Holiday        0
## 7588      374 No Holiday     0.00        3 13/10/2018 No Holiday        0
## 3994       97 No Holiday     0.06        9 16/05/2018 No Holiday        0
## 8095        0 No Holiday     0.00        6  3/11/2018 No Holiday        0
## 6182      591    Holiday     2.46       13 15/08/2018    Holiday        0
## 4702     1807 No Holiday     0.00       21 14/06/2018 No Holiday        0
##      col 4323   col 4324 col 4325 col 4326 col 4327 col 4328 col 4329 col 4330
## 2992     2.79 No Holiday        0     17.9     17.9      Yes   Spring       15
## 7588     0.00 No Holiday        0      7.6      7.6      Yes   Autumn        3
## 3994     0.06 No Holiday        4     22.8     22.8      Yes   Spring        9
## 8095     0.00 No Holiday        0      5.5      5.5       No   Autumn        6
## 6182     2.46    Holiday        0     36.9     36.9      Yes   Summer       13
## 4702     0.00 No Holiday        0     22.2     22.2      Yes   Summer       21
##      col 4331 col 4332 col 4333 col 4334 col 4335 col 4336   col 4337 col 4338
## 2992      2.2     2.79      Yes      2.2       15     2000 No Holiday     1209
## 7588      0.7     0.00      Yes      0.7        3     1614 No Holiday      374
## 3994      3.1     0.06      Yes      3.1        9      569 No Holiday       97
## 8095      0.6     0.00       No      0.6        6      983 No Holiday        0
## 6182      1.5     2.46      Yes      1.5       13     2000    Holiday      591
## 4702      1.0     0.00      Yes      1.0       21     1786 No Holiday     1807
##      col 4339 col 4340 col 4341 col 4342 col 4343 col 4344 col 4345 col 4346
## 2992     17.9       44       15        0     1209   Spring   Spring     1209
## 7588      7.6       78        3        0      374   Autumn   Autumn      374
## 3994     22.8       93        9        4       97   Spring   Spring       97
## 8095      5.5       78        6        0        0   Autumn   Autumn        0
## 6182     36.9       39       13        0      591   Summer   Summer      591
## 4702     22.2       72       21        0     1807   Summer   Summer     1807
##      col 4347   col 4348 col 4349 col 4350 col 4351 col 4352 col 4353 col 4354
## 2992        0   4/4/2018     2.79      Yes     17.9       44      2.2       44
## 7588        0 13/10/2018     0.00      Yes      7.6       78      0.7       78
## 3994        4 16/05/2018     0.06      Yes     22.8       93      3.1       93
## 8095        0  3/11/2018     0.00       No      5.5       78      0.6       78
## 6182        0 15/08/2018     2.46      Yes     36.9       39      1.5       39
## 4702        0 14/06/2018     0.00      Yes     22.2       72      1.0       72
##      col 4355 col 4356 col 4357 col 4358 col 4359 col 4360 col 4361 col 4362
## 2992     17.9   Spring     2000     2.79     1209     2000   Spring      2.2
## 7588      7.6   Autumn     1614     0.00      374     1614   Autumn      0.7
## 3994     22.8   Spring      569     0.06       97      569   Spring      3.1
## 8095      5.5   Autumn      983     0.00        0      983   Autumn      0.6
## 6182     36.9   Summer     2000     2.46      591     2000   Summer      1.5
## 4702     22.2   Summer     1786     0.00     1807     1786   Summer      1.0
##      col 4363 col 4364   col 4365 col 4366 col 4367 col 4368 col 4369 col 4370
## 2992       44        0 No Holiday        0      Yes     2000      5.4        0
## 7588       78        0 No Holiday        0      Yes     1614      4.0        0
## 3994       93        0 No Holiday        4      Yes      569     21.6        4
## 8095       78        0 No Holiday        0       No      983      1.9        0
## 6182       39        0    Holiday        0      Yes     2000     20.6        0
## 4702       72        0 No Holiday        0      Yes     1786     16.9        0
##      col 4371 col 4372 col 4373 col 4374   col 4375 col 4376 col 4377 col 4378
## 2992        0       15     17.9       44 No Holiday       15       15        0
## 7588        0        3      7.6       78 No Holiday        3        3        0
## 3994        4        9     22.8       93 No Holiday        9        9        4
## 8095        0        6      5.5       78 No Holiday        6        6        0
## 6182        0       13     36.9       39    Holiday       13       13        0
## 4702        0       21     22.2       72 No Holiday       21       21        0
##      col 4379 col 4380
## 2992     1209       15
## 7588      374        3
## 3994       97        9
## 8095        0        6
## 6182      591       13
## 4702     1807       21
## 
## Subsample 3 :
##      col 1 col 2      col 3  col 4 col 5 col 6 col 7 col 8 col 9     col 10
## 1658    60     1 No Holiday Winter  1908 -14.8     0    60   Yes   8/2/2018
## 3485    66     4 No Holiday Spring  2000   0.4     0    66   Yes 25/04/2018
## 5491    55    18 No Holiday Summer  1550  21.1     0    55   Yes 17/07/2018
## 1237    30    12 No Holiday Winter  1085 -12.1     0    30   Yes 21/01/2018
## 5532    48    11 No Holiday Summer  1705  18.4     0    48   Yes 19/07/2018
## 5201    71    16 No Holiday Summer  2000  22.4     0    71   Yes   5/7/2018
##      col 11 col 12 col 13 col 14 col 15 col 16 col 17     col 18 col 19
## 1658    126  -14.8   1908   -8.5      0    126      0 No Holiday      0
## 3485    117    0.4   2000    6.4      0    117      0 No Holiday      0
## 5491   2770   21.1   1550   31.3      0   2770      0 No Holiday      0
## 1237    271  -12.1   1085    3.9      0    271      0 No Holiday      0
## 5532    687   18.4   1705   30.7      0    687      0 No Holiday      0
## 5201   1105   22.4   2000   28.2      0   1105      0 No Holiday      0
##          col 20 col 21 col 22 col 23 col 24 col 25 col 26 col 27 col 28 col 29
## 1658 No Holiday  -14.8  -14.8   -8.5    1.2      0   0.00   1908  -14.8    126
## 3485 No Holiday    0.4    0.4    6.4    0.5      0   0.00   2000    0.4    117
## 5491 No Holiday   21.1   21.1   31.3    2.5      0   1.20   1550   21.1   2770
## 1237 No Holiday  -12.1  -12.1    3.9    1.6      0   0.91   1085  -12.1    271
## 5532 No Holiday   18.4   18.4   30.7    1.6      0   2.92   1705   18.4    687
## 5201 No Holiday   22.4   22.4   28.2    1.7      0   0.96   2000   22.4   1105
##      col 30 col 31 col 32 col 33 col 34 col 35 col 36     col 37 col 38 col 39
## 1658      1      0      0    1.2     60  -14.8    Yes   8/2/2018   -8.5      0
## 3485      4      0      0    0.5     66    0.4    Yes 25/04/2018    6.4      0
## 5491     18      0      0    2.5     55   21.1    Yes 17/07/2018   31.3      0
## 1237     12      0      0    1.6     30  -12.1    Yes 21/01/2018    3.9      0
## 5532     11      0      0    1.6     48   18.4    Yes 19/07/2018   30.7      0
## 5201     16      0      0    1.7     71   22.4    Yes   5/7/2018   28.2      0
##      col 40 col 41 col 42 col 43     col 44 col 45 col 46 col 47 col 48 col 49
## 1658   -8.5   0.00      1      0 No Holiday Winter      0  -14.8    1.2    Yes
## 3485    6.4   0.00      4      0 No Holiday Spring      0    0.4    0.5    Yes
## 5491   31.3   1.20     18      0 No Holiday Summer      0   21.1    2.5    Yes
## 1237    3.9   0.91     12      0 No Holiday Winter      0  -12.1    1.6    Yes
## 5532   30.7   2.92     11      0 No Holiday Summer      0   18.4    1.6    Yes
## 5201   28.2   0.96     16      0 No Holiday Summer      0   22.4    1.7    Yes
##          col 50 col 51 col 52     col 53 col 54 col 55 col 56 col 57 col 58
## 1658 No Holiday Winter      0   8/2/2018      0   -8.5      0    1.2    Yes
## 3485 No Holiday Spring      0 25/04/2018      0    6.4      0    0.5    Yes
## 5491 No Holiday Summer      0 17/07/2018      0   31.3      0    2.5    Yes
## 1237 No Holiday Winter      0 21/01/2018      0    3.9      0    1.6    Yes
## 5532 No Holiday Summer      0 19/07/2018      0   30.7      0    1.6    Yes
## 5201 No Holiday Summer      0   5/7/2018      0   28.2      0    1.7    Yes
##      col 59 col 60 col 61 col 62 col 63 col 64 col 65 col 66 col 67     col 68
## 1658      0   -8.5   1908      0    126   1908     60    Yes      0   8/2/2018
## 3485      0    6.4   2000      0    117   2000     66    Yes      0 25/04/2018
## 5491      0   31.3   1550      0   2770   1550     55    Yes      0 17/07/2018
## 1237      0    3.9   1085      0    271   1085     30    Yes      0 21/01/2018
## 5532      0   30.7   1705      0    687   1705     48    Yes      0 19/07/2018
## 5201      0   28.2   2000      0   1105   2000     71    Yes      0   5/7/2018
##      col 69 col 70     col 71     col 72     col 73 col 74     col 75
## 1658   0.00   -8.5   8/2/2018   8/2/2018 No Holiday      1 No Holiday
## 3485   0.00    6.4 25/04/2018 25/04/2018 No Holiday      4 No Holiday
## 5491   1.20   31.3 17/07/2018 17/07/2018 No Holiday     18 No Holiday
## 1237   0.91    3.9 21/01/2018 21/01/2018 No Holiday     12 No Holiday
## 5532   2.92   30.7 19/07/2018 19/07/2018 No Holiday     11 No Holiday
## 5201   0.96   28.2   5/7/2018   5/7/2018 No Holiday     16 No Holiday
##          col 76 col 77 col 78 col 79     col 80 col 81     col 82 col 83
## 1658 No Holiday   -8.5     60      0 No Holiday Winter No Holiday   -8.5
## 3485 No Holiday    6.4     66      0 No Holiday Spring No Holiday    6.4
## 5491 No Holiday   31.3     55      0 No Holiday Summer No Holiday   31.3
## 1237 No Holiday    3.9     30      0 No Holiday Winter No Holiday    3.9
## 5532 No Holiday   30.7     48      0 No Holiday Summer No Holiday   30.7
## 5201 No Holiday   28.2     71      0 No Holiday Summer No Holiday   28.2
##          col 84     col 85     col 86 col 87 col 88 col 89     col 90
## 1658   8/2/2018 No Holiday No Holiday      0 Winter Winter No Holiday
## 3485 25/04/2018 No Holiday No Holiday      0 Spring Spring No Holiday
## 5491 17/07/2018 No Holiday No Holiday      0 Summer Summer No Holiday
## 1237 21/01/2018 No Holiday No Holiday      0 Winter Winter No Holiday
## 5532 19/07/2018 No Holiday No Holiday      0 Summer Summer No Holiday
## 5201   5/7/2018 No Holiday No Holiday      0 Summer Summer No Holiday
##          col 91 col 92     col 93 col 94 col 95 col 96 col 97 col 98 col 99
## 1658   8/2/2018      0   8/2/2018      0      0    126      0    1.2    126
## 3485 25/04/2018      0 25/04/2018      0      0    117      0    0.5    117
## 5491 17/07/2018      0 17/07/2018      0      0   2770      0    2.5   2770
## 1237 21/01/2018      0 21/01/2018      0      0    271      0    1.6    271
## 5532 19/07/2018      0 19/07/2018      0      0    687      0    1.6    687
## 5201   5/7/2018      0   5/7/2018      0      0   1105      0    1.7   1105
##      col 100 col 101 col 102    col 103 col 104 col 105 col 106 col 107
## 1658     Yes    -8.5   -14.8   8/2/2018  Winter      60     126       1
## 3485     Yes     6.4     0.4 25/04/2018  Spring      66     117       4
## 5491     Yes    31.3    21.1 17/07/2018  Summer      55    2770      18
## 1237     Yes     3.9   -12.1 21/01/2018  Winter      30     271      12
## 5532     Yes    30.7    18.4 19/07/2018  Summer      48     687      11
## 5201     Yes    28.2    22.4   5/7/2018  Summer      71    1105      16
##         col 108 col 109 col 110 col 111 col 112 col 113    col 114 col 115
## 1658   8/2/2018  Winter    -8.5      60       0    -8.5 No Holiday       0
## 3485 25/04/2018  Spring     6.4      66       0     6.4 No Holiday       0
## 5491 17/07/2018  Summer    31.3      55       0    31.3 No Holiday       0
## 1237 21/01/2018  Winter     3.9      30       0     3.9 No Holiday       0
## 5532 19/07/2018  Summer    30.7      48       0    30.7 No Holiday       0
## 5201   5/7/2018  Summer    28.2      71       0    28.2 No Holiday       0
##      col 116    col 117    col 118 col 119 col 120 col 121 col 122 col 123
## 1658     Yes No Holiday No Holiday       0       0    1908       0    0.00
## 3485     Yes No Holiday No Holiday       0       0    2000       0    0.00
## 5491     Yes No Holiday No Holiday       0       0    1550       0    1.20
## 1237     Yes No Holiday No Holiday       0       0    1085       0    0.91
## 5532     Yes No Holiday No Holiday       0       0    1705       0    2.92
## 5201     Yes No Holiday No Holiday       0       0    2000       0    0.96
##      col 124 col 125 col 126 col 127 col 128    col 129 col 130 col 131 col 132
## 1658    0.00    0.00    -8.5    1908      60 No Holiday      60    -8.5       0
## 3485    0.00    0.00     6.4    2000      66 No Holiday      66     6.4       0
## 5491    1.20    1.20    31.3    1550      55 No Holiday      55    31.3       0
## 1237    0.91    0.91     3.9    1085      30 No Holiday      30     3.9       0
## 5532    2.92    2.92    30.7    1705      48 No Holiday      48    30.7       0
## 5201    0.96    0.96    28.2    2000      71 No Holiday      71    28.2       0
##      col 133 col 134 col 135 col 136    col 137 col 138 col 139    col 140
## 1658   -14.8     Yes     Yes     126 No Holiday     Yes     126   8/2/2018
## 3485     0.4     Yes     Yes     117 No Holiday     Yes     117 25/04/2018
## 5491    21.1     Yes     Yes    2770 No Holiday     Yes    2770 17/07/2018
## 1237   -12.1     Yes     Yes     271 No Holiday     Yes     271 21/01/2018
## 5532    18.4     Yes     Yes     687 No Holiday     Yes     687 19/07/2018
## 5201    22.4     Yes     Yes    1105 No Holiday     Yes    1105   5/7/2018
##      col 141 col 142 col 143 col 144 col 145 col 146 col 147    col 148 col 149
## 1658   -14.8     1.2     1.2    1908      60    1908       1 No Holiday       0
## 3485     0.4     0.5     0.5    2000      66    2000       4 No Holiday       0
## 5491    21.1     2.5     2.5    1550      55    1550      18 No Holiday       0
## 1237   -12.1     1.6     1.6    1085      30    1085      12 No Holiday       0
## 5532    18.4     1.6     1.6    1705      48    1705      11 No Holiday       0
## 5201    22.4     1.7     1.7    2000      71    2000      16 No Holiday       0
##      col 150 col 151 col 152 col 153 col 154 col 155 col 156    col 157 col 158
## 1658      60    -8.5      60     126     1.2    1908     Yes   8/2/2018       0
## 3485      66     6.4      66     117     0.5    2000     Yes 25/04/2018       0
## 5491      55    31.3      55    2770     2.5    1550     Yes 17/07/2018       0
## 1237      30     3.9      30     271     1.6    1085     Yes 21/01/2018       0
## 5532      48    30.7      48     687     1.6    1705     Yes 19/07/2018       0
## 5201      71    28.2      71    1105     1.7    2000     Yes   5/7/2018       0
##         col 159    col 160 col 161 col 162 col 163 col 164    col 165
## 1658 No Holiday   8/2/2018    1908    1908       0     1.2 No Holiday
## 3485 No Holiday 25/04/2018    2000    2000       0     0.5 No Holiday
## 5491 No Holiday 17/07/2018    1550    1550       0     2.5 No Holiday
## 1237 No Holiday 21/01/2018    1085    1085       0     1.6 No Holiday
## 5532 No Holiday 19/07/2018    1705    1705       0     1.6 No Holiday
## 5201 No Holiday   5/7/2018    2000    2000       0     1.7 No Holiday
##         col 166 col 167 col 168    col 169 col 170 col 171    col 172 col 173
## 1658   8/2/2018    1908  Winter No Holiday       0     126 No Holiday       1
## 3485 25/04/2018    2000  Spring No Holiday       0     117 No Holiday       4
## 5491 17/07/2018    1550  Summer No Holiday       0    2770 No Holiday      18
## 1237 21/01/2018    1085  Winter No Holiday       0     271 No Holiday      12
## 5532 19/07/2018    1705  Summer No Holiday       0     687 No Holiday      11
## 5201   5/7/2018    2000  Summer No Holiday       0    1105 No Holiday      16
##      col 174 col 175 col 176 col 177 col 178 col 179    col 180 col 181 col 182
## 1658    0.00       0   -14.8     1.2    1908       0 No Holiday     1.2      60
## 3485    0.00       0     0.4     0.5    2000       0 No Holiday     0.5      66
## 5491    1.20       0    21.1     2.5    1550       0 No Holiday     2.5      55
## 1237    0.91       0   -12.1     1.6    1085       0 No Holiday     1.6      30
## 5532    2.92       0    18.4     1.6    1705       0 No Holiday     1.6      48
## 5201    0.96       0    22.4     1.7    2000       0 No Holiday     1.7      71
##      col 183 col 184 col 185    col 186 col 187 col 188    col 189 col 190
## 1658       0     1.2       0 No Holiday   -14.8       0 No Holiday       1
## 3485       0     0.5       0 No Holiday     0.4       0 No Holiday       4
## 5491       0     2.5       0 No Holiday    21.1       0 No Holiday      18
## 1237       0     1.6       0 No Holiday   -12.1       0 No Holiday      12
## 5532       0     1.6       0 No Holiday    18.4       0 No Holiday      11
## 5201       0     1.7       0 No Holiday    22.4       0 No Holiday      16
##      col 191 col 192 col 193 col 194    col 195 col 196 col 197 col 198 col 199
## 1658     1.2     1.2    -8.5       0 No Holiday    0.00    -8.5       1    -8.5
## 3485     0.5     0.5     6.4       0 No Holiday    0.00     6.4       4     6.4
## 5491     2.5     2.5    31.3       0 No Holiday    1.20    31.3      18    31.3
## 1237     1.6     1.6     3.9       0 No Holiday    0.91     3.9      12     3.9
## 5532     1.6     1.6    30.7       0 No Holiday    2.92    30.7      11    30.7
## 5201     1.7     1.7    28.2       0 No Holiday    0.96    28.2      16    28.2
##         col 200 col 201    col 202 col 203    col 204 col 205 col 206 col 207
## 1658   8/2/2018      60 No Holiday  Winter No Holiday     1.2    -8.5    0.00
## 3485 25/04/2018      66 No Holiday  Spring No Holiday     0.5     6.4    0.00
## 5491 17/07/2018      55 No Holiday  Summer No Holiday     2.5    31.3    1.20
## 1237 21/01/2018      30 No Holiday  Winter No Holiday     1.6     3.9    0.91
## 5532 19/07/2018      48 No Holiday  Summer No Holiday     1.6    30.7    2.92
## 5201   5/7/2018      71 No Holiday  Summer No Holiday     1.7    28.2    0.96
##         col 208 col 209 col 210 col 211 col 212 col 213 col 214 col 215
## 1658   8/2/2018  Winter   -14.8  Winter   -14.8      60    0.00  Winter
## 3485 25/04/2018  Spring     0.4  Spring     0.4      66    0.00  Spring
## 5491 17/07/2018  Summer    21.1  Summer    21.1      55    1.20  Summer
## 1237 21/01/2018  Winter   -12.1  Winter   -12.1      30    0.91  Winter
## 5532 19/07/2018  Summer    18.4  Summer    18.4      48    2.92  Summer
## 5201   5/7/2018  Summer    22.4  Summer    22.4      71    0.96  Summer
##         col 216 col 217 col 218    col 219 col 220 col 221 col 222 col 223
## 1658   8/2/2018    -8.5       1 No Holiday       0  Winter    -8.5    1908
## 3485 25/04/2018     6.4       4 No Holiday       0  Spring     6.4    2000
## 5491 17/07/2018    31.3      18 No Holiday       0  Summer    31.3    1550
## 1237 21/01/2018     3.9      12 No Holiday       0  Winter     3.9    1085
## 5532 19/07/2018    30.7      11 No Holiday       0  Summer    30.7    1705
## 5201   5/7/2018    28.2      16 No Holiday       0  Summer    28.2    2000
##      col 224 col 225 col 226    col 227    col 228 col 229 col 230 col 231
## 1658     1.2     1.2   -14.8 No Holiday   8/2/2018      60    1908     126
## 3485     0.5     0.5     0.4 No Holiday 25/04/2018      66    2000     117
## 5491     2.5     2.5    21.1 No Holiday 17/07/2018      55    1550    2770
## 1237     1.6     1.6   -12.1 No Holiday 21/01/2018      30    1085     271
## 5532     1.6     1.6    18.4 No Holiday 19/07/2018      48    1705     687
## 5201     1.7     1.7    22.4 No Holiday   5/7/2018      71    2000    1105
##         col 232    col 233 col 234 col 235 col 236 col 237 col 238 col 239
## 1658   8/2/2018 No Holiday     Yes      60      60       0   -14.8     126
## 3485 25/04/2018 No Holiday     Yes      66      66       0     0.4     117
## 5491 17/07/2018 No Holiday     Yes      55      55       0    21.1    2770
## 1237 21/01/2018 No Holiday     Yes      30      30       0   -12.1     271
## 5532 19/07/2018 No Holiday     Yes      48      48       0    18.4     687
## 5201   5/7/2018 No Holiday     Yes      71      71       0    22.4    1105
##      col 240    col 241 col 242 col 243 col 244 col 245 col 246    col 247
## 1658     1.2 No Holiday     1.2       0       0       0    -8.5 No Holiday
## 3485     0.5 No Holiday     0.5       0       0       0     6.4 No Holiday
## 5491     2.5 No Holiday     2.5       0       0       0    31.3 No Holiday
## 1237     1.6 No Holiday     1.6       0       0       0     3.9 No Holiday
## 5532     1.6 No Holiday     1.6       0       0       0    30.7 No Holiday
## 5201     1.7 No Holiday     1.7       0       0       0    28.2 No Holiday
##      col 248 col 249 col 250 col 251 col 252 col 253 col 254 col 255 col 256
## 1658     126   -14.8      60       0    0.00  Winter     1.2  Winter       1
## 3485     117     0.4      66       0    0.00  Spring     0.5  Spring       4
## 5491    2770    21.1      55       0    1.20  Summer     2.5  Summer      18
## 1237     271   -12.1      30       0    0.91  Winter     1.6  Winter      12
## 5532     687    18.4      48       0    2.92  Summer     1.6  Summer      11
## 5201    1105    22.4      71       0    0.96  Summer     1.7  Summer      16
##      col 257 col 258 col 259 col 260 col 261 col 262    col 263 col 264 col 265
## 1658   -14.8     126   -14.8     126     1.2       0 No Holiday       0   -14.8
## 3485     0.4     117     0.4     117     0.5       0 No Holiday       0     0.4
## 5491    21.1    2770    21.1    2770     2.5       0 No Holiday       0    21.1
## 1237   -12.1     271   -12.1     271     1.6       0 No Holiday       0   -12.1
## 5532    18.4     687    18.4     687     1.6       0 No Holiday       0    18.4
## 5201    22.4    1105    22.4    1105     1.7       0 No Holiday       0    22.4
##      col 266 col 267 col 268 col 269 col 270 col 271 col 272 col 273 col 274
## 1658       0      60      60     126   -14.8       0    0.00      60       0
## 3485       0      66      66     117     0.4       0    0.00      66       0
## 5491       0      55      55    2770    21.1       0    1.20      55       0
## 1237       0      30      30     271   -12.1       0    0.91      30       0
## 5532       0      48      48     687    18.4       0    2.92      48       0
## 5201       0      71      71    1105    22.4       0    0.96      71       0
##      col 275 col 276 col 277 col 278 col 279 col 280    col 281 col 282 col 283
## 1658     Yes  Winter       0   -14.8    1908    -8.5 No Holiday       1     Yes
## 3485     Yes  Spring       0     0.4    2000     6.4 No Holiday       4     Yes
## 5491     Yes  Summer       0    21.1    1550    31.3 No Holiday      18     Yes
## 1237     Yes  Winter       0   -12.1    1085     3.9 No Holiday      12     Yes
## 5532     Yes  Summer       0    18.4    1705    30.7 No Holiday      11     Yes
## 5201     Yes  Summer       0    22.4    2000    28.2 No Holiday      16     Yes
##      col 284 col 285 col 286    col 287 col 288    col 289 col 290 col 291
## 1658     1.2      60    -8.5   8/2/2018  Winter   8/2/2018     126       0
## 3485     0.5      66     6.4 25/04/2018  Spring 25/04/2018     117       0
## 5491     2.5      55    31.3 17/07/2018  Summer 17/07/2018    2770       0
## 1237     1.6      30     3.9 21/01/2018  Winter 21/01/2018     271       0
## 5532     1.6      48    30.7 19/07/2018  Summer 19/07/2018     687       0
## 5201     1.7      71    28.2   5/7/2018  Summer   5/7/2018    1105       0
##      col 292    col 293 col 294 col 295    col 296 col 297 col 298    col 299
## 1658       1   8/2/2018      60     126   8/2/2018     1.2     Yes No Holiday
## 3485       4 25/04/2018      66     117 25/04/2018     0.5     Yes No Holiday
## 5491      18 17/07/2018      55    2770 17/07/2018     2.5     Yes No Holiday
## 1237      12 21/01/2018      30     271 21/01/2018     1.6     Yes No Holiday
## 5532      11 19/07/2018      48     687 19/07/2018     1.6     Yes No Holiday
## 5201      16   5/7/2018      71    1105   5/7/2018     1.7     Yes No Holiday
##      col 300 col 301 col 302 col 303 col 304 col 305 col 306 col 307 col 308
## 1658       0    0.00     Yes      60     1.2  Winter   -14.8       0    0.00
## 3485       0    0.00     Yes      66     0.5  Spring     0.4       0    0.00
## 5491       0    1.20     Yes      55     2.5  Summer    21.1       0    1.20
## 1237       0    0.91     Yes      30     1.6  Winter   -12.1       0    0.91
## 5532       0    2.92     Yes      48     1.6  Summer    18.4       0    2.92
## 5201       0    0.96     Yes      71     1.7  Summer    22.4       0    0.96
##      col 309 col 310 col 311 col 312 col 313 col 314 col 315 col 316 col 317
## 1658       0    -8.5  Winter     126    0.00   -14.8     1.2     126   -14.8
## 3485       0     6.4  Spring     117    0.00     0.4     0.5     117     0.4
## 5491       0    31.3  Summer    2770    1.20    21.1     2.5    2770    21.1
## 1237       0     3.9  Winter     271    0.91   -12.1     1.6     271   -12.1
## 5532       0    30.7  Summer     687    2.92    18.4     1.6     687    18.4
## 5201       0    28.2  Summer    1105    0.96    22.4     1.7    1105    22.4
##      col 318 col 319 col 320 col 321 col 322 col 323 col 324    col 325 col 326
## 1658    1908    1908     Yes      60     1.2      60       0 No Holiday  Winter
## 3485    2000    2000     Yes      66     0.5      66       0 No Holiday  Spring
## 5491    1550    1550     Yes      55     2.5      55       0 No Holiday  Summer
## 1237    1085    1085     Yes      30     1.6      30       0 No Holiday  Winter
## 5532    1705    1705     Yes      48     1.6      48       0 No Holiday  Summer
## 5201    2000    2000     Yes      71     1.7      71       0 No Holiday  Summer
##         col 327    col 328 col 329 col 330 col 331 col 332 col 333 col 334
## 1658   8/2/2018 No Holiday       1    -8.5    0.00   -14.8     1.2    -8.5
## 3485 25/04/2018 No Holiday       4     6.4    0.00     0.4     0.5     6.4
## 5491 17/07/2018 No Holiday      18    31.3    1.20    21.1     2.5    31.3
## 1237 21/01/2018 No Holiday      12     3.9    0.91   -12.1     1.6     3.9
## 5532 19/07/2018 No Holiday      11    30.7    2.92    18.4     1.6    30.7
## 5201   5/7/2018 No Holiday      16    28.2    0.96    22.4     1.7    28.2
##      col 335 col 336 col 337 col 338 col 339 col 340 col 341 col 342 col 343
## 1658     Yes    0.00       1       1     Yes       1   -14.8    1908       0
## 3485     Yes    0.00       4       4     Yes       4     0.4    2000       0
## 5491     Yes    1.20      18      18     Yes      18    21.1    1550       0
## 1237     Yes    0.91      12      12     Yes      12   -12.1    1085       0
## 5532     Yes    2.92      11      11     Yes      11    18.4    1705       0
## 5201     Yes    0.96      16      16     Yes      16    22.4    2000       0
##         col 344 col 345 col 346 col 347 col 348 col 349    col 350 col 351
## 1658   8/2/2018     126  Winter       0     126       0 No Holiday     1.2
## 3485 25/04/2018     117  Spring       0     117       0 No Holiday     0.5
## 5491 17/07/2018    2770  Summer       0    2770       0 No Holiday     2.5
## 1237 21/01/2018     271  Winter       0     271       0 No Holiday     1.6
## 5532 19/07/2018     687  Summer       0     687       0 No Holiday     1.6
## 5201   5/7/2018    1105  Summer       0    1105       0 No Holiday     1.7
##      col 352 col 353 col 354 col 355 col 356 col 357 col 358    col 359 col 360
## 1658    0.00       1       0      60       1    1908      60 No Holiday     Yes
## 3485    0.00       4       0      66       4    2000      66 No Holiday     Yes
## 5491    1.20      18       0      55      18    1550      55 No Holiday     Yes
## 1237    0.91      12       0      30      12    1085      30 No Holiday     Yes
## 5532    2.92      11       0      48      11    1705      48 No Holiday     Yes
## 5201    0.96      16       0      71      16    2000      71 No Holiday     Yes
##      col 361 col 362    col 363 col 364 col 365 col 366 col 367 col 368 col 369
## 1658       0    -8.5 No Holiday  Winter   -14.8     1.2       0     Yes     Yes
## 3485       0     6.4 No Holiday  Spring     0.4     0.5       0     Yes     Yes
## 5491       0    31.3 No Holiday  Summer    21.1     2.5       0     Yes     Yes
## 1237       0     3.9 No Holiday  Winter   -12.1     1.6       0     Yes     Yes
## 5532       0    30.7 No Holiday  Summer    18.4     1.6       0     Yes     Yes
## 5201       0    28.2 No Holiday  Summer    22.4     1.7       0     Yes     Yes
##      col 370 col 371 col 372 col 373    col 374 col 375 col 376    col 377
## 1658     Yes    -8.5       0  Winter   8/2/2018     126  Winter No Holiday
## 3485     Yes     6.4       0  Spring 25/04/2018     117  Spring No Holiday
## 5491     Yes    31.3       0  Summer 17/07/2018    2770  Summer No Holiday
## 1237     Yes     3.9       0  Winter 21/01/2018     271  Winter No Holiday
## 5532     Yes    30.7       0  Summer 19/07/2018     687  Summer No Holiday
## 5201     Yes    28.2       0  Summer   5/7/2018    1105  Summer No Holiday
##      col 378 col 379 col 380 col 381 col 382 col 383 col 384 col 385 col 386
## 1658  Winter       0       0   -14.8     1.2       0       0      60    0.00
## 3485  Spring       0       0     0.4     0.5       0       0      66    0.00
## 5491  Summer       0       0    21.1     2.5       0       0      55    1.20
## 1237  Winter       0       0   -12.1     1.6       0       0      30    0.91
## 5532  Summer       0       0    18.4     1.6       0       0      48    2.92
## 5201  Summer       0       0    22.4     1.7       0       0      71    0.96
##      col 387    col 388 col 389 col 390 col 391 col 392 col 393 col 394 col 395
## 1658    -8.5 No Holiday     1.2      60  Winter     Yes   -14.8  Winter     1.2
## 3485     6.4 No Holiday     0.5      66  Spring     Yes     0.4  Spring     0.5
## 5491    31.3 No Holiday     2.5      55  Summer     Yes    21.1  Summer     2.5
## 1237     3.9 No Holiday     1.6      30  Winter     Yes   -12.1  Winter     1.6
## 5532    30.7 No Holiday     1.6      48  Summer     Yes    18.4  Summer     1.6
## 5201    28.2 No Holiday     1.7      71  Summer     Yes    22.4  Summer     1.7
##      col 396 col 397 col 398 col 399    col 400 col 401 col 402 col 403 col 404
## 1658    1908   -14.8       0       0 No Holiday     Yes     Yes     126    0.00
## 3485    2000     0.4       0       0 No Holiday     Yes     Yes     117    0.00
## 5491    1550    21.1       0       0 No Holiday     Yes     Yes    2770    1.20
## 1237    1085   -12.1       0       0 No Holiday     Yes     Yes     271    0.91
## 5532    1705    18.4       0       0 No Holiday     Yes     Yes     687    2.92
## 5201    2000    22.4       0       0 No Holiday     Yes     Yes    1105    0.96
##      col 405 col 406 col 407    col 408 col 409 col 410 col 411 col 412
## 1658       0       1       1   8/2/2018       0      60     126  Winter
## 3485       0       4       4 25/04/2018       0      66     117  Spring
## 5491       0      18      18 17/07/2018       0      55    2770  Summer
## 1237       0      12      12 21/01/2018       0      30     271  Winter
## 5532       0      11      11 19/07/2018       0      48     687  Summer
## 5201       0      16      16   5/7/2018       0      71    1105  Summer
##         col 413 col 414    col 415    col 416 col 417 col 418    col 419
## 1658   8/2/2018     Yes   8/2/2018 No Holiday    -8.5      60 No Holiday
## 3485 25/04/2018     Yes 25/04/2018 No Holiday     6.4      66 No Holiday
## 5491 17/07/2018     Yes 17/07/2018 No Holiday    31.3      55 No Holiday
## 1237 21/01/2018     Yes 21/01/2018 No Holiday     3.9      30 No Holiday
## 5532 19/07/2018     Yes 19/07/2018 No Holiday    30.7      48 No Holiday
## 5201   5/7/2018     Yes   5/7/2018 No Holiday    28.2      71 No Holiday
##      col 420    col 421 col 422 col 423 col 424 col 425 col 426 col 427
## 1658  Winter   8/2/2018       1    1908    1908       0     1.2     1.2
## 3485  Spring 25/04/2018       4    2000    2000       0     0.5     0.5
## 5491  Summer 17/07/2018      18    1550    1550       0     2.5     2.5
## 1237  Winter 21/01/2018      12    1085    1085       0     1.6     1.6
## 5532  Summer 19/07/2018      11    1705    1705       0     1.6     1.6
## 5201  Summer   5/7/2018      16    2000    2000       0     1.7     1.7
##         col 428    col 429 col 430    col 431    col 432 col 433    col 434
## 1658   8/2/2018 No Holiday    1908 No Holiday No Holiday       1   8/2/2018
## 3485 25/04/2018 No Holiday    2000 No Holiday No Holiday       4 25/04/2018
## 5491 17/07/2018 No Holiday    1550 No Holiday No Holiday      18 17/07/2018
## 1237 21/01/2018 No Holiday    1085 No Holiday No Holiday      12 21/01/2018
## 5532 19/07/2018 No Holiday    1705 No Holiday No Holiday      11 19/07/2018
## 5201   5/7/2018 No Holiday    2000 No Holiday No Holiday      16   5/7/2018
##      col 435 col 436 col 437 col 438 col 439 col 440 col 441    col 442 col 443
## 1658    0.00    1908     Yes    -8.5    1908   -14.8    0.00   8/2/2018       0
## 3485    0.00    2000     Yes     6.4    2000     0.4    0.00 25/04/2018       0
## 5491    1.20    1550     Yes    31.3    1550    21.1    1.20 17/07/2018       0
## 1237    0.91    1085     Yes     3.9    1085   -12.1    0.91 21/01/2018       0
## 5532    2.92    1705     Yes    30.7    1705    18.4    2.92 19/07/2018       0
## 5201    0.96    2000     Yes    28.2    2000    22.4    0.96   5/7/2018       0
##      col 444 col 445    col 446    col 447 col 448 col 449 col 450    col 451
## 1658    0.00    1908   8/2/2018 No Holiday       1       0    -8.5   8/2/2018
## 3485    0.00    2000 25/04/2018 No Holiday       4       0     6.4 25/04/2018
## 5491    1.20    1550 17/07/2018 No Holiday      18       0    31.3 17/07/2018
## 1237    0.91    1085 21/01/2018 No Holiday      12       0     3.9 21/01/2018
## 5532    2.92    1705 19/07/2018 No Holiday      11       0    30.7 19/07/2018
## 5201    0.96    2000   5/7/2018 No Holiday      16       0    28.2   5/7/2018
##      col 452 col 453 col 454    col 455 col 456 col 457 col 458 col 459 col 460
## 1658       1       1   -14.8 No Holiday       0   -14.8     1.2     126   -14.8
## 3485       4       4     0.4 No Holiday       0     0.4     0.5     117     0.4
## 5491      18      18    21.1 No Holiday       0    21.1     2.5    2770    21.1
## 1237      12      12   -12.1 No Holiday       0   -12.1     1.6     271   -12.1
## 5532      11      11    18.4 No Holiday       0    18.4     1.6     687    18.4
## 5201      16      16    22.4 No Holiday       0    22.4     1.7    1105    22.4
##      col 461 col 462 col 463 col 464 col 465 col 466    col 467 col 468
## 1658       0    -8.5   -14.8      60     Yes       0   8/2/2018    1908
## 3485       0     6.4     0.4      66     Yes       0 25/04/2018    2000
## 5491       0    31.3    21.1      55     Yes       0 17/07/2018    1550
## 1237       0     3.9   -12.1      30     Yes       0 21/01/2018    1085
## 5532       0    30.7    18.4      48     Yes       0 19/07/2018    1705
## 5201       0    28.2    22.4      71     Yes       0   5/7/2018    2000
##         col 469 col 470    col 471 col 472 col 473 col 474 col 475 col 476
## 1658   8/2/2018      60 No Holiday   -14.8  Winter       0     126      60
## 3485 25/04/2018      66 No Holiday     0.4  Spring       0     117      66
## 5491 17/07/2018      55 No Holiday    21.1  Summer       0    2770      55
## 1237 21/01/2018      30 No Holiday   -12.1  Winter       0     271      30
## 5532 19/07/2018      48 No Holiday    18.4  Summer       0     687      48
## 5201   5/7/2018      71 No Holiday    22.4  Summer       0    1105      71
##      col 477 col 478 col 479 col 480 col 481 col 482 col 483 col 484 col 485
## 1658       0       0     126       0   -14.8     Yes    0.00       0    -8.5
## 3485       0       0     117       0     0.4     Yes    0.00       0     6.4
## 5491       0       0    2770       0    21.1     Yes    1.20       0    31.3
## 1237       0       0     271       0   -12.1     Yes    0.91       0     3.9
## 5532       0       0     687       0    18.4     Yes    2.92       0    30.7
## 5201       0       0    1105       0    22.4     Yes    0.96       0    28.2
##      col 486 col 487 col 488 col 489 col 490 col 491 col 492 col 493 col 494
## 1658   -14.8    0.00    -8.5       1    -8.5     126    -8.5  Winter    0.00
## 3485     0.4    0.00     6.4       4     6.4     117     6.4  Spring    0.00
## 5491    21.1    1.20    31.3      18    31.3    2770    31.3  Summer    1.20
## 1237   -12.1    0.91     3.9      12     3.9     271     3.9  Winter    0.91
## 5532    18.4    2.92    30.7      11    30.7     687    30.7  Summer    2.92
## 5201    22.4    0.96    28.2      16    28.2    1105    28.2  Summer    0.96
##      col 495 col 496 col 497 col 498 col 499 col 500 col 501 col 502 col 503
## 1658       0     Yes       0     Yes       1     1.2       1       0     126
## 3485       0     Yes       0     Yes       4     0.5       4       0     117
## 5491       0     Yes       0     Yes      18     2.5      18       0    2770
## 1237       0     Yes       0     Yes      12     1.6      12       0     271
## 5532       0     Yes       0     Yes      11     1.6      11       0     687
## 5201       0     Yes       0     Yes      16     1.7      16       0    1105
##      col 504 col 505 col 506 col 507 col 508    col 509 col 510 col 511 col 512
## 1658     126     Yes       1    1908   -14.8 No Holiday    0.00       0   -14.8
## 3485     117     Yes       4    2000     0.4 No Holiday    0.00       0     0.4
## 5491    2770     Yes      18    1550    21.1 No Holiday    1.20       0    21.1
## 1237     271     Yes      12    1085   -12.1 No Holiday    0.91       0   -12.1
## 5532     687     Yes      11    1705    18.4 No Holiday    2.92       0    18.4
## 5201    1105     Yes      16    2000    22.4 No Holiday    0.96       0    22.4
##         col 513 col 514 col 515 col 516 col 517 col 518 col 519 col 520 col 521
## 1658   8/2/2018      60    0.00    -8.5    0.00     1.2     Yes       0    -8.5
## 3485 25/04/2018      66    0.00     6.4    0.00     0.5     Yes       0     6.4
## 5491 17/07/2018      55    1.20    31.3    1.20     2.5     Yes       0    31.3
## 1237 21/01/2018      30    0.91     3.9    0.91     1.6     Yes       0     3.9
## 5532 19/07/2018      48    2.92    30.7    2.92     1.6     Yes       0    30.7
## 5201   5/7/2018      71    0.96    28.2    0.96     1.7     Yes       0    28.2
##         col 522 col 523 col 524 col 525 col 526 col 527    col 528 col 529
## 1658 No Holiday     Yes       0  Winter    0.00      60   8/2/2018     126
## 3485 No Holiday     Yes       0  Spring    0.00      66 25/04/2018     117
## 5491 No Holiday     Yes       0  Summer    1.20      55 17/07/2018    2770
## 1237 No Holiday     Yes       0  Winter    0.91      30 21/01/2018     271
## 5532 No Holiday     Yes       0  Summer    2.92      48 19/07/2018     687
## 5201 No Holiday     Yes       0  Summer    0.96      71   5/7/2018    1105
##      col 530    col 531 col 532 col 533 col 534 col 535 col 536 col 537
## 1658    0.00 No Holiday       0    1908    0.00  Winter    -8.5     126
## 3485    0.00 No Holiday       0    2000    0.00  Spring     6.4     117
## 5491    1.20 No Holiday       0    1550    1.20  Summer    31.3    2770
## 1237    0.91 No Holiday       0    1085    0.91  Winter     3.9     271
## 5532    2.92 No Holiday       0    1705    2.92  Summer    30.7     687
## 5201    0.96 No Holiday       0    2000    0.96  Summer    28.2    1105
##         col 538 col 539 col 540 col 541 col 542 col 543 col 544 col 545 col 546
## 1658   8/2/2018     Yes     1.2  Winter       0       1     Yes   -14.8    1908
## 3485 25/04/2018     Yes     0.5  Spring       0       4     Yes     0.4    2000
## 5491 17/07/2018     Yes     2.5  Summer       0      18     Yes    21.1    1550
## 1237 21/01/2018     Yes     1.6  Winter       0      12     Yes   -12.1    1085
## 5532 19/07/2018     Yes     1.6  Summer       0      11     Yes    18.4    1705
## 5201   5/7/2018     Yes     1.7  Summer       0      16     Yes    22.4    2000
##      col 547 col 548 col 549 col 550    col 551 col 552 col 553 col 554 col 555
## 1658    0.00  Winter    0.00   -14.8   8/2/2018  Winter      60    -8.5    0.00
## 3485    0.00  Spring    0.00     0.4 25/04/2018  Spring      66     6.4    0.00
## 5491    1.20  Summer    1.20    21.1 17/07/2018  Summer      55    31.3    1.20
## 1237    0.91  Winter    0.91   -12.1 21/01/2018  Winter      30     3.9    0.91
## 5532    2.92  Summer    2.92    18.4 19/07/2018  Summer      48    30.7    2.92
## 5201    0.96  Summer    0.96    22.4   5/7/2018  Summer      71    28.2    0.96
##         col 556 col 557    col 558 col 559    col 560 col 561 col 562 col 563
## 1658 No Holiday      60 No Holiday     Yes No Holiday       0   -14.8    0.00
## 3485 No Holiday      66 No Holiday     Yes No Holiday       0     0.4    0.00
## 5491 No Holiday      55 No Holiday     Yes No Holiday       0    21.1    1.20
## 1237 No Holiday      30 No Holiday     Yes No Holiday       0   -12.1    0.91
## 5532 No Holiday      48 No Holiday     Yes No Holiday       0    18.4    2.92
## 5201 No Holiday      71 No Holiday     Yes No Holiday       0    22.4    0.96
##      col 564 col 565    col 566 col 567 col 568 col 569 col 570 col 571 col 572
## 1658       1       0 No Holiday     126  Winter     Yes     1.2    0.00      60
## 3485       4       0 No Holiday     117  Spring     Yes     0.5    0.00      66
## 5491      18       0 No Holiday    2770  Summer     Yes     2.5    1.20      55
## 1237      12       0 No Holiday     271  Winter     Yes     1.6    0.91      30
## 5532      11       0 No Holiday     687  Summer     Yes     1.6    2.92      48
## 5201      16       0 No Holiday    1105  Summer     Yes     1.7    0.96      71
##      col 573 col 574    col 575 col 576 col 577    col 578 col 579 col 580
## 1658       0    0.00   8/2/2018   -14.8   -14.8 No Holiday  Winter      60
## 3485       0    0.00 25/04/2018     0.4     0.4 No Holiday  Spring      66
## 5491       0    1.20 17/07/2018    21.1    21.1 No Holiday  Summer      55
## 1237       0    0.91 21/01/2018   -12.1   -12.1 No Holiday  Winter      30
## 5532       0    2.92 19/07/2018    18.4    18.4 No Holiday  Summer      48
## 5201       0    0.96   5/7/2018    22.4    22.4 No Holiday  Summer      71
##      col 581 col 582    col 583 col 584 col 585 col 586 col 587 col 588
## 1658     126     Yes   8/2/2018   -14.8     126     126   -14.8       0
## 3485     117     Yes 25/04/2018     0.4     117     117     0.4       0
## 5491    2770     Yes 17/07/2018    21.1    2770    2770    21.1       0
## 1237     271     Yes 21/01/2018   -12.1     271     271   -12.1       0
## 5532     687     Yes 19/07/2018    18.4     687     687    18.4       0
## 5201    1105     Yes   5/7/2018    22.4    1105    1105    22.4       0
##         col 589 col 590    col 591 col 592 col 593 col 594    col 595 col 596
## 1658   8/2/2018    1908 No Holiday  Winter    0.00     Yes   8/2/2018     1.2
## 3485 25/04/2018    2000 No Holiday  Spring    0.00     Yes 25/04/2018     0.5
## 5491 17/07/2018    1550 No Holiday  Summer    1.20     Yes 17/07/2018     2.5
## 1237 21/01/2018    1085 No Holiday  Winter    0.91     Yes 21/01/2018     1.6
## 5532 19/07/2018    1705 No Holiday  Summer    2.92     Yes 19/07/2018     1.6
## 5201   5/7/2018    2000 No Holiday  Summer    0.96     Yes   5/7/2018     1.7
##      col 597 col 598    col 599 col 600 col 601 col 602 col 603 col 604 col 605
## 1658   -14.8   -14.8   8/2/2018  Winter    1908  Winter    1908       0    0.00
## 3485     0.4     0.4 25/04/2018  Spring    2000  Spring    2000       0    0.00
## 5491    21.1    21.1 17/07/2018  Summer    1550  Summer    1550       0    1.20
## 1237   -12.1   -12.1 21/01/2018  Winter    1085  Winter    1085       0    0.91
## 5532    18.4    18.4 19/07/2018  Summer    1705  Summer    1705       0    2.92
## 5201    22.4    22.4   5/7/2018  Summer    2000  Summer    2000       0    0.96
##         col 606 col 607 col 608 col 609 col 610 col 611 col 612    col 613
## 1658 No Holiday      60    -8.5       0    0.00    0.00    1908 No Holiday
## 3485 No Holiday      66     6.4       0    0.00    0.00    2000 No Holiday
## 5491 No Holiday      55    31.3       0    1.20    1.20    1550 No Holiday
## 1237 No Holiday      30     3.9       0    0.91    0.91    1085 No Holiday
## 5532 No Holiday      48    30.7       0    2.92    2.92    1705 No Holiday
## 5201 No Holiday      71    28.2       0    0.96    0.96    2000 No Holiday
##         col 614    col 615 col 616 col 617 col 618    col 619 col 620 col 621
## 1658 No Holiday No Holiday    1908     1.2  Winter   8/2/2018    -8.5    0.00
## 3485 No Holiday No Holiday    2000     0.5  Spring 25/04/2018     6.4    0.00
## 5491 No Holiday No Holiday    1550     2.5  Summer 17/07/2018    31.3    1.20
## 1237 No Holiday No Holiday    1085     1.6  Winter 21/01/2018     3.9    0.91
## 5532 No Holiday No Holiday    1705     1.6  Summer 19/07/2018    30.7    2.92
## 5201 No Holiday No Holiday    2000     1.7  Summer   5/7/2018    28.2    0.96
##      col 622 col 623 col 624 col 625 col 626 col 627 col 628    col 629 col 630
## 1658     1.2    1908    1908       0     Yes     126    -8.5 No Holiday    0.00
## 3485     0.5    2000    2000       0     Yes     117     6.4 No Holiday    0.00
## 5491     2.5    1550    1550       0     Yes    2770    31.3 No Holiday    1.20
## 1237     1.6    1085    1085       0     Yes     271     3.9 No Holiday    0.91
## 5532     1.6    1705    1705       0     Yes     687    30.7 No Holiday    2.92
## 5201     1.7    2000    2000       0     Yes    1105    28.2 No Holiday    0.96
##      col 631 col 632 col 633 col 634 col 635 col 636 col 637    col 638 col 639
## 1658  Winter    -8.5     1.2    -8.5     126       0    0.00 No Holiday  Winter
## 3485  Spring     6.4     0.5     6.4     117       0    0.00 No Holiday  Spring
## 5491  Summer    31.3     2.5    31.3    2770       0    1.20 No Holiday  Summer
## 1237  Winter     3.9     1.6     3.9     271       0    0.91 No Holiday  Winter
## 5532  Summer    30.7     1.6    30.7     687       0    2.92 No Holiday  Summer
## 5201  Summer    28.2     1.7    28.2    1105       0    0.96 No Holiday  Summer
##      col 640 col 641 col 642 col 643 col 644 col 645 col 646 col 647 col 648
## 1658    0.00       0     126    -8.5     126    -8.5    -8.5    1908  Winter
## 3485    0.00       0     117     6.4     117     6.4     6.4    2000  Spring
## 5491    1.20       0    2770    31.3    2770    31.3    31.3    1550  Summer
## 1237    0.91       0     271     3.9     271     3.9     3.9    1085  Winter
## 5532    2.92       0     687    30.7     687    30.7    30.7    1705  Summer
## 5201    0.96       0    1105    28.2    1105    28.2    28.2    2000  Summer
##      col 649 col 650 col 651 col 652 col 653 col 654    col 655    col 656
## 1658    0.00    -8.5  Winter    -8.5    1908       0 No Holiday No Holiday
## 3485    0.00     6.4  Spring     6.4    2000       0 No Holiday No Holiday
## 5491    1.20    31.3  Summer    31.3    1550       0 No Holiday No Holiday
## 1237    0.91     3.9  Winter     3.9    1085       0 No Holiday No Holiday
## 5532    2.92    30.7  Summer    30.7    1705       0 No Holiday No Holiday
## 5201    0.96    28.2  Summer    28.2    2000       0 No Holiday No Holiday
##      col 657 col 658 col 659 col 660    col 661 col 662 col 663 col 664 col 665
## 1658     Yes     Yes  Winter   -14.8 No Holiday     126     126     126       0
## 3485     Yes     Yes  Spring     0.4 No Holiday     117     117     117       0
## 5491     Yes     Yes  Summer    21.1 No Holiday    2770    2770    2770       0
## 1237     Yes     Yes  Winter   -12.1 No Holiday     271     271     271       0
## 5532     Yes     Yes  Summer    18.4 No Holiday     687     687     687       0
## 5201     Yes     Yes  Summer    22.4 No Holiday    1105    1105    1105       0
##      col 666 col 667    col 668 col 669 col 670 col 671    col 672 col 673
## 1658       1    0.00   8/2/2018       0     Yes     Yes No Holiday       0
## 3485       4    0.00 25/04/2018       0     Yes     Yes No Holiday       0
## 5491      18    1.20 17/07/2018       0     Yes     Yes No Holiday       0
## 1237      12    0.91 21/01/2018       0     Yes     Yes No Holiday       0
## 5532      11    2.92 19/07/2018       0     Yes     Yes No Holiday       0
## 5201      16    0.96   5/7/2018       0     Yes     Yes No Holiday       0
##      col 674    col 675    col 676 col 677 col 678 col 679 col 680    col 681
## 1658       1   8/2/2018 No Holiday    0.00  Winter     1.2    0.00   8/2/2018
## 3485       4 25/04/2018 No Holiday    0.00  Spring     0.5    0.00 25/04/2018
## 5491      18 17/07/2018 No Holiday    1.20  Summer     2.5    1.20 17/07/2018
## 1237      12 21/01/2018 No Holiday    0.91  Winter     1.6    0.91 21/01/2018
## 5532      11 19/07/2018 No Holiday    2.92  Summer     1.6    2.92 19/07/2018
## 5201      16   5/7/2018 No Holiday    0.96  Summer     1.7    0.96   5/7/2018
##      col 682    col 683 col 684 col 685 col 686 col 687 col 688    col 689
## 1658      60 No Holiday    0.00       1      60   -14.8     126 No Holiday
## 3485      66 No Holiday    0.00       4      66     0.4     117 No Holiday
## 5491      55 No Holiday    1.20      18      55    21.1    2770 No Holiday
## 1237      30 No Holiday    0.91      12      30   -12.1     271 No Holiday
## 5532      48 No Holiday    2.92      11      48    18.4     687 No Holiday
## 5201      71 No Holiday    0.96      16      71    22.4    1105 No Holiday
##      col 690    col 691 col 692 col 693 col 694    col 695 col 696 col 697
## 1658   -14.8   8/2/2018       1      60  Winter No Holiday       1     126
## 3485     0.4 25/04/2018       4      66  Spring No Holiday       4     117
## 5491    21.1 17/07/2018      18      55  Summer No Holiday      18    2770
## 1237   -12.1 21/01/2018      12      30  Winter No Holiday      12     271
## 5532    18.4 19/07/2018      11      48  Summer No Holiday      11     687
## 5201    22.4   5/7/2018      16      71  Summer No Holiday      16    1105
##      col 698 col 699 col 700 col 701 col 702 col 703 col 704 col 705 col 706
## 1658       0    -8.5     1.2     Yes      60  Winter     126     Yes     126
## 3485       0     6.4     0.5     Yes      66  Spring     117     Yes     117
## 5491       0    31.3     2.5     Yes      55  Summer    2770     Yes    2770
## 1237       0     3.9     1.6     Yes      30  Winter     271     Yes     271
## 5532       0    30.7     1.6     Yes      48  Summer     687     Yes     687
## 5201       0    28.2     1.7     Yes      71  Summer    1105     Yes    1105
##      col 707 col 708 col 709 col 710 col 711 col 712    col 713 col 714 col 715
## 1658       1       0   -14.8   -14.8    1908      60 No Holiday    1908     Yes
## 3485       4       0     0.4     0.4    2000      66 No Holiday    2000     Yes
## 5491      18       0    21.1    21.1    1550      55 No Holiday    1550     Yes
## 1237      12       0   -12.1   -12.1    1085      30 No Holiday    1085     Yes
## 5532      11       0    18.4    18.4    1705      48 No Holiday    1705     Yes
## 5201      16       0    22.4    22.4    2000      71 No Holiday    2000     Yes
##      col 716 col 717 col 718 col 719    col 720 col 721    col 722    col 723
## 1658     1.2    -8.5       1       1   8/2/2018       0   8/2/2018   8/2/2018
## 3485     0.5     6.4       4       4 25/04/2018       0 25/04/2018 25/04/2018
## 5491     2.5    31.3      18      18 17/07/2018       0 17/07/2018 17/07/2018
## 1237     1.6     3.9      12      12 21/01/2018       0 21/01/2018 21/01/2018
## 5532     1.6    30.7      11      11 19/07/2018       0 19/07/2018 19/07/2018
## 5201     1.7    28.2      16      16   5/7/2018       0   5/7/2018   5/7/2018
##      col 724    col 725 col 726 col 727 col 728 col 729 col 730 col 731 col 732
## 1658  Winter   8/2/2018       0    1908    1908    0.00       0    1908     1.2
## 3485  Spring 25/04/2018       0    2000    2000    0.00       0    2000     0.5
## 5491  Summer 17/07/2018       0    1550    1550    1.20       0    1550     2.5
## 1237  Winter 21/01/2018       0    1085    1085    0.91       0    1085     1.6
## 5532  Summer 19/07/2018       0    1705    1705    2.92       0    1705     1.6
## 5201  Summer   5/7/2018       0    2000    2000    0.96       0    2000     1.7
##      col 733 col 734 col 735 col 736    col 737    col 738    col 739 col 740
## 1658     Yes   -14.8       0       1   8/2/2018 No Holiday   8/2/2018     126
## 3485     Yes     0.4       0       4 25/04/2018 No Holiday 25/04/2018     117
## 5491     Yes    21.1       0      18 17/07/2018 No Holiday 17/07/2018    2770
## 1237     Yes   -12.1       0      12 21/01/2018 No Holiday 21/01/2018     271
## 5532     Yes    18.4       0      11 19/07/2018 No Holiday 19/07/2018     687
## 5201     Yes    22.4       0      16   5/7/2018 No Holiday   5/7/2018    1105
##      col 741 col 742    col 743 col 744 col 745    col 746 col 747 col 748
## 1658     126     126   8/2/2018       0       1   8/2/2018  Winter  Winter
## 3485     117     117 25/04/2018       0       4 25/04/2018  Spring  Spring
## 5491    2770    2770 17/07/2018       0      18 17/07/2018  Summer  Summer
## 1237     271     271 21/01/2018       0      12 21/01/2018  Winter  Winter
## 5532     687     687 19/07/2018       0      11 19/07/2018  Summer  Summer
## 5201    1105    1105   5/7/2018       0      16   5/7/2018  Summer  Summer
##      col 749 col 750    col 751 col 752 col 753 col 754 col 755 col 756
## 1658      60    0.00 No Holiday     Yes   -14.8      60     Yes       1
## 3485      66    0.00 No Holiday     Yes     0.4      66     Yes       4
## 5491      55    1.20 No Holiday     Yes    21.1      55     Yes      18
## 1237      30    0.91 No Holiday     Yes   -12.1      30     Yes      12
## 5532      48    2.92 No Holiday     Yes    18.4      48     Yes      11
## 5201      71    0.96 No Holiday     Yes    22.4      71     Yes      16
##         col 757 col 758 col 759 col 760 col 761 col 762 col 763 col 764 col 765
## 1658   8/2/2018       1  Winter     1.2      60       1   -14.8     126       0
## 3485 25/04/2018       4  Spring     0.5      66       4     0.4     117       0
## 5491 17/07/2018      18  Summer     2.5      55      18    21.1    2770       0
## 1237 21/01/2018      12  Winter     1.6      30      12   -12.1     271       0
## 5532 19/07/2018      11  Summer     1.6      48      11    18.4     687       0
## 5201   5/7/2018      16  Summer     1.7      71      16    22.4    1105       0
##      col 766 col 767 col 768 col 769 col 770 col 771 col 772 col 773 col 774
## 1658       0      60       0    -8.5  Winter    1908      60     126    1908
## 3485       0      66       0     6.4  Spring    2000      66     117    2000
## 5491       0      55       0    31.3  Summer    1550      55    2770    1550
## 1237       0      30       0     3.9  Winter    1085      30     271    1085
## 5532       0      48       0    30.7  Summer    1705      48     687    1705
## 5201       0      71       0    28.2  Summer    2000      71    1105    2000
##      col 775 col 776 col 777    col 778 col 779 col 780 col 781 col 782 col 783
## 1658   -14.8    -8.5      60   8/2/2018       0       0    1908       0       1
## 3485     0.4     6.4      66 25/04/2018       0       0    2000       0       4
## 5491    21.1    31.3      55 17/07/2018       0       0    1550       0      18
## 1237   -12.1     3.9      30 21/01/2018       0       0    1085       0      12
## 5532    18.4    30.7      48 19/07/2018       0       0    1705       0      11
## 5201    22.4    28.2      71   5/7/2018       0       0    2000       0      16
##      col 784 col 785 col 786 col 787 col 788 col 789 col 790 col 791 col 792
## 1658     Yes      60    1908     1.2    0.00       1   -14.8    -8.5     1.2
## 3485     Yes      66    2000     0.5    0.00       4     0.4     6.4     0.5
## 5491     Yes      55    1550     2.5    1.20      18    21.1    31.3     2.5
## 1237     Yes      30    1085     1.6    0.91      12   -12.1     3.9     1.6
## 5532     Yes      48    1705     1.6    2.92      11    18.4    30.7     1.6
## 5201     Yes      71    2000     1.7    0.96      16    22.4    28.2     1.7
##         col 793 col 794 col 795 col 796 col 797 col 798 col 799 col 800 col 801
## 1658   8/2/2018   -14.8       0    -8.5      60    -8.5    0.00    1908    1908
## 3485 25/04/2018     0.4       0     6.4      66     6.4    0.00    2000    2000
## 5491 17/07/2018    21.1       0    31.3      55    31.3    1.20    1550    1550
## 1237 21/01/2018   -12.1       0     3.9      30     3.9    0.91    1085    1085
## 5532 19/07/2018    18.4       0    30.7      48    30.7    2.92    1705    1705
## 5201   5/7/2018    22.4       0    28.2      71    28.2    0.96    2000    2000
##      col 802 col 803 col 804 col 805 col 806 col 807    col 808 col 809 col 810
## 1658      60      60      60    0.00       0    0.00 No Holiday    1908       0
## 3485      66      66      66    0.00       0    0.00 No Holiday    2000       0
## 5491      55      55      55    1.20       0    1.20 No Holiday    1550       0
## 1237      30      30      30    0.91       0    0.91 No Holiday    1085       0
## 5532      48      48      48    2.92       0    2.92 No Holiday    1705       0
## 5201      71      71      71    0.96       0    0.96 No Holiday    2000       0
##      col 811 col 812 col 813 col 814 col 815 col 816 col 817 col 818 col 819
## 1658    -8.5       0    1908  Winter   -14.8  Winter  Winter   -14.8       1
## 3485     6.4       0    2000  Spring     0.4  Spring  Spring     0.4       4
## 5491    31.3       0    1550  Summer    21.1  Summer  Summer    21.1      18
## 1237     3.9       0    1085  Winter   -12.1  Winter  Winter   -12.1      12
## 5532    30.7       0    1705  Summer    18.4  Summer  Summer    18.4      11
## 5201    28.2       0    2000  Summer    22.4  Summer  Summer    22.4      16
##      col 820 col 821 col 822 col 823 col 824    col 825 col 826 col 827 col 828
## 1658       1    0.00   -14.8      60     126   8/2/2018       1    0.00    -8.5
## 3485       4    0.00     0.4      66     117 25/04/2018       4    0.00     6.4
## 5491      18    1.20    21.1      55    2770 17/07/2018      18    1.20    31.3
## 1237      12    0.91   -12.1      30     271 21/01/2018      12    0.91     3.9
## 5532      11    2.92    18.4      48     687 19/07/2018      11    2.92    30.7
## 5201      16    0.96    22.4      71    1105   5/7/2018      16    0.96    28.2
##      col 829 col 830 col 831 col 832    col 833 col 834 col 835 col 836 col 837
## 1658       1  Winter       0     Yes   8/2/2018     126    1908    1908  Winter
## 3485       4  Spring       0     Yes 25/04/2018     117    2000    2000  Spring
## 5491      18  Summer       0     Yes 17/07/2018    2770    1550    1550  Summer
## 1237      12  Winter       0     Yes 21/01/2018     271    1085    1085  Winter
## 5532      11  Summer       0     Yes 19/07/2018     687    1705    1705  Summer
## 5201      16  Summer       0     Yes   5/7/2018    1105    2000    2000  Summer
##      col 838 col 839 col 840 col 841    col 842 col 843 col 844 col 845 col 846
## 1658       1      60    0.00     1.2 No Holiday    -8.5       1     126       0
## 3485       4      66    0.00     0.5 No Holiday     6.4       4     117       0
## 5491      18      55    1.20     2.5 No Holiday    31.3      18    2770       0
## 1237      12      30    0.91     1.6 No Holiday     3.9      12     271       0
## 5532      11      48    2.92     1.6 No Holiday    30.7      11     687       0
## 5201      16      71    0.96     1.7 No Holiday    28.2      16    1105       0
##      col 847 col 848 col 849 col 850 col 851 col 852 col 853 col 854 col 855
## 1658     Yes       0    -8.5       0  Winter    -8.5     Yes       0     1.2
## 3485     Yes       0     6.4       0  Spring     6.4     Yes       0     0.5
## 5491     Yes       0    31.3       0  Summer    31.3     Yes       0     2.5
## 1237     Yes       0     3.9       0  Winter     3.9     Yes       0     1.6
## 5532     Yes       0    30.7       0  Summer    30.7     Yes       0     1.6
## 5201     Yes       0    28.2       0  Summer    28.2     Yes       0     1.7
##      col 856 col 857 col 858 col 859 col 860 col 861 col 862    col 863 col 864
## 1658      60    -8.5       0    0.00    1908      60   -14.8 No Holiday       1
## 3485      66     6.4       0    0.00    2000      66     0.4 No Holiday       4
## 5491      55    31.3       0    1.20    1550      55    21.1 No Holiday      18
## 1237      30     3.9       0    0.91    1085      30   -12.1 No Holiday      12
## 5532      48    30.7       0    2.92    1705      48    18.4 No Holiday      11
## 5201      71    28.2       0    0.96    2000      71    22.4 No Holiday      16
##      col 865    col 866 col 867 col 868 col 869 col 870 col 871 col 872 col 873
## 1658    -8.5   8/2/2018    0.00   -14.8       0    0.00     Yes     Yes    0.00
## 3485     6.4 25/04/2018    0.00     0.4       0    0.00     Yes     Yes    0.00
## 5491    31.3 17/07/2018    1.20    21.1       0    1.20     Yes     Yes    1.20
## 1237     3.9 21/01/2018    0.91   -12.1       0    0.91     Yes     Yes    0.91
## 5532    30.7 19/07/2018    2.92    18.4       0    2.92     Yes     Yes    2.92
## 5201    28.2   5/7/2018    0.96    22.4       0    0.96     Yes     Yes    0.96
##      col 874 col 875 col 876 col 877 col 878 col 879 col 880 col 881    col 882
## 1658       0     1.2    0.00   -14.8     126    -8.5       0   -14.8   8/2/2018
## 3485       0     0.5    0.00     0.4     117     6.4       0     0.4 25/04/2018
## 5491       0     2.5    1.20    21.1    2770    31.3       0    21.1 17/07/2018
## 1237       0     1.6    0.91   -12.1     271     3.9       0   -12.1 21/01/2018
## 5532       0     1.6    2.92    18.4     687    30.7       0    18.4 19/07/2018
## 5201       0     1.7    0.96    22.4    1105    28.2       0    22.4   5/7/2018
##      col 883 col 884 col 885 col 886    col 887 col 888 col 889 col 890 col 891
## 1658     126       0       1   -14.8   8/2/2018       0    0.00       1   -14.8
## 3485     117       0       4     0.4 25/04/2018       0    0.00       4     0.4
## 5491    2770       0      18    21.1 17/07/2018       0    1.20      18    21.1
## 1237     271       0      12   -12.1 21/01/2018       0    0.91      12   -12.1
## 5532     687       0      11    18.4 19/07/2018       0    2.92      11    18.4
## 5201    1105       0      16    22.4   5/7/2018       0    0.96      16    22.4
##      col 892 col 893 col 894 col 895 col 896 col 897 col 898    col 899 col 900
## 1658     126    0.00     Yes  Winter     Yes    1908   -14.8   8/2/2018       0
## 3485     117    0.00     Yes  Spring     Yes    2000     0.4 25/04/2018       0
## 5491    2770    1.20     Yes  Summer     Yes    1550    21.1 17/07/2018       0
## 1237     271    0.91     Yes  Winter     Yes    1085   -12.1 21/01/2018       0
## 5532     687    2.92     Yes  Summer     Yes    1705    18.4 19/07/2018       0
## 5201    1105    0.96     Yes  Summer     Yes    2000    22.4   5/7/2018       0
##         col 901 col 902    col 903 col 904 col 905 col 906    col 907 col 908
## 1658 No Holiday       0 No Holiday   -14.8    1908       1   8/2/2018    -8.5
## 3485 No Holiday       0 No Holiday     0.4    2000       4 25/04/2018     6.4
## 5491 No Holiday       0 No Holiday    21.1    1550      18 17/07/2018    31.3
## 1237 No Holiday       0 No Holiday   -12.1    1085      12 21/01/2018     3.9
## 5532 No Holiday       0 No Holiday    18.4    1705      11 19/07/2018    30.7
## 5201 No Holiday       0 No Holiday    22.4    2000      16   5/7/2018    28.2
##      col 909    col 910 col 911 col 912 col 913 col 914 col 915 col 916 col 917
## 1658       0   8/2/2018    0.00    -8.5       1     1.2       0    1908       1
## 3485       0 25/04/2018    0.00     6.4       4     0.5       0    2000       4
## 5491       0 17/07/2018    1.20    31.3      18     2.5       0    1550      18
## 1237       0 21/01/2018    0.91     3.9      12     1.6       0    1085      12
## 5532       0 19/07/2018    2.92    30.7      11     1.6       0    1705      11
## 5201       0   5/7/2018    0.96    28.2      16     1.7       0    2000      16
##      col 918    col 919 col 920 col 921 col 922 col 923 col 924 col 925 col 926
## 1658     126   8/2/2018    0.00     1.2   -14.8     1.2       1     1.2    1908
## 3485     117 25/04/2018    0.00     0.5     0.4     0.5       4     0.5    2000
## 5491    2770 17/07/2018    1.20     2.5    21.1     2.5      18     2.5    1550
## 1237     271 21/01/2018    0.91     1.6   -12.1     1.6      12     1.6    1085
## 5532     687 19/07/2018    2.92     1.6    18.4     1.6      11     1.6    1705
## 5201    1105   5/7/2018    0.96     1.7    22.4     1.7      16     1.7    2000
##      col 927    col 928 col 929 col 930 col 931 col 932 col 933 col 934 col 935
## 1658     Yes   8/2/2018       1   -14.8     Yes    -8.5    -8.5    0.00    0.00
## 3485     Yes 25/04/2018       4     0.4     Yes     6.4     6.4    0.00    0.00
## 5491     Yes 17/07/2018      18    21.1     Yes    31.3    31.3    1.20    1.20
## 1237     Yes 21/01/2018      12   -12.1     Yes     3.9     3.9    0.91    0.91
## 5532     Yes 19/07/2018      11    18.4     Yes    30.7    30.7    2.92    2.92
## 5201     Yes   5/7/2018      16    22.4     Yes    28.2    28.2    0.96    0.96
##      col 936    col 937 col 938 col 939 col 940    col 941 col 942    col 943
## 1658   -14.8 No Holiday      60     126    -8.5   8/2/2018    0.00 No Holiday
## 3485     0.4 No Holiday      66     117     6.4 25/04/2018    0.00 No Holiday
## 5491    21.1 No Holiday      55    2770    31.3 17/07/2018    1.20 No Holiday
## 1237   -12.1 No Holiday      30     271     3.9 21/01/2018    0.91 No Holiday
## 5532    18.4 No Holiday      48     687    30.7 19/07/2018    2.92 No Holiday
## 5201    22.4 No Holiday      71    1105    28.2   5/7/2018    0.96 No Holiday
##      col 944 col 945    col 946 col 947 col 948 col 949 col 950    col 951
## 1658    -8.5    0.00   8/2/2018       0     Yes  Winter       0 No Holiday
## 3485     6.4    0.00 25/04/2018       0     Yes  Spring       0 No Holiday
## 5491    31.3    1.20 17/07/2018       0     Yes  Summer       0 No Holiday
## 1237     3.9    0.91 21/01/2018       0     Yes  Winter       0 No Holiday
## 5532    30.7    2.92 19/07/2018       0     Yes  Summer       0 No Holiday
## 5201    28.2    0.96   5/7/2018       0     Yes  Summer       0 No Holiday
##         col 952 col 953 col 954 col 955 col 956    col 957    col 958 col 959
## 1658   8/2/2018       0     Yes       1  Winter No Holiday No Holiday     Yes
## 3485 25/04/2018       0     Yes       4  Spring No Holiday No Holiday     Yes
## 5491 17/07/2018       0     Yes      18  Summer No Holiday No Holiday     Yes
## 1237 21/01/2018       0     Yes      12  Winter No Holiday No Holiday     Yes
## 5532 19/07/2018       0     Yes      11  Summer No Holiday No Holiday     Yes
## 5201   5/7/2018       0     Yes      16  Summer No Holiday No Holiday     Yes
##      col 960 col 961 col 962 col 963 col 964 col 965 col 966 col 967 col 968
## 1658       1       0      60     1.2     126       0      60    0.00     Yes
## 3485       4       0      66     0.5     117       0      66    0.00     Yes
## 5491      18       0      55     2.5    2770       0      55    1.20     Yes
## 1237      12       0      30     1.6     271       0      30    0.91     Yes
## 5532      11       0      48     1.6     687       0      48    2.92     Yes
## 5201      16       0      71     1.7    1105       0      71    0.96     Yes
##      col 969 col 970 col 971 col 972 col 973 col 974    col 975 col 976 col 977
## 1658   -14.8       0      60    1908      60       0   8/2/2018     1.2     126
## 3485     0.4       0      66    2000      66       0 25/04/2018     0.5     117
## 5491    21.1       0      55    1550      55       0 17/07/2018     2.5    2770
## 1237   -12.1       0      30    1085      30       0 21/01/2018     1.6     271
## 5532    18.4       0      48    1705      48       0 19/07/2018     1.6     687
## 5201    22.4       0      71    2000      71       0   5/7/2018     1.7    1105
##         col 978 col 979 col 980 col 981 col 982 col 983 col 984 col 985 col 986
## 1658 No Holiday      60     1.2  Winter    1908    -8.5    1908      60  Winter
## 3485 No Holiday      66     0.5  Spring    2000     6.4    2000      66  Spring
## 5491 No Holiday      55     2.5  Summer    1550    31.3    1550      55  Summer
## 1237 No Holiday      30     1.6  Winter    1085     3.9    1085      30  Winter
## 5532 No Holiday      48     1.6  Summer    1705    30.7    1705      48  Summer
## 5201 No Holiday      71     1.7  Summer    2000    28.2    2000      71  Summer
##      col 987 col 988 col 989 col 990 col 991 col 992 col 993 col 994 col 995
## 1658       0       0   -14.8       0       0    -8.5     1.2    -8.5  Winter
## 3485       0       0     0.4       0       0     6.4     0.5     6.4  Spring
## 5491       0       0    21.1       0       0    31.3     2.5    31.3  Summer
## 1237       0       0   -12.1       0       0     3.9     1.6     3.9  Winter
## 5532       0       0    18.4       0       0    30.7     1.6    30.7  Summer
## 5201       0       0    22.4       0       0    28.2     1.7    28.2  Summer
##      col 996    col 997 col 998 col 999 col 1000 col 1001 col 1002 col 1003
## 1658   -14.8 No Holiday       0      60      1.2     1908      126        1
## 3485     0.4 No Holiday       0      66      0.5     2000      117        4
## 5491    21.1 No Holiday       0      55      2.5     1550     2770       18
## 1237   -12.1 No Holiday       0      30      1.6     1085      271       12
## 5532    18.4 No Holiday       0      48      1.6     1705      687       11
## 5201    22.4 No Holiday       0      71      1.7     2000     1105       16
##        col 1004 col 1005 col 1006   col 1007 col 1008   col 1009 col 1010
## 1658   8/2/2018     -8.5        0   8/2/2018       60   8/2/2018     -8.5
## 3485 25/04/2018      6.4        0 25/04/2018       66 25/04/2018      6.4
## 5491 17/07/2018     31.3        0 17/07/2018       55 17/07/2018     31.3
## 1237 21/01/2018      3.9        0 21/01/2018       30 21/01/2018      3.9
## 5532 19/07/2018     30.7        0 19/07/2018       48 19/07/2018     30.7
## 5201   5/7/2018     28.2        0   5/7/2018       71   5/7/2018     28.2
##        col 1011 col 1012 col 1013 col 1014 col 1015 col 1016 col 1017 col 1018
## 1658   8/2/2018      126     0.00     0.00   Winter   Winter    -14.8    -14.8
## 3485 25/04/2018      117     0.00     0.00   Spring   Spring      0.4      0.4
## 5491 17/07/2018     2770     1.20     1.20   Summer   Summer     21.1     21.1
## 1237 21/01/2018      271     0.91     0.91   Winter   Winter    -12.1    -12.1
## 5532 19/07/2018      687     2.92     2.92   Summer   Summer     18.4     18.4
## 5201   5/7/2018     1105     0.96     0.96   Summer   Summer     22.4     22.4
##      col 1019   col 1020 col 1021 col 1022 col 1023 col 1024 col 1025
## 1658        0 No Holiday      1.2       60   Winter       60        0
## 3485        0 No Holiday      0.5       66   Spring       66        0
## 5491        0 No Holiday      2.5       55   Summer       55        0
## 1237        0 No Holiday      1.6       30   Winter       30        0
## 5532        0 No Holiday      1.6       48   Summer       48        0
## 5201        0 No Holiday      1.7       71   Summer       71        0
##        col 1026 col 1027 col 1028 col 1029 col 1030 col 1031 col 1032
## 1658   8/2/2018        1      Yes      1.2    -14.8      Yes      1.2
## 3485 25/04/2018        4      Yes      0.5      0.4      Yes      0.5
## 5491 17/07/2018       18      Yes      2.5     21.1      Yes      2.5
## 1237 21/01/2018       12      Yes      1.6    -12.1      Yes      1.6
## 5532 19/07/2018       11      Yes      1.6     18.4      Yes      1.6
## 5201   5/7/2018       16      Yes      1.7     22.4      Yes      1.7
##        col 1033 col 1034 col 1035 col 1036 col 1037   col 1038 col 1039
## 1658   8/2/2018      Yes      1.2   Winter     1908 No Holiday     1908
## 3485 25/04/2018      Yes      0.5   Spring     2000 No Holiday     2000
## 5491 17/07/2018      Yes      2.5   Summer     1550 No Holiday     1550
## 1237 21/01/2018      Yes      1.6   Winter     1085 No Holiday     1085
## 5532 19/07/2018      Yes      1.6   Summer     1705 No Holiday     1705
## 5201   5/7/2018      Yes      1.7   Summer     2000 No Holiday     2000
##      col 1040 col 1041   col 1042 col 1043 col 1044 col 1045   col 1046
## 1658     -8.5      126 No Holiday     1908     -8.5        0   8/2/2018
## 3485      6.4      117 No Holiday     2000      6.4        0 25/04/2018
## 5491     31.3     2770 No Holiday     1550     31.3        0 17/07/2018
## 1237      3.9      271 No Holiday     1085      3.9        0 21/01/2018
## 5532     30.7      687 No Holiday     1705     30.7        0 19/07/2018
## 5201     28.2     1105 No Holiday     2000     28.2        0   5/7/2018
##      col 1047 col 1048 col 1049 col 1050 col 1051   col 1052 col 1053
## 1658     1908      Yes        1       60     -8.5   8/2/2018        0
## 3485     2000      Yes        4       66      6.4 25/04/2018        0
## 5491     1550      Yes       18       55     31.3 17/07/2018        0
## 1237     1085      Yes       12       30      3.9 21/01/2018        0
## 5532     1705      Yes       11       48     30.7 19/07/2018        0
## 5201     2000      Yes       16       71     28.2   5/7/2018        0
##        col 1054 col 1055 col 1056 col 1057 col 1058 col 1059 col 1060 col 1061
## 1658   8/2/2018      Yes        1     -8.5      Yes     0.00        0     1908
## 3485 25/04/2018      Yes        4      6.4      Yes     0.00        0     2000
## 5491 17/07/2018      Yes       18     31.3      Yes     1.20        0     1550
## 1237 21/01/2018      Yes       12      3.9      Yes     0.91        0     1085
## 5532 19/07/2018      Yes       11     30.7      Yes     2.92        0     1705
## 5201   5/7/2018      Yes       16     28.2      Yes     0.96        0     2000
##      col 1062 col 1063 col 1064 col 1065 col 1066 col 1067 col 1068 col 1069
## 1658        0      126     1908   Winter     0.00        0      1.2      126
## 3485        0      117     2000   Spring     0.00        0      0.5      117
## 5491        0     2770     1550   Summer     1.20        0      2.5     2770
## 1237        0      271     1085   Winter     0.91        0      1.6      271
## 5532        0      687     1705   Summer     2.92        0      1.6      687
## 5201        0     1105     2000   Summer     0.96        0      1.7     1105
##      col 1070 col 1071 col 1072 col 1073 col 1074 col 1075 col 1076 col 1077
## 1658        0        1       60     1908        0     -8.5      126     1908
## 3485        0        4       66     2000        0      6.4      117     2000
## 5491        0       18       55     1550        0     31.3     2770     1550
## 1237        0       12       30     1085        0      3.9      271     1085
## 5532        0       11       48     1705        0     30.7      687     1705
## 5201        0       16       71     2000        0     28.2     1105     2000
##      col 1078 col 1079 col 1080 col 1081 col 1082 col 1083 col 1084 col 1085
## 1658      1.2        0     -8.5     0.00   Winter   Winter     1908      1.2
## 3485      0.5        0      6.4     0.00   Spring   Spring     2000      0.5
## 5491      2.5        0     31.3     1.20   Summer   Summer     1550      2.5
## 1237      1.6        0      3.9     0.91   Winter   Winter     1085      1.6
## 5532      1.6        0     30.7     2.92   Summer   Summer     1705      1.6
## 5201      1.7        0     28.2     0.96   Summer   Summer     2000      1.7
##      col 1086 col 1087 col 1088 col 1089 col 1090 col 1091 col 1092 col 1093
## 1658      126       60      1.2    -14.8       60      1.2       60     1908
## 3485      117       66      0.5      0.4       66      0.5       66     2000
## 5491     2770       55      2.5     21.1       55      2.5       55     1550
## 1237      271       30      1.6    -12.1       30      1.6       30     1085
## 5532      687       48      1.6     18.4       48      1.6       48     1705
## 5201     1105       71      1.7     22.4       71      1.7       71     2000
##        col 1094 col 1095 col 1096 col 1097 col 1098 col 1099 col 1100 col 1101
## 1658   8/2/2018        1      126      1.2        1     1908      Yes        1
## 3485 25/04/2018        4      117      0.5        4     2000      Yes        4
## 5491 17/07/2018       18     2770      2.5       18     1550      Yes       18
## 1237 21/01/2018       12      271      1.6       12     1085      Yes       12
## 5532 19/07/2018       11      687      1.6       11     1705      Yes       11
## 5201   5/7/2018       16     1105      1.7       16     2000      Yes       16
##      col 1102 col 1103 col 1104 col 1105 col 1106 col 1107 col 1108   col 1109
## 1658       60    -14.8      126      126      Yes     0.00     -8.5   8/2/2018
## 3485       66      0.4      117      117      Yes     0.00      6.4 25/04/2018
## 5491       55     21.1     2770     2770      Yes     1.20     31.3 17/07/2018
## 1237       30    -12.1      271      271      Yes     0.91      3.9 21/01/2018
## 5532       48     18.4      687      687      Yes     2.92     30.7 19/07/2018
## 5201       71     22.4     1105     1105      Yes     0.96     28.2   5/7/2018
##        col 1110 col 1111 col 1112 col 1113 col 1114 col 1115   col 1116
## 1658 No Holiday     0.00      126        0    -14.8     0.00   8/2/2018
## 3485 No Holiday     0.00      117        0      0.4     0.00 25/04/2018
## 5491 No Holiday     1.20     2770        0     21.1     1.20 17/07/2018
## 1237 No Holiday     0.91      271        0    -12.1     0.91 21/01/2018
## 5532 No Holiday     2.92      687        0     18.4     2.92 19/07/2018
## 5201 No Holiday     0.96     1105        0     22.4     0.96   5/7/2018
##      col 1117 col 1118 col 1119 col 1120 col 1121 col 1122 col 1123 col 1124
## 1658    -14.8    -14.8     -8.5      126     0.00       60      Yes        1
## 3485      0.4      0.4      6.4      117     0.00       66      Yes        4
## 5491     21.1     21.1     31.3     2770     1.20       55      Yes       18
## 1237    -12.1    -12.1      3.9      271     0.91       30      Yes       12
## 5532     18.4     18.4     30.7      687     2.92       48      Yes       11
## 5201     22.4     22.4     28.2     1105     0.96       71      Yes       16
##      col 1125 col 1126 col 1127   col 1128 col 1129 col 1130 col 1131 col 1132
## 1658     1908    -14.8     1908 No Holiday      Yes      126      1.2    -14.8
## 3485     2000      0.4     2000 No Holiday      Yes      117      0.5      0.4
## 5491     1550     21.1     1550 No Holiday      Yes     2770      2.5     21.1
## 1237     1085    -12.1     1085 No Holiday      Yes      271      1.6    -12.1
## 5532     1705     18.4     1705 No Holiday      Yes      687      1.6     18.4
## 5201     2000     22.4     2000 No Holiday      Yes     1105      1.7     22.4
##      col 1133 col 1134 col 1135 col 1136 col 1137 col 1138 col 1139 col 1140
## 1658   Winter        0      126     0.00     1908      1.2        1   Winter
## 3485   Spring        0      117     0.00     2000      0.5        4   Spring
## 5491   Summer        0     2770     1.20     1550      2.5       18   Summer
## 1237   Winter        0      271     0.91     1085      1.6       12   Winter
## 5532   Summer        0      687     2.92     1705      1.6       11   Summer
## 5201   Summer        0     1105     0.96     2000      1.7       16   Summer
##      col 1141 col 1142 col 1143   col 1144   col 1145 col 1146 col 1147
## 1658     0.00        0     -8.5   8/2/2018   8/2/2018      1.2     1908
## 3485     0.00        0      6.4 25/04/2018 25/04/2018      0.5     2000
## 5491     1.20        0     31.3 17/07/2018 17/07/2018      2.5     1550
## 1237     0.91        0      3.9 21/01/2018 21/01/2018      1.6     1085
## 5532     2.92        0     30.7 19/07/2018 19/07/2018      1.6     1705
## 5201     0.96        0     28.2   5/7/2018   5/7/2018      1.7     2000
##      col 1148   col 1149 col 1150 col 1151 col 1152 col 1153 col 1154
## 1658   Winter No Holiday      126        0        0      1.2     1908
## 3485   Spring No Holiday      117        0        0      0.5     2000
## 5491   Summer No Holiday     2770        0        0      2.5     1550
## 1237   Winter No Holiday      271        0        0      1.6     1085
## 5532   Summer No Holiday      687        0        0      1.6     1705
## 5201   Summer No Holiday     1105        0        0      1.7     2000
##        col 1155 col 1156 col 1157   col 1158 col 1159 col 1160 col 1161
## 1658 No Holiday      126     -8.5   8/2/2018      126     1908        0
## 3485 No Holiday      117      6.4 25/04/2018      117     2000        0
## 5491 No Holiday     2770     31.3 17/07/2018     2770     1550        0
## 1237 No Holiday      271      3.9 21/01/2018      271     1085        0
## 5532 No Holiday      687     30.7 19/07/2018      687     1705        0
## 5201 No Holiday     1105     28.2   5/7/2018     1105     2000        0
##      col 1162 col 1163   col 1164 col 1165 col 1166 col 1167 col 1168 col 1169
## 1658        0   Winter No Holiday        0      126     -8.5     0.00     0.00
## 3485        0   Spring No Holiday        0      117      6.4     0.00     0.00
## 5491        0   Summer No Holiday        0     2770     31.3     1.20     1.20
## 1237        0   Winter No Holiday        0      271      3.9     0.91     0.91
## 5532        0   Summer No Holiday        0      687     30.7     2.92     2.92
## 5201        0   Summer No Holiday        0     1105     28.2     0.96     0.96
##      col 1170   col 1171 col 1172 col 1173 col 1174 col 1175 col 1176 col 1177
## 1658   Winter   8/2/2018   Winter       60        0        0     1908        0
## 3485   Spring 25/04/2018   Spring       66        0        0     2000        0
## 5491   Summer 17/07/2018   Summer       55        0        0     1550        0
## 1237   Winter 21/01/2018   Winter       30        0        0     1085        0
## 5532   Summer 19/07/2018   Summer       48        0        0     1705        0
## 5201   Summer   5/7/2018   Summer       71        0        0     2000        0
##      col 1178 col 1179 col 1180 col 1181 col 1182 col 1183 col 1184   col 1185
## 1658    -14.8       60      Yes    -14.8   Winter     0.00      126   8/2/2018
## 3485      0.4       66      Yes      0.4   Spring     0.00      117 25/04/2018
## 5491     21.1       55      Yes     21.1   Summer     1.20     2770 17/07/2018
## 1237    -12.1       30      Yes    -12.1   Winter     0.91      271 21/01/2018
## 5532     18.4       48      Yes     18.4   Summer     2.92      687 19/07/2018
## 5201     22.4       71      Yes     22.4   Summer     0.96     1105   5/7/2018
##      col 1186 col 1187 col 1188 col 1189 col 1190 col 1191   col 1192 col 1193
## 1658     0.00        0     0.00     1908      126   Winter   8/2/2018       60
## 3485     0.00        0     0.00     2000      117   Spring 25/04/2018       66
## 5491     1.20        0     1.20     1550     2770   Summer 17/07/2018       55
## 1237     0.91        0     0.91     1085      271   Winter 21/01/2018       30
## 5532     2.92        0     2.92     1705      687   Summer 19/07/2018       48
## 5201     0.96        0     0.96     2000     1105   Summer   5/7/2018       71
##      col 1194 col 1195 col 1196 col 1197   col 1198 col 1199 col 1200
## 1658        0       60      126     -8.5   8/2/2018     -8.5   Winter
## 3485        0       66      117      6.4 25/04/2018      6.4   Spring
## 5491        0       55     2770     31.3 17/07/2018     31.3   Summer
## 1237        0       30      271      3.9 21/01/2018      3.9   Winter
## 5532        0       48      687     30.7 19/07/2018     30.7   Summer
## 5201        0       71     1105     28.2   5/7/2018     28.2   Summer
##        col 1201 col 1202 col 1203 col 1204 col 1205 col 1206   col 1207
## 1658 No Holiday   Winter        0     0.00        0      Yes No Holiday
## 3485 No Holiday   Spring        0     0.00        0      Yes No Holiday
## 5491 No Holiday   Summer        0     1.20        0      Yes No Holiday
## 1237 No Holiday   Winter        0     0.91        0      Yes No Holiday
## 5532 No Holiday   Summer        0     2.92        0      Yes No Holiday
## 5201 No Holiday   Summer        0     0.96        0      Yes No Holiday
##      col 1208 col 1209 col 1210 col 1211 col 1212 col 1213 col 1214 col 1215
## 1658     0.00      126     1908   Winter     1908       60   Winter        0
## 3485     0.00      117     2000   Spring     2000       66   Spring        0
## 5491     1.20     2770     1550   Summer     1550       55   Summer        0
## 1237     0.91      271     1085   Winter     1085       30   Winter        0
## 5532     2.92      687     1705   Summer     1705       48   Summer        0
## 5201     0.96     1105     2000   Summer     2000       71   Summer        0
##      col 1216 col 1217 col 1218 col 1219 col 1220 col 1221 col 1222 col 1223
## 1658   Winter        0       60        0     1908        0     0.00      126
## 3485   Spring        0       66        0     2000        0     0.00      117
## 5491   Summer        0       55        0     1550        0     1.20     2770
## 1237   Winter        0       30        0     1085        0     0.91      271
## 5532   Summer        0       48        0     1705        0     2.92      687
## 5201   Summer        0       71        0     2000        0     0.96     1105
##      col 1224   col 1225 col 1226 col 1227 col 1228 col 1229 col 1230 col 1231
## 1658     0.00 No Holiday        0      126        0   Winter     0.00       60
## 3485     0.00 No Holiday        0      117        0   Spring     0.00       66
## 5491     1.20 No Holiday        0     2770        0   Summer     1.20       55
## 1237     0.91 No Holiday        0      271        0   Winter     0.91       30
## 5532     2.92 No Holiday        0      687        0   Summer     2.92       48
## 5201     0.96 No Holiday        0     1105        0   Summer     0.96       71
##      col 1232   col 1233 col 1234   col 1235 col 1236   col 1237 col 1238
## 1658      Yes No Holiday     -8.5   8/2/2018   Winter No Holiday      1.2
## 3485      Yes No Holiday      6.4 25/04/2018   Spring No Holiday      0.5
## 5491      Yes No Holiday     31.3 17/07/2018   Summer No Holiday      2.5
## 1237      Yes No Holiday      3.9 21/01/2018   Winter No Holiday      1.6
## 5532      Yes No Holiday     30.7 19/07/2018   Summer No Holiday      1.6
## 5201      Yes No Holiday     28.2   5/7/2018   Summer No Holiday      1.7
##      col 1239 col 1240   col 1241 col 1242 col 1243 col 1244 col 1245
## 1658        1      1.2 No Holiday        1     1908     1908      Yes
## 3485        4      0.5 No Holiday        4     2000     2000      Yes
## 5491       18      2.5 No Holiday       18     1550     1550      Yes
## 1237       12      1.6 No Holiday       12     1085     1085      Yes
## 5532       11      1.6 No Holiday       11     1705     1705      Yes
## 5201       16      1.7 No Holiday       16     2000     2000      Yes
##        col 1246 col 1247 col 1248 col 1249   col 1250 col 1251 col 1252
## 1658   8/2/2018     -8.5      Yes   Winter   8/2/2018     0.00    -14.8
## 3485 25/04/2018      6.4      Yes   Spring 25/04/2018     0.00      0.4
## 5491 17/07/2018     31.3      Yes   Summer 17/07/2018     1.20     21.1
## 1237 21/01/2018      3.9      Yes   Winter 21/01/2018     0.91    -12.1
## 5532 19/07/2018     30.7      Yes   Summer 19/07/2018     2.92     18.4
## 5201   5/7/2018     28.2      Yes   Summer   5/7/2018     0.96     22.4
##      col 1253   col 1254 col 1255   col 1256 col 1257 col 1258 col 1259
## 1658      126   8/2/2018     1908 No Holiday      126      126      126
## 3485      117 25/04/2018     2000 No Holiday      117      117      117
## 5491     2770 17/07/2018     1550 No Holiday     2770     2770     2770
## 1237      271 21/01/2018     1085 No Holiday      271      271      271
## 5532      687 19/07/2018     1705 No Holiday      687      687      687
## 5201     1105   5/7/2018     2000 No Holiday     1105     1105     1105
##      col 1260 col 1261 col 1262 col 1263 col 1264 col 1265   col 1266
## 1658     -8.5       60        0        0    -14.8      Yes No Holiday
## 3485      6.4       66        0        0      0.4      Yes No Holiday
## 5491     31.3       55        0        0     21.1      Yes No Holiday
## 1237      3.9       30        0        0    -12.1      Yes No Holiday
## 5532     30.7       48        0        0     18.4      Yes No Holiday
## 5201     28.2       71        0        0     22.4      Yes No Holiday
##        col 1267 col 1268 col 1269 col 1270   col 1271 col 1272 col 1273
## 1658   8/2/2018      Yes     1908      126 No Holiday     0.00        0
## 3485 25/04/2018      Yes     2000      117 No Holiday     0.00        0
## 5491 17/07/2018      Yes     1550     2770 No Holiday     1.20        0
## 1237 21/01/2018      Yes     1085      271 No Holiday     0.91        0
## 5532 19/07/2018      Yes     1705      687 No Holiday     2.92        0
## 5201   5/7/2018      Yes     2000     1105 No Holiday     0.96        0
##        col 1274 col 1275 col 1276 col 1277 col 1278   col 1279 col 1280
## 1658 No Holiday        1        1        1        1 No Holiday       60
## 3485 No Holiday        4        4        4        4 No Holiday       66
## 5491 No Holiday       18       18       18       18 No Holiday       55
## 1237 No Holiday       12       12       12       12 No Holiday       30
## 5532 No Holiday       11       11       11       11 No Holiday       48
## 5201 No Holiday       16       16       16       16 No Holiday       71
##      col 1281 col 1282 col 1283   col 1284 col 1285 col 1286 col 1287 col 1288
## 1658   Winter     1908      Yes   8/2/2018      Yes     1908   Winter      1.2
## 3485   Spring     2000      Yes 25/04/2018      Yes     2000   Spring      0.5
## 5491   Summer     1550      Yes 17/07/2018      Yes     1550   Summer      2.5
## 1237   Winter     1085      Yes 21/01/2018      Yes     1085   Winter      1.6
## 5532   Summer     1705      Yes 19/07/2018      Yes     1705   Summer      1.6
## 5201   Summer     2000      Yes   5/7/2018      Yes     2000   Summer      1.7
##      col 1289 col 1290 col 1291 col 1292   col 1293 col 1294 col 1295 col 1296
## 1658        0       60      Yes      Yes   8/2/2018        1      1.2     0.00
## 3485        0       66      Yes      Yes 25/04/2018        4      0.5     0.00
## 5491        0       55      Yes      Yes 17/07/2018       18      2.5     1.20
## 1237        0       30      Yes      Yes 21/01/2018       12      1.6     0.91
## 5532        0       48      Yes      Yes 19/07/2018       11      1.6     2.92
## 5201        0       71      Yes      Yes   5/7/2018       16      1.7     0.96
##      col 1297 col 1298 col 1299 col 1300 col 1301 col 1302 col 1303 col 1304
## 1658       60    -14.8        1      126      1.2     -8.5   Winter     1908
## 3485       66      0.4        4      117      0.5      6.4   Spring     2000
## 5491       55     21.1       18     2770      2.5     31.3   Summer     1550
## 1237       30    -12.1       12      271      1.6      3.9   Winter     1085
## 5532       48     18.4       11      687      1.6     30.7   Summer     1705
## 5201       71     22.4       16     1105      1.7     28.2   Summer     2000
##        col 1305 col 1306   col 1307 col 1308 col 1309 col 1310 col 1311
## 1658   8/2/2018      126   8/2/2018     1908        1      126        1
## 3485 25/04/2018      117 25/04/2018     2000        4      117        4
## 5491 17/07/2018     2770 17/07/2018     1550       18     2770       18
## 1237 21/01/2018      271 21/01/2018     1085       12      271       12
## 5532 19/07/2018      687 19/07/2018     1705       11      687       11
## 5201   5/7/2018     1105   5/7/2018     2000       16     1105       16
##      col 1312 col 1313 col 1314 col 1315 col 1316 col 1317 col 1318 col 1319
## 1658      126      126      126    -14.8     0.00        1     0.00      126
## 3485      117      117      117      0.4     0.00        4     0.00      117
## 5491     2770     2770     2770     21.1     1.20       18     1.20     2770
## 1237      271      271      271    -12.1     0.91       12     0.91      271
## 5532      687      687      687     18.4     2.92       11     2.92      687
## 5201     1105     1105     1105     22.4     0.96       16     0.96     1105
##      col 1320   col 1321 col 1322   col 1323 col 1324 col 1325 col 1326
## 1658        0   8/2/2018     0.00 No Holiday     0.00     0.00        1
## 3485        0 25/04/2018     0.00 No Holiday     0.00     0.00        4
## 5491        0 17/07/2018     1.20 No Holiday     1.20     1.20       18
## 1237        0 21/01/2018     0.91 No Holiday     0.91     0.91       12
## 5532        0 19/07/2018     2.92 No Holiday     2.92     2.92       11
## 5201        0   5/7/2018     0.96 No Holiday     0.96     0.96       16
##      col 1327 col 1328 col 1329 col 1330 col 1331 col 1332 col 1333 col 1334
## 1658      1.2   Winter     1908      126     0.00     0.00     0.00       60
## 3485      0.5   Spring     2000      117     0.00     0.00     0.00       66
## 5491      2.5   Summer     1550     2770     1.20     1.20     1.20       55
## 1237      1.6   Winter     1085      271     0.91     0.91     0.91       30
## 5532      1.6   Summer     1705      687     2.92     2.92     2.92       48
## 5201      1.7   Summer     2000     1105     0.96     0.96     0.96       71
##        col 1335 col 1336 col 1337 col 1338 col 1339 col 1340 col 1341 col 1342
## 1658 No Holiday      1.2        0     -8.5     -8.5        0     0.00       60
## 3485 No Holiday      0.5        0      6.4      6.4        0     0.00       66
## 5491 No Holiday      2.5        0     31.3     31.3        0     1.20       55
## 1237 No Holiday      1.6        0      3.9      3.9        0     0.91       30
## 5532 No Holiday      1.6        0     30.7     30.7        0     2.92       48
## 5201 No Holiday      1.7        0     28.2     28.2        0     0.96       71
##      col 1343 col 1344 col 1345 col 1346   col 1347 col 1348   col 1349
## 1658      Yes      Yes       60    -14.8   8/2/2018        0 No Holiday
## 3485      Yes      Yes       66      0.4 25/04/2018        0 No Holiday
## 5491      Yes      Yes       55     21.1 17/07/2018        0 No Holiday
## 1237      Yes      Yes       30    -12.1 21/01/2018        0 No Holiday
## 5532      Yes      Yes       48     18.4 19/07/2018        0 No Holiday
## 5201      Yes      Yes       71     22.4   5/7/2018        0 No Holiday
##      col 1350 col 1351   col 1352 col 1353 col 1354 col 1355 col 1356 col 1357
## 1658     1908    -14.8   8/2/2018     1908     -8.5     0.00     1908   Winter
## 3485     2000      0.4 25/04/2018     2000      6.4     0.00     2000   Spring
## 5491     1550     21.1 17/07/2018     1550     31.3     1.20     1550   Summer
## 1237     1085    -12.1 21/01/2018     1085      3.9     0.91     1085   Winter
## 5532     1705     18.4 19/07/2018     1705     30.7     2.92     1705   Summer
## 5201     2000     22.4   5/7/2018     2000     28.2     0.96     2000   Summer
##      col 1358 col 1359 col 1360 col 1361   col 1362 col 1363 col 1364 col 1365
## 1658    -14.8    -14.8       60      1.2   8/2/2018        0      Yes      Yes
## 3485      0.4      0.4       66      0.5 25/04/2018        0      Yes      Yes
## 5491     21.1     21.1       55      2.5 17/07/2018        0      Yes      Yes
## 1237    -12.1    -12.1       30      1.6 21/01/2018        0      Yes      Yes
## 5532     18.4     18.4       48      1.6 19/07/2018        0      Yes      Yes
## 5201     22.4     22.4       71      1.7   5/7/2018        0      Yes      Yes
##      col 1366 col 1367 col 1368 col 1369 col 1370 col 1371 col 1372 col 1373
## 1658        0      Yes     1908       60        0    -14.8        1        0
## 3485        0      Yes     2000       66        0      0.4        4        0
## 5491        0      Yes     1550       55        0     21.1       18        0
## 1237        0      Yes     1085       30        0    -12.1       12        0
## 5532        0      Yes     1705       48        0     18.4       11        0
## 5201        0      Yes     2000       71        0     22.4       16        0
##      col 1374 col 1375 col 1376 col 1377 col 1378 col 1379 col 1380 col 1381
## 1658   Winter      126     -8.5        0   Winter      126     0.00        0
## 3485   Spring      117      6.4        0   Spring      117     0.00        0
## 5491   Summer     2770     31.3        0   Summer     2770     1.20        0
## 1237   Winter      271      3.9        0   Winter      271     0.91        0
## 5532   Summer      687     30.7        0   Summer      687     2.92        0
## 5201   Summer     1105     28.2        0   Summer     1105     0.96        0
##      col 1382 col 1383 col 1384 col 1385 col 1386 col 1387 col 1388 col 1389
## 1658        1     -8.5      126      1.2       60       60        1   Winter
## 3485        4      6.4      117      0.5       66       66        4   Spring
## 5491       18     31.3     2770      2.5       55       55       18   Summer
## 1237       12      3.9      271      1.6       30       30       12   Winter
## 5532       11     30.7      687      1.6       48       48       11   Summer
## 5201       16     28.2     1105      1.7       71       71       16   Summer
##      col 1390 col 1391 col 1392 col 1393 col 1394 col 1395 col 1396 col 1397
## 1658      126    -14.8        0        0     1908     1908       60     -8.5
## 3485      117      0.4        0        0     2000     2000       66      6.4
## 5491     2770     21.1        0        0     1550     1550       55     31.3
## 1237      271    -12.1        0        0     1085     1085       30      3.9
## 5532      687     18.4        0        0     1705     1705       48     30.7
## 5201     1105     22.4        0        0     2000     2000       71     28.2
##      col 1398 col 1399   col 1400 col 1401 col 1402   col 1403 col 1404
## 1658   Winter        0   8/2/2018   Winter   Winter No Holiday   Winter
## 3485   Spring        0 25/04/2018   Spring   Spring No Holiday   Spring
## 5491   Summer        0 17/07/2018   Summer   Summer No Holiday   Summer
## 1237   Winter        0 21/01/2018   Winter   Winter No Holiday   Winter
## 5532   Summer        0 19/07/2018   Summer   Summer No Holiday   Summer
## 5201   Summer        0   5/7/2018   Summer   Summer No Holiday   Summer
##      col 1405 col 1406 col 1407 col 1408 col 1409 col 1410 col 1411 col 1412
## 1658      1.2    -14.8    -14.8        0      Yes     -8.5     -8.5      Yes
## 3485      0.5      0.4      0.4        0      Yes      6.4      6.4      Yes
## 5491      2.5     21.1     21.1        0      Yes     31.3     31.3      Yes
## 1237      1.6    -12.1    -12.1        0      Yes      3.9      3.9      Yes
## 5532      1.6     18.4     18.4        0      Yes     30.7     30.7      Yes
## 5201      1.7     22.4     22.4        0      Yes     28.2     28.2      Yes
##      col 1413 col 1414 col 1415 col 1416   col 1417 col 1418 col 1419 col 1420
## 1658        0   Winter     0.00        0   8/2/2018       60    -14.8        0
## 3485        0   Spring     0.00        0 25/04/2018       66      0.4        0
## 5491        0   Summer     1.20        0 17/07/2018       55     21.1        0
## 1237        0   Winter     0.91        0 21/01/2018       30    -12.1        0
## 5532        0   Summer     2.92        0 19/07/2018       48     18.4        0
## 5201        0   Summer     0.96        0   5/7/2018       71     22.4        0
##      col 1421 col 1422 col 1423 col 1424   col 1425 col 1426 col 1427 col 1428
## 1658      1.2     0.00        1       60   8/2/2018      126        0       60
## 3485      0.5     0.00        4       66 25/04/2018      117        0       66
## 5491      2.5     1.20       18       55 17/07/2018     2770        0       55
## 1237      1.6     0.91       12       30 21/01/2018      271        0       30
## 5532      1.6     2.92       11       48 19/07/2018      687        0       48
## 5201      1.7     0.96       16       71   5/7/2018     1105        0       71
##      col 1429 col 1430 col 1431 col 1432   col 1433 col 1434 col 1435 col 1436
## 1658      Yes        0      1.2        0   8/2/2018   Winter        0      126
## 3485      Yes        0      0.5        0 25/04/2018   Spring        0      117
## 5491      Yes        0      2.5        0 17/07/2018   Summer        0     2770
## 1237      Yes        0      1.6        0 21/01/2018   Winter        0      271
## 5532      Yes        0      1.6        0 19/07/2018   Summer        0      687
## 5201      Yes        0      1.7        0   5/7/2018   Summer        0     1105
##      col 1437 col 1438 col 1439   col 1440 col 1441 col 1442 col 1443 col 1444
## 1658       60     -8.5      126 No Holiday      Yes       60       60      1.2
## 3485       66      6.4      117 No Holiday      Yes       66       66      0.5
## 5491       55     31.3     2770 No Holiday      Yes       55       55      2.5
## 1237       30      3.9      271 No Holiday      Yes       30       30      1.6
## 5532       48     30.7      687 No Holiday      Yes       48       48      1.6
## 5201       71     28.2     1105 No Holiday      Yes       71       71      1.7
##      col 1445 col 1446 col 1447 col 1448 col 1449   col 1450 col 1451 col 1452
## 1658     -8.5   Winter        0     -8.5      Yes   8/2/2018     0.00    -14.8
## 3485      6.4   Spring        0      6.4      Yes 25/04/2018     0.00      0.4
## 5491     31.3   Summer        0     31.3      Yes 17/07/2018     1.20     21.1
## 1237      3.9   Winter        0      3.9      Yes 21/01/2018     0.91    -12.1
## 5532     30.7   Summer        0     30.7      Yes 19/07/2018     2.92     18.4
## 5201     28.2   Summer        0     28.2      Yes   5/7/2018     0.96     22.4
##      col 1453 col 1454   col 1455 col 1456 col 1457 col 1458 col 1459
## 1658        0     -8.5 No Holiday    -14.8      1.2     0.00      Yes
## 3485        0      6.4 No Holiday      0.4      0.5     0.00      Yes
## 5491        0     31.3 No Holiday     21.1      2.5     1.20      Yes
## 1237        0      3.9 No Holiday    -12.1      1.6     0.91      Yes
## 5532        0     30.7 No Holiday     18.4      1.6     2.92      Yes
## 5201        0     28.2 No Holiday     22.4      1.7     0.96      Yes
##        col 1460   col 1461 col 1462 col 1463 col 1464 col 1465 col 1466
## 1658   8/2/2018   8/2/2018      126    -14.8      1.2        1     -8.5
## 3485 25/04/2018 25/04/2018      117      0.4      0.5        4      6.4
## 5491 17/07/2018 17/07/2018     2770     21.1      2.5       18     31.3
## 1237 21/01/2018 21/01/2018      271    -12.1      1.6       12      3.9
## 5532 19/07/2018 19/07/2018      687     18.4      1.6       11     30.7
## 5201   5/7/2018   5/7/2018     1105     22.4      1.7       16     28.2
##      col 1467 col 1468 col 1469 col 1470 col 1471 col 1472 col 1473 col 1474
## 1658     -8.5        0    -14.8     1908        1     0.00    -14.8     -8.5
## 3485      6.4        0      0.4     2000        4     0.00      0.4      6.4
## 5491     31.3        0     21.1     1550       18     1.20     21.1     31.3
## 1237      3.9        0    -12.1     1085       12     0.91    -12.1      3.9
## 5532     30.7        0     18.4     1705       11     2.92     18.4     30.7
## 5201     28.2        0     22.4     2000       16     0.96     22.4     28.2
##        col 1475 col 1476 col 1477 col 1478 col 1479 col 1480 col 1481
## 1658   8/2/2018        1     -8.5      1.2      1.2        0      1.2
## 3485 25/04/2018        4      6.4      0.5      0.5        0      0.5
## 5491 17/07/2018       18     31.3      2.5      2.5        0      2.5
## 1237 21/01/2018       12      3.9      1.6      1.6        0      1.6
## 5532 19/07/2018       11     30.7      1.6      1.6        0      1.6
## 5201   5/7/2018       16     28.2      1.7      1.7        0      1.7
##        col 1482   col 1483 col 1484 col 1485 col 1486 col 1487 col 1488
## 1658   8/2/2018 No Holiday      Yes     -8.5      1.2      1.2      Yes
## 3485 25/04/2018 No Holiday      Yes      6.4      0.5      0.5      Yes
## 5491 17/07/2018 No Holiday      Yes     31.3      2.5      2.5      Yes
## 1237 21/01/2018 No Holiday      Yes      3.9      1.6      1.6      Yes
## 5532 19/07/2018 No Holiday      Yes     30.7      1.6      1.6      Yes
## 5201   5/7/2018 No Holiday      Yes     28.2      1.7      1.7      Yes
##      col 1489 col 1490 col 1491 col 1492 col 1493 col 1494 col 1495 col 1496
## 1658    -14.8        0    -14.8      1.2      1.2   Winter    -14.8       60
## 3485      0.4        0      0.4      0.5      0.5   Spring      0.4       66
## 5491     21.1        0     21.1      2.5      2.5   Summer     21.1       55
## 1237    -12.1        0    -12.1      1.6      1.6   Winter    -12.1       30
## 5532     18.4        0     18.4      1.6      1.6   Summer     18.4       48
## 5201     22.4        0     22.4      1.7      1.7   Summer     22.4       71
##      col 1497   col 1498 col 1499 col 1500 col 1501 col 1502 col 1503 col 1504
## 1658        0 No Holiday     0.00    -14.8     0.00    -14.8        0        0
## 3485        0 No Holiday     0.00      0.4     0.00      0.4        0        0
## 5491        0 No Holiday     1.20     21.1     1.20     21.1        0        0
## 1237        0 No Holiday     0.91    -12.1     0.91    -12.1        0        0
## 5532        0 No Holiday     2.92     18.4     2.92     18.4        0        0
## 5201        0 No Holiday     0.96     22.4     0.96     22.4        0        0
##      col 1505 col 1506 col 1507 col 1508   col 1509 col 1510 col 1511 col 1512
## 1658      126      Yes        0     0.00 No Holiday     -8.5        0      Yes
## 3485      117      Yes        0     0.00 No Holiday      6.4        0      Yes
## 5491     2770      Yes        0     1.20 No Holiday     31.3        0      Yes
## 1237      271      Yes        0     0.91 No Holiday      3.9        0      Yes
## 5532      687      Yes        0     2.92 No Holiday     30.7        0      Yes
## 5201     1105      Yes        0     0.96 No Holiday     28.2        0      Yes
##      col 1513   col 1514 col 1515 col 1516 col 1517 col 1518 col 1519 col 1520
## 1658      126 No Holiday        1        0       60     -8.5    -14.8     -8.5
## 3485      117 No Holiday        4        0       66      6.4      0.4      6.4
## 5491     2770 No Holiday       18        0       55     31.3     21.1     31.3
## 1237      271 No Holiday       12        0       30      3.9    -12.1      3.9
## 5532      687 No Holiday       11        0       48     30.7     18.4     30.7
## 5201     1105 No Holiday       16        0       71     28.2     22.4     28.2
##      col 1521   col 1522 col 1523 col 1524 col 1525 col 1526 col 1527 col 1528
## 1658        0 No Holiday    -14.8       60     0.00        0     0.00     0.00
## 3485        0 No Holiday      0.4       66     0.00        0     0.00     0.00
## 5491        0 No Holiday     21.1       55     1.20        0     1.20     1.20
## 1237        0 No Holiday    -12.1       30     0.91        0     0.91     0.91
## 5532        0 No Holiday     18.4       48     2.92        0     2.92     2.92
## 5201        0 No Holiday     22.4       71     0.96        0     0.96     0.96
##        col 1529 col 1530   col 1531 col 1532 col 1533 col 1534 col 1535
## 1658   8/2/2018     0.00   8/2/2018      Yes     1908     -8.5     -8.5
## 3485 25/04/2018     0.00 25/04/2018      Yes     2000      6.4      6.4
## 5491 17/07/2018     1.20 17/07/2018      Yes     1550     31.3     31.3
## 1237 21/01/2018     0.91 21/01/2018      Yes     1085      3.9      3.9
## 5532 19/07/2018     2.92 19/07/2018      Yes     1705     30.7     30.7
## 5201   5/7/2018     0.96   5/7/2018      Yes     2000     28.2     28.2
##      col 1536 col 1537 col 1538 col 1539   col 1540   col 1541   col 1542
## 1658     1908        1        1      126 No Holiday   8/2/2018 No Holiday
## 3485     2000        4        4      117 No Holiday 25/04/2018 No Holiday
## 5491     1550       18       18     2770 No Holiday 17/07/2018 No Holiday
## 1237     1085       12       12      271 No Holiday 21/01/2018 No Holiday
## 5532     1705       11       11      687 No Holiday 19/07/2018 No Holiday
## 5201     2000       16       16     1105 No Holiday   5/7/2018 No Holiday
##      col 1543 col 1544 col 1545 col 1546 col 1547 col 1548   col 1549 col 1550
## 1658        0     1908     -8.5     1908      Yes       60   8/2/2018        1
## 3485        0     2000      6.4     2000      Yes       66 25/04/2018        4
## 5491        0     1550     31.3     1550      Yes       55 17/07/2018       18
## 1237        0     1085      3.9     1085      Yes       30 21/01/2018       12
## 5532        0     1705     30.7     1705      Yes       48 19/07/2018       11
## 5201        0     2000     28.2     2000      Yes       71   5/7/2018       16
##      col 1551 col 1552 col 1553 col 1554 col 1555 col 1556 col 1557 col 1558
## 1658      Yes    -14.8    -14.8     -8.5      126        1      Yes      1.2
## 3485      Yes      0.4      0.4      6.4      117        4      Yes      0.5
## 5491      Yes     21.1     21.1     31.3     2770       18      Yes      2.5
## 1237      Yes    -12.1    -12.1      3.9      271       12      Yes      1.6
## 5532      Yes     18.4     18.4     30.7      687       11      Yes      1.6
## 5201      Yes     22.4     22.4     28.2     1105       16      Yes      1.7
##      col 1559 col 1560   col 1561 col 1562 col 1563 col 1564 col 1565 col 1566
## 1658      1.2        0   8/2/2018       60   Winter      1.2      126     0.00
## 3485      0.5        0 25/04/2018       66   Spring      0.5      117     0.00
## 5491      2.5        0 17/07/2018       55   Summer      2.5     2770     1.20
## 1237      1.6        0 21/01/2018       30   Winter      1.6      271     0.91
## 5532      1.6        0 19/07/2018       48   Summer      1.6      687     2.92
## 5201      1.7        0   5/7/2018       71   Summer      1.7     1105     0.96
##      col 1567 col 1568 col 1569   col 1570 col 1571   col 1572 col 1573
## 1658     0.00       60    -14.8 No Holiday        0   8/2/2018      1.2
## 3485     0.00       66      0.4 No Holiday        0 25/04/2018      0.5
## 5491     1.20       55     21.1 No Holiday        0 17/07/2018      2.5
## 1237     0.91       30    -12.1 No Holiday        0 21/01/2018      1.6
## 5532     2.92       48     18.4 No Holiday        0 19/07/2018      1.6
## 5201     0.96       71     22.4 No Holiday        0   5/7/2018      1.7
##      col 1574   col 1575   col 1576 col 1577 col 1578 col 1579 col 1580
## 1658     1908   8/2/2018 No Holiday     0.00      Yes    -14.8     -8.5
## 3485     2000 25/04/2018 No Holiday     0.00      Yes      0.4      6.4
## 5491     1550 17/07/2018 No Holiday     1.20      Yes     21.1     31.3
## 1237     1085 21/01/2018 No Holiday     0.91      Yes    -12.1      3.9
## 5532     1705 19/07/2018 No Holiday     2.92      Yes     18.4     30.7
## 5201     2000   5/7/2018 No Holiday     0.96      Yes     22.4     28.2
##        col 1581 col 1582 col 1583 col 1584 col 1585   col 1586 col 1587
## 1658 No Holiday      Yes     -8.5      1.2      1.2   8/2/2018      1.2
## 3485 No Holiday      Yes      6.4      0.5      0.5 25/04/2018      0.5
## 5491 No Holiday      Yes     31.3      2.5      2.5 17/07/2018      2.5
## 1237 No Holiday      Yes      3.9      1.6      1.6 21/01/2018      1.6
## 5532 No Holiday      Yes     30.7      1.6      1.6 19/07/2018      1.6
## 5201 No Holiday      Yes     28.2      1.7      1.7   5/7/2018      1.7
##      col 1588   col 1589 col 1590 col 1591 col 1592 col 1593 col 1594 col 1595
## 1658        0 No Holiday        1   Winter     -8.5        0      126      Yes
## 3485        0 No Holiday        4   Spring      6.4        0      117      Yes
## 5491        0 No Holiday       18   Summer     31.3        0     2770      Yes
## 1237        0 No Holiday       12   Winter      3.9        0      271      Yes
## 5532        0 No Holiday       11   Summer     30.7        0      687      Yes
## 5201        0 No Holiday       16   Summer     28.2        0     1105      Yes
##      col 1596 col 1597 col 1598 col 1599 col 1600 col 1601 col 1602 col 1603
## 1658      126     -8.5        0        0     -8.5     1908        1    -14.8
## 3485      117      6.4        0        0      6.4     2000        4      0.4
## 5491     2770     31.3        0        0     31.3     1550       18     21.1
## 1237      271      3.9        0        0      3.9     1085       12    -12.1
## 5532      687     30.7        0        0     30.7     1705       11     18.4
## 5201     1105     28.2        0        0     28.2     2000       16     22.4
##      col 1604 col 1605 col 1606 col 1607 col 1608 col 1609 col 1610 col 1611
## 1658   Winter      126        0     0.00     1908       60   Winter      126
## 3485   Spring      117        0     0.00     2000       66   Spring      117
## 5491   Summer     2770        0     1.20     1550       55   Summer     2770
## 1237   Winter      271        0     0.91     1085       30   Winter      271
## 5532   Summer      687        0     2.92     1705       48   Summer      687
## 5201   Summer     1105        0     0.96     2000       71   Summer     1105
##      col 1612 col 1613 col 1614   col 1615 col 1616 col 1617   col 1618
## 1658    -14.8        1   Winter   8/2/2018     -8.5        0 No Holiday
## 3485      0.4        4   Spring 25/04/2018      6.4        0 No Holiday
## 5491     21.1       18   Summer 17/07/2018     31.3        0 No Holiday
## 1237    -12.1       12   Winter 21/01/2018      3.9        0 No Holiday
## 5532     18.4       11   Summer 19/07/2018     30.7        0 No Holiday
## 5201     22.4       16   Summer   5/7/2018     28.2        0 No Holiday
##      col 1619 col 1620 col 1621 col 1622 col 1623 col 1624 col 1625 col 1626
## 1658        0     -8.5        1        0    -14.8        0   Winter      Yes
## 3485        0      6.4        4        0      0.4        0   Spring      Yes
## 5491        0     31.3       18        0     21.1        0   Summer      Yes
## 1237        0      3.9       12        0    -12.1        0   Winter      Yes
## 5532        0     30.7       11        0     18.4        0   Summer      Yes
## 5201        0     28.2       16        0     22.4        0   Summer      Yes
##        col 1627 col 1628 col 1629 col 1630 col 1631 col 1632 col 1633 col 1634
## 1658   8/2/2018   Winter        0        0     -8.5      126        1       60
## 3485 25/04/2018   Spring        0        0      6.4      117        4       66
## 5491 17/07/2018   Summer        0        0     31.3     2770       18       55
## 1237 21/01/2018   Winter        0        0      3.9      271       12       30
## 5532 19/07/2018   Summer        0        0     30.7      687       11       48
## 5201   5/7/2018   Summer        0        0     28.2     1105       16       71
##      col 1635   col 1636   col 1637 col 1638 col 1639   col 1640 col 1641
## 1658     1908 No Holiday No Holiday     1908        0 No Holiday    -14.8
## 3485     2000 No Holiday No Holiday     2000        0 No Holiday      0.4
## 5491     1550 No Holiday No Holiday     1550        0 No Holiday     21.1
## 1237     1085 No Holiday No Holiday     1085        0 No Holiday    -12.1
## 5532     1705 No Holiday No Holiday     1705        0 No Holiday     18.4
## 5201     2000 No Holiday No Holiday     2000        0 No Holiday     22.4
##      col 1642 col 1643 col 1644   col 1645 col 1646 col 1647 col 1648 col 1649
## 1658    -14.8     -8.5      1.2 No Holiday      Yes     -8.5        1     -8.5
## 3485      0.4      6.4      0.5 No Holiday      Yes      6.4        4      6.4
## 5491     21.1     31.3      2.5 No Holiday      Yes     31.3       18     31.3
## 1237    -12.1      3.9      1.6 No Holiday      Yes      3.9       12      3.9
## 5532     18.4     30.7      1.6 No Holiday      Yes     30.7       11     30.7
## 5201     22.4     28.2      1.7 No Holiday      Yes     28.2       16     28.2
##      col 1650 col 1651 col 1652 col 1653   col 1654 col 1655 col 1656 col 1657
## 1658    -14.8     1908     0.00      126   8/2/2018     -8.5        1        0
## 3485      0.4     2000     0.00      117 25/04/2018      6.4        4        0
## 5491     21.1     1550     1.20     2770 17/07/2018     31.3       18        0
## 1237    -12.1     1085     0.91      271 21/01/2018      3.9       12        0
## 5532     18.4     1705     2.92      687 19/07/2018     30.7       11        0
## 5201     22.4     2000     0.96     1105   5/7/2018     28.2       16        0
##      col 1658 col 1659 col 1660 col 1661 col 1662   col 1663 col 1664 col 1665
## 1658       60   Winter        0       60     0.00 No Holiday      126      Yes
## 3485       66   Spring        0       66     0.00 No Holiday      117      Yes
## 5491       55   Summer        0       55     1.20 No Holiday     2770      Yes
## 1237       30   Winter        0       30     0.91 No Holiday      271      Yes
## 5532       48   Summer        0       48     2.92 No Holiday      687      Yes
## 5201       71   Summer        0       71     0.96 No Holiday     1105      Yes
##        col 1666 col 1667   col 1668 col 1669   col 1670 col 1671 col 1672
## 1658   8/2/2018        1 No Holiday       60   8/2/2018       60      Yes
## 3485 25/04/2018        4 No Holiday       66 25/04/2018       66      Yes
## 5491 17/07/2018       18 No Holiday       55 17/07/2018       55      Yes
## 1237 21/01/2018       12 No Holiday       30 21/01/2018       30      Yes
## 5532 19/07/2018       11 No Holiday       48 19/07/2018       48      Yes
## 5201   5/7/2018       16 No Holiday       71   5/7/2018       71      Yes
##      col 1673 col 1674 col 1675 col 1676 col 1677 col 1678 col 1679 col 1680
## 1658       60      126     -8.5        0     1908   Winter       60      126
## 3485       66      117      6.4        0     2000   Spring       66      117
## 5491       55     2770     31.3        0     1550   Summer       55     2770
## 1237       30      271      3.9        0     1085   Winter       30      271
## 5532       48      687     30.7        0     1705   Summer       48      687
## 5201       71     1105     28.2        0     2000   Summer       71     1105
##      col 1681 col 1682 col 1683 col 1684 col 1685 col 1686 col 1687 col 1688
## 1658     0.00     0.00      126    -14.8        0        0     0.00    -14.8
## 3485     0.00     0.00      117      0.4        0        0     0.00      0.4
## 5491     1.20     1.20     2770     21.1        0        0     1.20     21.1
## 1237     0.91     0.91      271    -12.1        0        0     0.91    -12.1
## 5532     2.92     2.92      687     18.4        0        0     2.92     18.4
## 5201     0.96     0.96     1105     22.4        0        0     0.96     22.4
##      col 1689 col 1690   col 1691 col 1692   col 1693 col 1694 col 1695
## 1658        0     0.00   8/2/2018       60   8/2/2018     0.00      126
## 3485        0     0.00 25/04/2018       66 25/04/2018     0.00      117
## 5491        0     1.20 17/07/2018       55 17/07/2018     1.20     2770
## 1237        0     0.91 21/01/2018       30 21/01/2018     0.91      271
## 5532        0     2.92 19/07/2018       48 19/07/2018     2.92      687
## 5201        0     0.96   5/7/2018       71   5/7/2018     0.96     1105
##        col 1696   col 1697 col 1698 col 1699 col 1700 col 1701 col 1702
## 1658 No Holiday   8/2/2018     -8.5      1.2     0.00      126        0
## 3485 No Holiday 25/04/2018      6.4      0.5     0.00      117        0
## 5491 No Holiday 17/07/2018     31.3      2.5     1.20     2770        0
## 1237 No Holiday 21/01/2018      3.9      1.6     0.91      271        0
## 5532 No Holiday 19/07/2018     30.7      1.6     2.92      687        0
## 5201 No Holiday   5/7/2018     28.2      1.7     0.96     1105        0
##        col 1703 col 1704 col 1705 col 1706   col 1707 col 1708 col 1709
## 1658 No Holiday        1      Yes     1908 No Holiday      Yes        1
## 3485 No Holiday        4      Yes     2000 No Holiday      Yes        4
## 5491 No Holiday       18      Yes     1550 No Holiday      Yes       18
## 1237 No Holiday       12      Yes     1085 No Holiday      Yes       12
## 5532 No Holiday       11      Yes     1705 No Holiday      Yes       11
## 5201 No Holiday       16      Yes     2000 No Holiday      Yes       16
##      col 1710 col 1711 col 1712 col 1713 col 1714 col 1715 col 1716   col 1717
## 1658     1908        0      126      Yes       60        1     1908   8/2/2018
## 3485     2000        0      117      Yes       66        4     2000 25/04/2018
## 5491     1550        0     2770      Yes       55       18     1550 17/07/2018
## 1237     1085        0      271      Yes       30       12     1085 21/01/2018
## 5532     1705        0      687      Yes       48       11     1705 19/07/2018
## 5201     2000        0     1105      Yes       71       16     2000   5/7/2018
##      col 1718 col 1719   col 1720 col 1721 col 1722 col 1723 col 1724 col 1725
## 1658        0   Winter   8/2/2018        0     1908      1.2     0.00      Yes
## 3485        0   Spring 25/04/2018        0     2000      0.5     0.00      Yes
## 5491        0   Summer 17/07/2018        0     1550      2.5     1.20      Yes
## 1237        0   Winter 21/01/2018        0     1085      1.6     0.91      Yes
## 5532        0   Summer 19/07/2018        0     1705      1.6     2.92      Yes
## 5201        0   Summer   5/7/2018        0     2000      1.7     0.96      Yes
##      col 1726 col 1727 col 1728 col 1729   col 1730 col 1731 col 1732 col 1733
## 1658      126      1.2    -14.8      1.2 No Holiday       60     1908        0
## 3485      117      0.5      0.4      0.5 No Holiday       66     2000        0
## 5491     2770      2.5     21.1      2.5 No Holiday       55     1550        0
## 1237      271      1.6    -12.1      1.6 No Holiday       30     1085        0
## 5532      687      1.6     18.4      1.6 No Holiday       48     1705        0
## 5201     1105      1.7     22.4      1.7 No Holiday       71     2000        0
##      col 1734 col 1735 col 1736 col 1737 col 1738 col 1739 col 1740 col 1741
## 1658    -14.8      1.2     -8.5      126     -8.5   Winter     -8.5    -14.8
## 3485      0.4      0.5      6.4      117      6.4   Spring      6.4      0.4
## 5491     21.1      2.5     31.3     2770     31.3   Summer     31.3     21.1
## 1237    -12.1      1.6      3.9      271      3.9   Winter      3.9    -12.1
## 5532     18.4      1.6     30.7      687     30.7   Summer     30.7     18.4
## 5201     22.4      1.7     28.2     1105     28.2   Summer     28.2     22.4
##      col 1742 col 1743 col 1744 col 1745   col 1746   col 1747 col 1748
## 1658     0.00      1.2      1.2        0   8/2/2018   8/2/2018        1
## 3485     0.00      0.5      0.5        0 25/04/2018 25/04/2018        4
## 5491     1.20      2.5      2.5        0 17/07/2018 17/07/2018       18
## 1237     0.91      1.6      1.6        0 21/01/2018 21/01/2018       12
## 5532     2.92      1.6      1.6        0 19/07/2018 19/07/2018       11
## 5201     0.96      1.7      1.7        0   5/7/2018   5/7/2018       16
##      col 1749 col 1750 col 1751 col 1752 col 1753 col 1754 col 1755 col 1756
## 1658   Winter        0        0     1908     1908   Winter    -14.8      126
## 3485   Spring        0        0     2000     2000   Spring      0.4      117
## 5491   Summer        0        0     1550     1550   Summer     21.1     2770
## 1237   Winter        0        0     1085     1085   Winter    -12.1      271
## 5532   Summer        0        0     1705     1705   Summer     18.4      687
## 5201   Summer        0        0     2000     2000   Summer     22.4     1105
##        col 1757 col 1758 col 1759 col 1760 col 1761 col 1762 col 1763 col 1764
## 1658   8/2/2018      126       60        1        0      1.2       60        1
## 3485 25/04/2018      117       66        4        0      0.5       66        4
## 5491 17/07/2018     2770       55       18        0      2.5       55       18
## 1237 21/01/2018      271       30       12        0      1.6       30       12
## 5532 19/07/2018      687       48       11        0      1.6       48       11
## 5201   5/7/2018     1105       71       16        0      1.7       71       16
##        col 1765 col 1766 col 1767 col 1768 col 1769 col 1770   col 1771
## 1658 No Holiday       60     1908        0        0        1   8/2/2018
## 3485 No Holiday       66     2000        0        0        4 25/04/2018
## 5491 No Holiday       55     1550        0        0       18 17/07/2018
## 1237 No Holiday       30     1085        0        0       12 21/01/2018
## 5532 No Holiday       48     1705        0        0       11 19/07/2018
## 5201 No Holiday       71     2000        0        0       16   5/7/2018
##      col 1772 col 1773 col 1774 col 1775 col 1776 col 1777 col 1778 col 1779
## 1658      Yes   Winter        0     0.00     -8.5        1      126     -8.5
## 3485      Yes   Spring        0     0.00      6.4        4      117      6.4
## 5491      Yes   Summer        0     1.20     31.3       18     2770     31.3
## 1237      Yes   Winter        0     0.91      3.9       12      271      3.9
## 5532      Yes   Summer        0     2.92     30.7       11      687     30.7
## 5201      Yes   Summer        0     0.96     28.2       16     1105     28.2
##      col 1780 col 1781   col 1782   col 1783 col 1784 col 1785 col 1786
## 1658      Yes     0.00   8/2/2018   8/2/2018     0.00        0      1.2
## 3485      Yes     0.00 25/04/2018 25/04/2018     0.00        0      0.5
## 5491      Yes     1.20 17/07/2018 17/07/2018     1.20        0      2.5
## 1237      Yes     0.91 21/01/2018 21/01/2018     0.91        0      1.6
## 5532      Yes     2.92 19/07/2018 19/07/2018     2.92        0      1.6
## 5201      Yes     0.96   5/7/2018   5/7/2018     0.96        0      1.7
##        col 1787 col 1788 col 1789 col 1790 col 1791 col 1792 col 1793 col 1794
## 1658 No Holiday     1908        1     0.00   Winter   Winter        0     1908
## 3485 No Holiday     2000        4     0.00   Spring   Spring        0     2000
## 5491 No Holiday     1550       18     1.20   Summer   Summer        0     1550
## 1237 No Holiday     1085       12     0.91   Winter   Winter        0     1085
## 5532 No Holiday     1705       11     2.92   Summer   Summer        0     1705
## 5201 No Holiday     2000       16     0.96   Summer   Summer        0     2000
##      col 1795 col 1796 col 1797 col 1798 col 1799   col 1800 col 1801
## 1658        0     1908      126     0.00       60 No Holiday       60
## 3485        0     2000      117     0.00       66 No Holiday       66
## 5491        0     1550     2770     1.20       55 No Holiday       55
## 1237        0     1085      271     0.91       30 No Holiday       30
## 5532        0     1705      687     2.92       48 No Holiday       48
## 5201        0     2000     1105     0.96       71 No Holiday       71
##        col 1802 col 1803 col 1804 col 1805 col 1806 col 1807 col 1808 col 1809
## 1658   8/2/2018      1.2       60   Winter      126     0.00      126        1
## 3485 25/04/2018      0.5       66   Spring      117     0.00      117        4
## 5491 17/07/2018      2.5       55   Summer     2770     1.20     2770       18
## 1237 21/01/2018      1.6       30   Winter      271     0.91      271       12
## 5532 19/07/2018      1.6       48   Summer      687     2.92      687       11
## 5201   5/7/2018      1.7       71   Summer     1105     0.96     1105       16
##      col 1810 col 1811 col 1812 col 1813 col 1814   col 1815   col 1816
## 1658        1      Yes      1.2      1.2     0.00 No Holiday   8/2/2018
## 3485        4      Yes      0.5      0.5     0.00 No Holiday 25/04/2018
## 5491       18      Yes      2.5      2.5     1.20 No Holiday 17/07/2018
## 1237       12      Yes      1.6      1.6     0.91 No Holiday 21/01/2018
## 5532       11      Yes      1.6      1.6     2.92 No Holiday 19/07/2018
## 5201       16      Yes      1.7      1.7     0.96 No Holiday   5/7/2018
##      col 1817 col 1818 col 1819 col 1820   col 1821 col 1822 col 1823 col 1824
## 1658   Winter    -14.8      126      126   8/2/2018     0.00        1      126
## 3485   Spring      0.4      117      117 25/04/2018     0.00        4      117
## 5491   Summer     21.1     2770     2770 17/07/2018     1.20       18     2770
## 1237   Winter    -12.1      271      271 21/01/2018     0.91       12      271
## 5532   Summer     18.4      687      687 19/07/2018     2.92       11      687
## 5201   Summer     22.4     1105     1105   5/7/2018     0.96       16     1105
##      col 1825 col 1826 col 1827 col 1828 col 1829 col 1830 col 1831 col 1832
## 1658       60        0      Yes        0        1     0.00        0     1908
## 3485       66        0      Yes        0        4     0.00        0     2000
## 5491       55        0      Yes        0       18     1.20        0     1550
## 1237       30        0      Yes        0       12     0.91        0     1085
## 5532       48        0      Yes        0       11     2.92        0     1705
## 5201       71        0      Yes        0       16     0.96        0     2000
##      col 1833 col 1834   col 1835 col 1836 col 1837 col 1838 col 1839 col 1840
## 1658        0     1908   8/2/2018      1.2        1        0      Yes    -14.8
## 3485        0     2000 25/04/2018      0.5        4        0      Yes      0.4
## 5491        0     1550 17/07/2018      2.5       18        0      Yes     21.1
## 1237        0     1085 21/01/2018      1.6       12        0      Yes    -12.1
## 5532        0     1705 19/07/2018      1.6       11        0      Yes     18.4
## 5201        0     2000   5/7/2018      1.7       16        0      Yes     22.4
##      col 1841 col 1842 col 1843 col 1844 col 1845 col 1846 col 1847 col 1848
## 1658    -14.8      126     1908     0.00     0.00      Yes     -8.5       60
## 3485      0.4      117     2000     0.00     0.00      Yes      6.4       66
## 5491     21.1     2770     1550     1.20     1.20      Yes     31.3       55
## 1237    -12.1      271     1085     0.91     0.91      Yes      3.9       30
## 5532     18.4      687     1705     2.92     2.92      Yes     30.7       48
## 5201     22.4     1105     2000     0.96     0.96      Yes     28.2       71
##      col 1849   col 1850 col 1851 col 1852 col 1853 col 1854 col 1855 col 1856
## 1658     -8.5   8/2/2018    -14.8      Yes        1      1.2     0.00     -8.5
## 3485      6.4 25/04/2018      0.4      Yes        4      0.5     0.00      6.4
## 5491     31.3 17/07/2018     21.1      Yes       18      2.5     1.20     31.3
## 1237      3.9 21/01/2018    -12.1      Yes       12      1.6     0.91      3.9
## 5532     30.7 19/07/2018     18.4      Yes       11      1.6     2.92     30.7
## 5201     28.2   5/7/2018     22.4      Yes       16      1.7     0.96     28.2
##      col 1857 col 1858   col 1859 col 1860 col 1861 col 1862   col 1863
## 1658   Winter      1.2   8/2/2018     1908      1.2        0   8/2/2018
## 3485   Spring      0.5 25/04/2018     2000      0.5        0 25/04/2018
## 5491   Summer      2.5 17/07/2018     1550      2.5        0 17/07/2018
## 1237   Winter      1.6 21/01/2018     1085      1.6        0 21/01/2018
## 5532   Summer      1.6 19/07/2018     1705      1.6        0 19/07/2018
## 5201   Summer      1.7   5/7/2018     2000      1.7        0   5/7/2018
##        col 1864 col 1865 col 1866 col 1867 col 1868 col 1869 col 1870 col 1871
## 1658   8/2/2018      Yes      1.2     -8.5        1     0.00    -14.8     -8.5
## 3485 25/04/2018      Yes      0.5      6.4        4     0.00      0.4      6.4
## 5491 17/07/2018      Yes      2.5     31.3       18     1.20     21.1     31.3
## 1237 21/01/2018      Yes      1.6      3.9       12     0.91    -12.1      3.9
## 5532 19/07/2018      Yes      1.6     30.7       11     2.92     18.4     30.7
## 5201   5/7/2018      Yes      1.7     28.2       16     0.96     22.4     28.2
##      col 1872 col 1873 col 1874   col 1875 col 1876 col 1877 col 1878
## 1658    -14.8      Yes      Yes   8/2/2018      1.2        0       60
## 3485      0.4      Yes      Yes 25/04/2018      0.5        0       66
## 5491     21.1      Yes      Yes 17/07/2018      2.5        0       55
## 1237    -12.1      Yes      Yes 21/01/2018      1.6        0       30
## 5532     18.4      Yes      Yes 19/07/2018      1.6        0       48
## 5201     22.4      Yes      Yes   5/7/2018      1.7        0       71
##        col 1879 col 1880   col 1881 col 1882   col 1883 col 1884 col 1885
## 1658   8/2/2018        0 No Holiday     0.00   8/2/2018      126        0
## 3485 25/04/2018        0 No Holiday     0.00 25/04/2018      117        0
## 5491 17/07/2018        0 No Holiday     1.20 17/07/2018     2770        0
## 1237 21/01/2018        0 No Holiday     0.91 21/01/2018      271        0
## 5532 19/07/2018        0 No Holiday     2.92 19/07/2018      687        0
## 5201   5/7/2018        0 No Holiday     0.96   5/7/2018     1105        0
##      col 1886 col 1887   col 1888 col 1889   col 1890 col 1891 col 1892
## 1658     -8.5      126   8/2/2018        0   8/2/2018        0        0
## 3485      6.4      117 25/04/2018        0 25/04/2018        0        0
## 5491     31.3     2770 17/07/2018        0 17/07/2018        0        0
## 1237      3.9      271 21/01/2018        0 21/01/2018        0        0
## 5532     30.7      687 19/07/2018        0 19/07/2018        0        0
## 5201     28.2     1105   5/7/2018        0   5/7/2018        0        0
##      col 1893 col 1894 col 1895 col 1896 col 1897   col 1898 col 1899 col 1900
## 1658        0        1      Yes     0.00      1.2 No Holiday     1908        0
## 3485        0        4      Yes     0.00      0.5 No Holiday     2000        0
## 5491        0       18      Yes     1.20      2.5 No Holiday     1550        0
## 1237        0       12      Yes     0.91      1.6 No Holiday     1085        0
## 5532        0       11      Yes     2.92      1.6 No Holiday     1705        0
## 5201        0       16      Yes     0.96      1.7 No Holiday     2000        0
##        col 1901 col 1902 col 1903 col 1904 col 1905 col 1906 col 1907
## 1658   8/2/2018      1.2      Yes     1908      126      Yes     1908
## 3485 25/04/2018      0.5      Yes     2000      117      Yes     2000
## 5491 17/07/2018      2.5      Yes     1550     2770      Yes     1550
## 1237 21/01/2018      1.6      Yes     1085      271      Yes     1085
## 5532 19/07/2018      1.6      Yes     1705      687      Yes     1705
## 5201   5/7/2018      1.7      Yes     2000     1105      Yes     2000
##        col 1908 col 1909 col 1910 col 1911 col 1912 col 1913   col 1914
## 1658   8/2/2018      1.2      1.2      1.2    -14.8     1908 No Holiday
## 3485 25/04/2018      0.5      0.5      0.5      0.4     2000 No Holiday
## 5491 17/07/2018      2.5      2.5      2.5     21.1     1550 No Holiday
## 1237 21/01/2018      1.6      1.6      1.6    -12.1     1085 No Holiday
## 5532 19/07/2018      1.6      1.6      1.6     18.4     1705 No Holiday
## 5201   5/7/2018      1.7      1.7      1.7     22.4     2000 No Holiday
##        col 1915 col 1916 col 1917 col 1918 col 1919 col 1920 col 1921 col 1922
## 1658   8/2/2018        1      1.2    -14.8      126     -8.5      Yes       60
## 3485 25/04/2018        4      0.5      0.4      117      6.4      Yes       66
## 5491 17/07/2018       18      2.5     21.1     2770     31.3      Yes       55
## 1237 21/01/2018       12      1.6    -12.1      271      3.9      Yes       30
## 5532 19/07/2018       11      1.6     18.4      687     30.7      Yes       48
## 5201   5/7/2018       16      1.7     22.4     1105     28.2      Yes       71
##      col 1923 col 1924 col 1925 col 1926   col 1927 col 1928 col 1929 col 1930
## 1658       60     1908   Winter     -8.5   8/2/2018      1.2     0.00      1.2
## 3485       66     2000   Spring      6.4 25/04/2018      0.5     0.00      0.5
## 5491       55     1550   Summer     31.3 17/07/2018      2.5     1.20      2.5
## 1237       30     1085   Winter      3.9 21/01/2018      1.6     0.91      1.6
## 5532       48     1705   Summer     30.7 19/07/2018      1.6     2.92      1.6
## 5201       71     2000   Summer     28.2   5/7/2018      1.7     0.96      1.7
##      col 1931 col 1932 col 1933 col 1934 col 1935 col 1936 col 1937 col 1938
## 1658        0     0.00        0     0.00       60      1.2        1      Yes
## 3485        0     0.00        0     0.00       66      0.5        4      Yes
## 5491        0     1.20        0     1.20       55      2.5       18      Yes
## 1237        0     0.91        0     0.91       30      1.6       12      Yes
## 5532        0     2.92        0     2.92       48      1.6       11      Yes
## 5201        0     0.96        0     0.96       71      1.7       16      Yes
##      col 1939 col 1940 col 1941 col 1942   col 1943 col 1944 col 1945
## 1658    -14.8        0     1908   Winter No Holiday        1     0.00
## 3485      0.4        0     2000   Spring No Holiday        4     0.00
## 5491     21.1        0     1550   Summer No Holiday       18     1.20
## 1237    -12.1        0     1085   Winter No Holiday       12     0.91
## 5532     18.4        0     1705   Summer No Holiday       11     2.92
## 5201     22.4        0     2000   Summer No Holiday       16     0.96
##        col 1946 col 1947 col 1948   col 1949 col 1950 col 1951 col 1952
## 1658   8/2/2018     0.00      Yes   8/2/2018     1908        0      1.2
## 3485 25/04/2018     0.00      Yes 25/04/2018     2000        0      0.5
## 5491 17/07/2018     1.20      Yes 17/07/2018     1550        0      2.5
## 1237 21/01/2018     0.91      Yes 21/01/2018     1085        0      1.6
## 5532 19/07/2018     2.92      Yes 19/07/2018     1705        0      1.6
## 5201   5/7/2018     0.96      Yes   5/7/2018     2000        0      1.7
##      col 1953 col 1954   col 1955 col 1956 col 1957   col 1958 col 1959
## 1658     0.00      Yes   8/2/2018      Yes     -8.5 No Holiday      1.2
## 3485     0.00      Yes 25/04/2018      Yes      6.4 No Holiday      0.5
## 5491     1.20      Yes 17/07/2018      Yes     31.3 No Holiday      2.5
## 1237     0.91      Yes 21/01/2018      Yes      3.9 No Holiday      1.6
## 5532     2.92      Yes 19/07/2018      Yes     30.7 No Holiday      1.6
## 5201     0.96      Yes   5/7/2018      Yes     28.2 No Holiday      1.7
##      col 1960 col 1961 col 1962 col 1963 col 1964 col 1965 col 1966 col 1967
## 1658      Yes   Winter      Yes   Winter     1908     1908      Yes        1
## 3485      Yes   Spring      Yes   Spring     2000     2000      Yes        4
## 5491      Yes   Summer      Yes   Summer     1550     1550      Yes       18
## 1237      Yes   Winter      Yes   Winter     1085     1085      Yes       12
## 5532      Yes   Summer      Yes   Summer     1705     1705      Yes       11
## 5201      Yes   Summer      Yes   Summer     2000     2000      Yes       16
##      col 1968 col 1969 col 1970 col 1971 col 1972   col 1973 col 1974 col 1975
## 1658   Winter     0.00       60     0.00      Yes   8/2/2018     0.00   Winter
## 3485   Spring     0.00       66     0.00      Yes 25/04/2018     0.00   Spring
## 5491   Summer     1.20       55     1.20      Yes 17/07/2018     1.20   Summer
## 1237   Winter     0.91       30     0.91      Yes 21/01/2018     0.91   Winter
## 5532   Summer     2.92       48     2.92      Yes 19/07/2018     2.92   Summer
## 5201   Summer     0.96       71     0.96      Yes   5/7/2018     0.96   Summer
##      col 1976 col 1977 col 1978 col 1979 col 1980 col 1981 col 1982 col 1983
## 1658       60       60      1.2    -14.8      Yes   Winter     0.00        0
## 3485       66       66      0.5      0.4      Yes   Spring     0.00        0
## 5491       55       55      2.5     21.1      Yes   Summer     1.20        0
## 1237       30       30      1.6    -12.1      Yes   Winter     0.91        0
## 5532       48       48      1.6     18.4      Yes   Summer     2.92        0
## 5201       71       71      1.7     22.4      Yes   Summer     0.96        0
##      col 1984 col 1985 col 1986   col 1987   col 1988 col 1989 col 1990
## 1658     1908      126     -8.5   8/2/2018   8/2/2018   Winter        0
## 3485     2000      117      6.4 25/04/2018 25/04/2018   Spring        0
## 5491     1550     2770     31.3 17/07/2018 17/07/2018   Summer        0
## 1237     1085      271      3.9 21/01/2018 21/01/2018   Winter        0
## 5532     1705      687     30.7 19/07/2018 19/07/2018   Summer        0
## 5201     2000     1105     28.2   5/7/2018   5/7/2018   Summer        0
##      col 1991 col 1992 col 1993 col 1994 col 1995 col 1996 col 1997   col 1998
## 1658      1.2   Winter      1.2        0     1908     1908      Yes   8/2/2018
## 3485      0.5   Spring      0.5        0     2000     2000      Yes 25/04/2018
## 5491      2.5   Summer      2.5        0     1550     1550      Yes 17/07/2018
## 1237      1.6   Winter      1.6        0     1085     1085      Yes 21/01/2018
## 5532      1.6   Summer      1.6        0     1705     1705      Yes 19/07/2018
## 5201      1.7   Summer      1.7        0     2000     2000      Yes   5/7/2018
##      col 1999 col 2000 col 2001 col 2002 col 2003   col 2004 col 2005 col 2006
## 1658        1        0     0.00     -8.5        0 No Holiday       60     1908
## 3485        4        0     0.00      6.4        0 No Holiday       66     2000
## 5491       18        0     1.20     31.3        0 No Holiday       55     1550
## 1237       12        0     0.91      3.9        0 No Holiday       30     1085
## 5532       11        0     2.92     30.7        0 No Holiday       48     1705
## 5201       16        0     0.96     28.2        0 No Holiday       71     2000
##      col 2007 col 2008 col 2009 col 2010   col 2011 col 2012 col 2013 col 2014
## 1658     0.00     0.00     1908       60 No Holiday       60       60       60
## 3485     0.00     0.00     2000       66 No Holiday       66       66       66
## 5491     1.20     1.20     1550       55 No Holiday       55       55       55
## 1237     0.91     0.91     1085       30 No Holiday       30       30       30
## 5532     2.92     2.92     1705       48 No Holiday       48       48       48
## 5201     0.96     0.96     2000       71 No Holiday       71       71       71
##        col 2015 col 2016 col 2017 col 2018 col 2019 col 2020 col 2021 col 2022
## 1658   8/2/2018       60     0.00        1     -8.5   Winter     1908        0
## 3485 25/04/2018       66     0.00        4      6.4   Spring     2000        0
## 5491 17/07/2018       55     1.20       18     31.3   Summer     1550        0
## 1237 21/01/2018       30     0.91       12      3.9   Winter     1085        0
## 5532 19/07/2018       48     2.92       11     30.7   Summer     1705        0
## 5201   5/7/2018       71     0.96       16     28.2   Summer     2000        0
##      col 2023 col 2024 col 2025 col 2026 col 2027 col 2028 col 2029 col 2030
## 1658      126       60        0        0       60        0        0       60
## 3485      117       66        0        0       66        0        0       66
## 5491     2770       55        0        0       55        0        0       55
## 1237      271       30        0        0       30        0        0       30
## 5532      687       48        0        0       48        0        0       48
## 5201     1105       71        0        0       71        0        0       71
##      col 2031 col 2032 col 2033 col 2034 col 2035   col 2036 col 2037 col 2038
## 1658     -8.5      Yes      1.2    -14.8      Yes No Holiday     1908     -8.5
## 3485      6.4      Yes      0.5      0.4      Yes No Holiday     2000      6.4
## 5491     31.3      Yes      2.5     21.1      Yes No Holiday     1550     31.3
## 1237      3.9      Yes      1.6    -12.1      Yes No Holiday     1085      3.9
## 5532     30.7      Yes      1.6     18.4      Yes No Holiday     1705     30.7
## 5201     28.2      Yes      1.7     22.4      Yes No Holiday     2000     28.2
##      col 2039 col 2040 col 2041   col 2042 col 2043   col 2044 col 2045
## 1658       60        0     -8.5 No Holiday   Winter No Holiday   Winter
## 3485       66        0      6.4 No Holiday   Spring No Holiday   Spring
## 5491       55        0     31.3 No Holiday   Summer No Holiday   Summer
## 1237       30        0      3.9 No Holiday   Winter No Holiday   Winter
## 5532       48        0     30.7 No Holiday   Summer No Holiday   Summer
## 5201       71        0     28.2 No Holiday   Summer No Holiday   Summer
##      col 2046 col 2047 col 2048   col 2049 col 2050 col 2051 col 2052 col 2053
## 1658      Yes      1.2        1   8/2/2018      Yes     1908      Yes        0
## 3485      Yes      0.5        4 25/04/2018      Yes     2000      Yes        0
## 5491      Yes      2.5       18 17/07/2018      Yes     1550      Yes        0
## 1237      Yes      1.6       12 21/01/2018      Yes     1085      Yes        0
## 5532      Yes      1.6       11 19/07/2018      Yes     1705      Yes        0
## 5201      Yes      1.7       16   5/7/2018      Yes     2000      Yes        0
##        col 2054   col 2055 col 2056 col 2057 col 2058 col 2059 col 2060
## 1658   8/2/2018 No Holiday       60       60        1      Yes     1908
## 3485 25/04/2018 No Holiday       66       66        4      Yes     2000
## 5491 17/07/2018 No Holiday       55       55       18      Yes     1550
## 1237 21/01/2018 No Holiday       30       30       12      Yes     1085
## 5532 19/07/2018 No Holiday       48       48       11      Yes     1705
## 5201   5/7/2018 No Holiday       71       71       16      Yes     2000
##      col 2061 col 2062 col 2063 col 2064 col 2065 col 2066 col 2067 col 2068
## 1658      1.2       60        0       60     -8.5     0.00        0   Winter
## 3485      0.5       66        0       66      6.4     0.00        0   Spring
## 5491      2.5       55        0       55     31.3     1.20        0   Summer
## 1237      1.6       30        0       30      3.9     0.91        0   Winter
## 5532      1.6       48        0       48     30.7     2.92        0   Summer
## 5201      1.7       71        0       71     28.2     0.96        0   Summer
##      col 2069 col 2070   col 2071 col 2072 col 2073 col 2074 col 2075 col 2076
## 1658     1908      1.2 No Holiday    -14.8       60     1908   Winter      Yes
## 3485     2000      0.5 No Holiday      0.4       66     2000   Spring      Yes
## 5491     1550      2.5 No Holiday     21.1       55     1550   Summer      Yes
## 1237     1085      1.6 No Holiday    -12.1       30     1085   Winter      Yes
## 5532     1705      1.6 No Holiday     18.4       48     1705   Summer      Yes
## 5201     2000      1.7 No Holiday     22.4       71     2000   Summer      Yes
##      col 2077 col 2078   col 2079 col 2080 col 2081 col 2082 col 2083 col 2084
## 1658        0      126   8/2/2018        0      Yes      1.2     -8.5    -14.8
## 3485        0      117 25/04/2018        0      Yes      0.5      6.4      0.4
## 5491        0     2770 17/07/2018        0      Yes      2.5     31.3     21.1
## 1237        0      271 21/01/2018        0      Yes      1.6      3.9    -12.1
## 5532        0      687 19/07/2018        0      Yes      1.6     30.7     18.4
## 5201        0     1105   5/7/2018        0      Yes      1.7     28.2     22.4
##      col 2085 col 2086 col 2087 col 2088 col 2089 col 2090 col 2091 col 2092
## 1658      126        0       60      126        0   Winter      Yes      126
## 3485      117        0       66      117        0   Spring      Yes      117
## 5491     2770        0       55     2770        0   Summer      Yes     2770
## 1237      271        0       30      271        0   Winter      Yes      271
## 5532      687        0       48      687        0   Summer      Yes      687
## 5201     1105        0       71     1105        0   Summer      Yes     1105
##      col 2093 col 2094 col 2095 col 2096 col 2097 col 2098   col 2099 col 2100
## 1658        0      Yes   Winter    -14.8    -14.8        1   8/2/2018      Yes
## 3485        0      Yes   Spring      0.4      0.4        4 25/04/2018      Yes
## 5491        0      Yes   Summer     21.1     21.1       18 17/07/2018      Yes
## 1237        0      Yes   Winter    -12.1    -12.1       12 21/01/2018      Yes
## 5532        0      Yes   Summer     18.4     18.4       11 19/07/2018      Yes
## 5201        0      Yes   Summer     22.4     22.4       16   5/7/2018      Yes
##      col 2101 col 2102 col 2103 col 2104 col 2105 col 2106 col 2107 col 2108
## 1658      Yes    -14.8     0.00        0        0   Winter     0.00    -14.8
## 3485      Yes      0.4     0.00        0        0   Spring     0.00      0.4
## 5491      Yes     21.1     1.20        0        0   Summer     1.20     21.1
## 1237      Yes    -12.1     0.91        0        0   Winter     0.91    -12.1
## 5532      Yes     18.4     2.92        0        0   Summer     2.92     18.4
## 5201      Yes     22.4     0.96        0        0   Summer     0.96     22.4
##      col 2109   col 2110 col 2111   col 2112   col 2113 col 2114 col 2115
## 1658    -14.8 No Holiday      Yes No Holiday   8/2/2018        1      Yes
## 3485      0.4 No Holiday      Yes No Holiday 25/04/2018        4      Yes
## 5491     21.1 No Holiday      Yes No Holiday 17/07/2018       18      Yes
## 1237    -12.1 No Holiday      Yes No Holiday 21/01/2018       12      Yes
## 5532     18.4 No Holiday      Yes No Holiday 19/07/2018       11      Yes
## 5201     22.4 No Holiday      Yes No Holiday   5/7/2018       16      Yes
##      col 2116 col 2117 col 2118 col 2119 col 2120 col 2121 col 2122 col 2123
## 1658     -8.5    -14.8     0.00        0    -14.8    -14.8      Yes    -14.8
## 3485      6.4      0.4     0.00        0      0.4      0.4      Yes      0.4
## 5491     31.3     21.1     1.20        0     21.1     21.1      Yes     21.1
## 1237      3.9    -12.1     0.91        0    -12.1    -12.1      Yes    -12.1
## 5532     30.7     18.4     2.92        0     18.4     18.4      Yes     18.4
## 5201     28.2     22.4     0.96        0     22.4     22.4      Yes     22.4
##      col 2124 col 2125 col 2126 col 2127 col 2128 col 2129 col 2130 col 2131
## 1658        0       60        0       60   Winter     0.00   Winter    -14.8
## 3485        0       66        0       66   Spring     0.00   Spring      0.4
## 5491        0       55        0       55   Summer     1.20   Summer     21.1
## 1237        0       30        0       30   Winter     0.91   Winter    -12.1
## 5532        0       48        0       48   Summer     2.92   Summer     18.4
## 5201        0       71        0       71   Summer     0.96   Summer     22.4
##        col 2132 col 2133 col 2134 col 2135 col 2136 col 2137 col 2138
## 1658   8/2/2018        0       60      1.2        0      126     0.00
## 3485 25/04/2018        0       66      0.5        0      117     0.00
## 5491 17/07/2018        0       55      2.5        0     2770     1.20
## 1237 21/01/2018        0       30      1.6        0      271     0.91
## 5532 19/07/2018        0       48      1.6        0      687     2.92
## 5201   5/7/2018        0       71      1.7        0     1105     0.96
##        col 2139 col 2140 col 2141 col 2142 col 2143   col 2144 col 2145
## 1658 No Holiday      1.2     0.00      Yes    -14.8   8/2/2018        1
## 3485 No Holiday      0.5     0.00      Yes      0.4 25/04/2018        4
## 5491 No Holiday      2.5     1.20      Yes     21.1 17/07/2018       18
## 1237 No Holiday      1.6     0.91      Yes    -12.1 21/01/2018       12
## 5532 No Holiday      1.6     2.92      Yes     18.4 19/07/2018       11
## 5201 No Holiday      1.7     0.96      Yes     22.4   5/7/2018       16
##      col 2146 col 2147 col 2148 col 2149 col 2150 col 2151 col 2152 col 2153
## 1658   Winter        1      1.2      Yes     0.00      1.2      1.2       60
## 3485   Spring        4      0.5      Yes     0.00      0.5      0.5       66
## 5491   Summer       18      2.5      Yes     1.20      2.5      2.5       55
## 1237   Winter       12      1.6      Yes     0.91      1.6      1.6       30
## 5532   Summer       11      1.6      Yes     2.92      1.6      1.6       48
## 5201   Summer       16      1.7      Yes     0.96      1.7      1.7       71
##      col 2154 col 2155 col 2156 col 2157 col 2158 col 2159 col 2160 col 2161
## 1658        0       60       60     -8.5        0     -8.5      126     0.00
## 3485        0       66       66      6.4        0      6.4      117     0.00
## 5491        0       55       55     31.3        0     31.3     2770     1.20
## 1237        0       30       30      3.9        0      3.9      271     0.91
## 5532        0       48       48     30.7        0     30.7      687     2.92
## 5201        0       71       71     28.2        0     28.2     1105     0.96
##      col 2162 col 2163   col 2164 col 2165 col 2166   col 2167 col 2168
## 1658      Yes        0 No Holiday        0      126   8/2/2018   Winter
## 3485      Yes        0 No Holiday        0      117 25/04/2018   Spring
## 5491      Yes        0 No Holiday        0     2770 17/07/2018   Summer
## 1237      Yes        0 No Holiday        0      271 21/01/2018   Winter
## 5532      Yes        0 No Holiday        0      687 19/07/2018   Summer
## 5201      Yes        0 No Holiday        0     1105   5/7/2018   Summer
##      col 2169   col 2170 col 2171 col 2172 col 2173   col 2174 col 2175
## 1658     -8.5   8/2/2018      1.2   Winter        0 No Holiday     -8.5
## 3485      6.4 25/04/2018      0.5   Spring        0 No Holiday      6.4
## 5491     31.3 17/07/2018      2.5   Summer        0 No Holiday     31.3
## 1237      3.9 21/01/2018      1.6   Winter        0 No Holiday      3.9
## 5532     30.7 19/07/2018      1.6   Summer        0 No Holiday     30.7
## 5201     28.2   5/7/2018      1.7   Summer        0 No Holiday     28.2
##      col 2176 col 2177 col 2178 col 2179 col 2180 col 2181 col 2182 col 2183
## 1658    -14.8        0    -14.8      Yes        1    -14.8       60        0
## 3485      0.4        0      0.4      Yes        4      0.4       66        0
## 5491     21.1        0     21.1      Yes       18     21.1       55        0
## 1237    -12.1        0    -12.1      Yes       12    -12.1       30        0
## 5532     18.4        0     18.4      Yes       11     18.4       48        0
## 5201     22.4        0     22.4      Yes       16     22.4       71        0
##      col 2184 col 2185 col 2186   col 2187 col 2188 col 2189 col 2190 col 2191
## 1658      126      1.2       60 No Holiday        0     1908        0        1
## 3485      117      0.5       66 No Holiday        0     2000        0        4
## 5491     2770      2.5       55 No Holiday        0     1550        0       18
## 1237      271      1.6       30 No Holiday        0     1085        0       12
## 5532      687      1.6       48 No Holiday        0     1705        0       11
## 5201     1105      1.7       71 No Holiday        0     2000        0       16
##      col 2192 col 2193 col 2194 col 2195 col 2196   col 2197 col 2198
## 1658      1.2        1        0     -8.5   Winter   8/2/2018    -14.8
## 3485      0.5        4        0      6.4   Spring 25/04/2018      0.4
## 5491      2.5       18        0     31.3   Summer 17/07/2018     21.1
## 1237      1.6       12        0      3.9   Winter 21/01/2018    -12.1
## 5532      1.6       11        0     30.7   Summer 19/07/2018     18.4
## 5201      1.7       16        0     28.2   Summer   5/7/2018     22.4
##        col 2199   col 2200 col 2201 col 2202 col 2203 col 2204 col 2205
## 1658   8/2/2018 No Holiday        0      1.2      126     0.00     1908
## 3485 25/04/2018 No Holiday        0      0.5      117     0.00     2000
## 5491 17/07/2018 No Holiday        0      2.5     2770     1.20     1550
## 1237 21/01/2018 No Holiday        0      1.6      271     0.91     1085
## 5532 19/07/2018 No Holiday        0      1.6      687     2.92     1705
## 5201   5/7/2018 No Holiday        0      1.7     1105     0.96     2000
##      col 2206 col 2207 col 2208 col 2209 col 2210 col 2211   col 2212
## 1658     -8.5     0.00      Yes    -14.8     1908      Yes   8/2/2018
## 3485      6.4     0.00      Yes      0.4     2000      Yes 25/04/2018
## 5491     31.3     1.20      Yes     21.1     1550      Yes 17/07/2018
## 1237      3.9     0.91      Yes    -12.1     1085      Yes 21/01/2018
## 5532     30.7     2.92      Yes     18.4     1705      Yes 19/07/2018
## 5201     28.2     0.96      Yes     22.4     2000      Yes   5/7/2018
##        col 2213 col 2214   col 2215 col 2216 col 2217 col 2218   col 2219
## 1658 No Holiday     -8.5 No Holiday     1908        0        0   8/2/2018
## 3485 No Holiday      6.4 No Holiday     2000        0        0 25/04/2018
## 5491 No Holiday     31.3 No Holiday     1550        0        0 17/07/2018
## 1237 No Holiday      3.9 No Holiday     1085        0        0 21/01/2018
## 5532 No Holiday     30.7 No Holiday     1705        0        0 19/07/2018
## 5201 No Holiday     28.2 No Holiday     2000        0        0   5/7/2018
##      col 2220   col 2221   col 2222   col 2223 col 2224 col 2225 col 2226
## 1658     -8.5   8/2/2018 No Holiday No Holiday      Yes      1.2     -8.5
## 3485      6.4 25/04/2018 No Holiday No Holiday      Yes      0.5      6.4
## 5491     31.3 17/07/2018 No Holiday No Holiday      Yes      2.5     31.3
## 1237      3.9 21/01/2018 No Holiday No Holiday      Yes      1.6      3.9
## 5532     30.7 19/07/2018 No Holiday No Holiday      Yes      1.6     30.7
## 5201     28.2   5/7/2018 No Holiday No Holiday      Yes      1.7     28.2
##      col 2227 col 2228 col 2229   col 2230   col 2231 col 2232 col 2233
## 1658      1.2       60      1.2   8/2/2018   8/2/2018     1908   Winter
## 3485      0.5       66      0.5 25/04/2018 25/04/2018     2000   Spring
## 5491      2.5       55      2.5 17/07/2018 17/07/2018     1550   Summer
## 1237      1.6       30      1.6 21/01/2018 21/01/2018     1085   Winter
## 5532      1.6       48      1.6 19/07/2018 19/07/2018     1705   Summer
## 5201      1.7       71      1.7   5/7/2018   5/7/2018     2000   Summer
##      col 2234 col 2235 col 2236 col 2237 col 2238 col 2239 col 2240 col 2241
## 1658        0        1      1.2     -8.5     0.00      Yes      1.2        0
## 3485        0        4      0.5      6.4     0.00      Yes      0.5        0
## 5491        0       18      2.5     31.3     1.20      Yes      2.5        0
## 1237        0       12      1.6      3.9     0.91      Yes      1.6        0
## 5532        0       11      1.6     30.7     2.92      Yes      1.6        0
## 5201        0       16      1.7     28.2     0.96      Yes      1.7        0
##      col 2242 col 2243 col 2244 col 2245 col 2246 col 2247 col 2248 col 2249
## 1658   Winter       60        1       60     1908        0        0        0
## 3485   Spring       66        4       66     2000        0        0        0
## 5491   Summer       55       18       55     1550        0        0        0
## 1237   Winter       30       12       30     1085        0        0        0
## 5532   Summer       48       11       48     1705        0        0        0
## 5201   Summer       71       16       71     2000        0        0        0
##      col 2250   col 2251 col 2252 col 2253 col 2254 col 2255 col 2256 col 2257
## 1658        1   8/2/2018     0.00        1      1.2        0        0        0
## 3485        4 25/04/2018     0.00        4      0.5        0        0        0
## 5491       18 17/07/2018     1.20       18      2.5        0        0        0
## 1237       12 21/01/2018     0.91       12      1.6        0        0        0
## 5532       11 19/07/2018     2.92       11      1.6        0        0        0
## 5201       16   5/7/2018     0.96       16      1.7        0        0        0
##      col 2258 col 2259 col 2260 col 2261 col 2262 col 2263   col 2264 col 2265
## 1658     1908     -8.5      Yes   Winter      126        1 No Holiday      Yes
## 3485     2000      6.4      Yes   Spring      117        4 No Holiday      Yes
## 5491     1550     31.3      Yes   Summer     2770       18 No Holiday      Yes
## 1237     1085      3.9      Yes   Winter      271       12 No Holiday      Yes
## 5532     1705     30.7      Yes   Summer      687       11 No Holiday      Yes
## 5201     2000     28.2      Yes   Summer     1105       16 No Holiday      Yes
##      col 2266 col 2267   col 2268   col 2269 col 2270 col 2271 col 2272
## 1658        0       60 No Holiday No Holiday    -14.8     -8.5     -8.5
## 3485        0       66 No Holiday No Holiday      0.4      6.4      6.4
## 5491        0       55 No Holiday No Holiday     21.1     31.3     31.3
## 1237        0       30 No Holiday No Holiday    -12.1      3.9      3.9
## 5532        0       48 No Holiday No Holiday     18.4     30.7     30.7
## 5201        0       71 No Holiday No Holiday     22.4     28.2     28.2
##      col 2273 col 2274 col 2275 col 2276 col 2277 col 2278 col 2279 col 2280
## 1658     0.00      126   Winter   Winter      126     1908        0        0
## 3485     0.00      117   Spring   Spring      117     2000        0        0
## 5491     1.20     2770   Summer   Summer     2770     1550        0        0
## 1237     0.91      271   Winter   Winter      271     1085        0        0
## 5532     2.92      687   Summer   Summer      687     1705        0        0
## 5201     0.96     1105   Summer   Summer     1105     2000        0        0
##      col 2281 col 2282 col 2283 col 2284 col 2285 col 2286   col 2287 col 2288
## 1658        0      Yes   Winter     1908   Winter    -14.8   8/2/2018   Winter
## 3485        0      Yes   Spring     2000   Spring      0.4 25/04/2018   Spring
## 5491        0      Yes   Summer     1550   Summer     21.1 17/07/2018   Summer
## 1237        0      Yes   Winter     1085   Winter    -12.1 21/01/2018   Winter
## 5532        0      Yes   Summer     1705   Summer     18.4 19/07/2018   Summer
## 5201        0      Yes   Summer     2000   Summer     22.4   5/7/2018   Summer
##      col 2289 col 2290 col 2291 col 2292 col 2293 col 2294   col 2295 col 2296
## 1658     1908        0    -14.8       60        0        1 No Holiday        1
## 3485     2000        0      0.4       66        0        4 No Holiday        4
## 5491     1550        0     21.1       55        0       18 No Holiday       18
## 1237     1085        0    -12.1       30        0       12 No Holiday       12
## 5532     1705        0     18.4       48        0       11 No Holiday       11
## 5201     2000        0     22.4       71        0       16 No Holiday       16
##      col 2297 col 2298 col 2299 col 2300   col 2301 col 2302 col 2303 col 2304
## 1658     1908        0    -14.8        0   8/2/2018   Winter        0      Yes
## 3485     2000        0      0.4        0 25/04/2018   Spring        0      Yes
## 5491     1550        0     21.1        0 17/07/2018   Summer        0      Yes
## 1237     1085        0    -12.1        0 21/01/2018   Winter        0      Yes
## 5532     1705        0     18.4        0 19/07/2018   Summer        0      Yes
## 5201     2000        0     22.4        0   5/7/2018   Summer        0      Yes
##      col 2305   col 2306 col 2307 col 2308   col 2309 col 2310 col 2311
## 1658     1908 No Holiday     -8.5        1 No Holiday        1       60
## 3485     2000 No Holiday      6.4        4 No Holiday        4       66
## 5491     1550 No Holiday     31.3       18 No Holiday       18       55
## 1237     1085 No Holiday      3.9       12 No Holiday       12       30
## 5532     1705 No Holiday     30.7       11 No Holiday       11       48
## 5201     2000 No Holiday     28.2       16 No Holiday       16       71
##      col 2312 col 2313 col 2314   col 2315   col 2316 col 2317   col 2318
## 1658        0      Yes    -14.8   8/2/2018   8/2/2018       60   8/2/2018
## 3485        0      Yes      0.4 25/04/2018 25/04/2018       66 25/04/2018
## 5491        0      Yes     21.1 17/07/2018 17/07/2018       55 17/07/2018
## 1237        0      Yes    -12.1 21/01/2018 21/01/2018       30 21/01/2018
## 5532        0      Yes     18.4 19/07/2018 19/07/2018       48 19/07/2018
## 5201        0      Yes     22.4   5/7/2018   5/7/2018       71   5/7/2018
##      col 2319 col 2320 col 2321 col 2322 col 2323 col 2324 col 2325   col 2326
## 1658     -8.5     0.00     1908      Yes       60      1.2     -8.5 No Holiday
## 3485      6.4     0.00     2000      Yes       66      0.5      6.4 No Holiday
## 5491     31.3     1.20     1550      Yes       55      2.5     31.3 No Holiday
## 1237      3.9     0.91     1085      Yes       30      1.6      3.9 No Holiday
## 5532     30.7     2.92     1705      Yes       48      1.6     30.7 No Holiday
## 5201     28.2     0.96     2000      Yes       71      1.7     28.2 No Holiday
##      col 2327 col 2328   col 2329 col 2330 col 2331 col 2332 col 2333
## 1658     1908      Yes   8/2/2018    -14.8      Yes    -14.8       60
## 3485     2000      Yes 25/04/2018      0.4      Yes      0.4       66
## 5491     1550      Yes 17/07/2018     21.1      Yes     21.1       55
## 1237     1085      Yes 21/01/2018    -12.1      Yes    -12.1       30
## 5532     1705      Yes 19/07/2018     18.4      Yes     18.4       48
## 5201     2000      Yes   5/7/2018     22.4      Yes     22.4       71
##        col 2334 col 2335 col 2336 col 2337 col 2338 col 2339 col 2340 col 2341
## 1658   8/2/2018      126      1.2       60      1.2      126      126        1
## 3485 25/04/2018      117      0.5       66      0.5      117      117        4
## 5491 17/07/2018     2770      2.5       55      2.5     2770     2770       18
## 1237 21/01/2018      271      1.6       30      1.6      271      271       12
## 5532 19/07/2018      687      1.6       48      1.6      687      687       11
## 5201   5/7/2018     1105      1.7       71      1.7     1105     1105       16
##      col 2342   col 2343 col 2344 col 2345 col 2346 col 2347 col 2348 col 2349
## 1658     0.00   8/2/2018      1.2        1     1908      126   Winter     -8.5
## 3485     0.00 25/04/2018      0.5        4     2000      117   Spring      6.4
## 5491     1.20 17/07/2018      2.5       18     1550     2770   Summer     31.3
## 1237     0.91 21/01/2018      1.6       12     1085      271   Winter      3.9
## 5532     2.92 19/07/2018      1.6       11     1705      687   Summer     30.7
## 5201     0.96   5/7/2018      1.7       16     2000     1105   Summer     28.2
##      col 2350 col 2351 col 2352 col 2353   col 2354 col 2355   col 2356
## 1658        1   Winter       60    -14.8 No Holiday        1 No Holiday
## 3485        4   Spring       66      0.4 No Holiday        4 No Holiday
## 5491       18   Summer       55     21.1 No Holiday       18 No Holiday
## 1237       12   Winter       30    -12.1 No Holiday       12 No Holiday
## 5532       11   Summer       48     18.4 No Holiday       11 No Holiday
## 5201       16   Summer       71     22.4 No Holiday       16 No Holiday
##      col 2357   col 2358 col 2359 col 2360 col 2361 col 2362 col 2363 col 2364
## 1658   Winter   8/2/2018    -14.8     1908        0     1908    -14.8     1908
## 3485   Spring 25/04/2018      0.4     2000        0     2000      0.4     2000
## 5491   Summer 17/07/2018     21.1     1550        0     1550     21.1     1550
## 1237   Winter 21/01/2018    -12.1     1085        0     1085    -12.1     1085
## 5532   Summer 19/07/2018     18.4     1705        0     1705     18.4     1705
## 5201   Summer   5/7/2018     22.4     2000        0     2000     22.4     2000
##      col 2365 col 2366 col 2367 col 2368 col 2369 col 2370   col 2371 col 2372
## 1658      1.2        0        0   Winter       60        1 No Holiday     -8.5
## 3485      0.5        0        0   Spring       66        4 No Holiday      6.4
## 5491      2.5        0        0   Summer       55       18 No Holiday     31.3
## 1237      1.6        0        0   Winter       30       12 No Holiday      3.9
## 5532      1.6        0        0   Summer       48       11 No Holiday     30.7
## 5201      1.7        0        0   Summer       71       16 No Holiday     28.2
##      col 2373 col 2374 col 2375 col 2376 col 2377 col 2378   col 2379 col 2380
## 1658      126       60        0        1        1        1 No Holiday      Yes
## 3485      117       66        0        4        4        4 No Holiday      Yes
## 5491     2770       55        0       18       18       18 No Holiday      Yes
## 1237      271       30        0       12       12       12 No Holiday      Yes
## 5532      687       48        0       11       11       11 No Holiday      Yes
## 5201     1105       71        0       16       16       16 No Holiday      Yes
##      col 2381   col 2382 col 2383 col 2384 col 2385 col 2386 col 2387 col 2388
## 1658        1 No Holiday     0.00        0       60        0      Yes        0
## 3485        4 No Holiday     0.00        0       66        0      Yes        0
## 5491       18 No Holiday     1.20        0       55        0      Yes        0
## 1237       12 No Holiday     0.91        0       30        0      Yes        0
## 5532       11 No Holiday     2.92        0       48        0      Yes        0
## 5201       16 No Holiday     0.96        0       71        0      Yes        0
##      col 2389 col 2390 col 2391 col 2392 col 2393   col 2394 col 2395 col 2396
## 1658   Winter     0.00    -14.8       60       60   8/2/2018      1.2       60
## 3485   Spring     0.00      0.4       66       66 25/04/2018      0.5       66
## 5491   Summer     1.20     21.1       55       55 17/07/2018      2.5       55
## 1237   Winter     0.91    -12.1       30       30 21/01/2018      1.6       30
## 5532   Summer     2.92     18.4       48       48 19/07/2018      1.6       48
## 5201   Summer     0.96     22.4       71       71   5/7/2018      1.7       71
##      col 2397   col 2398 col 2399 col 2400 col 2401 col 2402 col 2403 col 2404
## 1658        0   8/2/2018    -14.8     -8.5      126      126      126     0.00
## 3485        0 25/04/2018      0.4      6.4      117      117      117     0.00
## 5491        0 17/07/2018     21.1     31.3     2770     2770     2770     1.20
## 1237        0 21/01/2018    -12.1      3.9      271      271      271     0.91
## 5532        0 19/07/2018     18.4     30.7      687      687      687     2.92
## 5201        0   5/7/2018     22.4     28.2     1105     1105     1105     0.96
##      col 2405   col 2406 col 2407 col 2408 col 2409 col 2410 col 2411 col 2412
## 1658        1 No Holiday      Yes     1908      126     -8.5     -8.5   Winter
## 3485        4 No Holiday      Yes     2000      117      6.4      6.4   Spring
## 5491       18 No Holiday      Yes     1550     2770     31.3     31.3   Summer
## 1237       12 No Holiday      Yes     1085      271      3.9      3.9   Winter
## 5532       11 No Holiday      Yes     1705      687     30.7     30.7   Summer
## 5201       16 No Holiday      Yes     2000     1105     28.2     28.2   Summer
##      col 2413 col 2414 col 2415 col 2416   col 2417 col 2418 col 2419
## 1658      126     -8.5     -8.5     -8.5   8/2/2018        1   Winter
## 3485      117      6.4      6.4      6.4 25/04/2018        4   Spring
## 5491     2770     31.3     31.3     31.3 17/07/2018       18   Summer
## 1237      271      3.9      3.9      3.9 21/01/2018       12   Winter
## 5532      687     30.7     30.7     30.7 19/07/2018       11   Summer
## 5201     1105     28.2     28.2     28.2   5/7/2018       16   Summer
##        col 2420 col 2421 col 2422 col 2423   col 2424 col 2425 col 2426
## 1658   8/2/2018      Yes        1       60   8/2/2018        0     -8.5
## 3485 25/04/2018      Yes        4       66 25/04/2018        0      6.4
## 5491 17/07/2018      Yes       18       55 17/07/2018        0     31.3
## 1237 21/01/2018      Yes       12       30 21/01/2018        0      3.9
## 5532 19/07/2018      Yes       11       48 19/07/2018        0     30.7
## 5201   5/7/2018      Yes       16       71   5/7/2018        0     28.2
##      col 2427 col 2428 col 2429   col 2430 col 2431   col 2432 col 2433
## 1658      Yes      126     0.00 No Holiday        0 No Holiday     0.00
## 3485      Yes      117     0.00 No Holiday        0 No Holiday     0.00
## 5491      Yes     2770     1.20 No Holiday        0 No Holiday     1.20
## 1237      Yes      271     0.91 No Holiday        0 No Holiday     0.91
## 5532      Yes      687     2.92 No Holiday        0 No Holiday     2.92
## 5201      Yes     1105     0.96 No Holiday        0 No Holiday     0.96
##      col 2434 col 2435 col 2436 col 2437 col 2438 col 2439 col 2440 col 2441
## 1658      Yes      1.2   Winter      126      1.2        0      Yes     1908
## 3485      Yes      0.5   Spring      117      0.5        0      Yes     2000
## 5491      Yes      2.5   Summer     2770      2.5        0      Yes     1550
## 1237      Yes      1.6   Winter      271      1.6        0      Yes     1085
## 5532      Yes      1.6   Summer      687      1.6        0      Yes     1705
## 5201      Yes      1.7   Summer     1105      1.7        0      Yes     2000
##      col 2442 col 2443 col 2444 col 2445 col 2446 col 2447 col 2448   col 2449
## 1658        0    -14.8        1       60   Winter     1908        1 No Holiday
## 3485        0      0.4        4       66   Spring     2000        4 No Holiday
## 5491        0     21.1       18       55   Summer     1550       18 No Holiday
## 1237        0    -12.1       12       30   Winter     1085       12 No Holiday
## 5532        0     18.4       11       48   Summer     1705       11 No Holiday
## 5201        0     22.4       16       71   Summer     2000       16 No Holiday
##      col 2450 col 2451 col 2452 col 2453 col 2454 col 2455 col 2456 col 2457
## 1658   Winter       60      126        1        0   Winter        0       60
## 3485   Spring       66      117        4        0   Spring        0       66
## 5491   Summer       55     2770       18        0   Summer        0       55
## 1237   Winter       30      271       12        0   Winter        0       30
## 5532   Summer       48      687       11        0   Summer        0       48
## 5201   Summer       71     1105       16        0   Summer        0       71
##      col 2458 col 2459 col 2460 col 2461 col 2462   col 2463 col 2464 col 2465
## 1658        0   Winter     1908      126     -8.5 No Holiday      1.2     0.00
## 3485        0   Spring     2000      117      6.4 No Holiday      0.5     0.00
## 5491        0   Summer     1550     2770     31.3 No Holiday      2.5     1.20
## 1237        0   Winter     1085      271      3.9 No Holiday      1.6     0.91
## 5532        0   Summer     1705      687     30.7 No Holiday      1.6     2.92
## 5201        0   Summer     2000     1105     28.2 No Holiday      1.7     0.96
##      col 2466 col 2467 col 2468 col 2469 col 2470 col 2471 col 2472 col 2473
## 1658      126        1   Winter       60      Yes    -14.8     1908     0.00
## 3485      117        4   Spring       66      Yes      0.4     2000     0.00
## 5491     2770       18   Summer       55      Yes     21.1     1550     1.20
## 1237      271       12   Winter       30      Yes    -12.1     1085     0.91
## 5532      687       11   Summer       48      Yes     18.4     1705     2.92
## 5201     1105       16   Summer       71      Yes     22.4     2000     0.96
##        col 2474   col 2475 col 2476 col 2477   col 2478 col 2479 col 2480
## 1658   8/2/2018 No Holiday      Yes        0 No Holiday        0        1
## 3485 25/04/2018 No Holiday      Yes        0 No Holiday        0        4
## 5491 17/07/2018 No Holiday      Yes        0 No Holiday        0       18
## 1237 21/01/2018 No Holiday      Yes        0 No Holiday        0       12
## 5532 19/07/2018 No Holiday      Yes        0 No Holiday        0       11
## 5201   5/7/2018 No Holiday      Yes        0 No Holiday        0       16
##        col 2481 col 2482 col 2483 col 2484 col 2485 col 2486 col 2487 col 2488
## 1658 No Holiday   Winter        0     0.00     -8.5        1     -8.5      126
## 3485 No Holiday   Spring        0     0.00      6.4        4      6.4      117
## 5491 No Holiday   Summer        0     1.20     31.3       18     31.3     2770
## 1237 No Holiday   Winter        0     0.91      3.9       12      3.9      271
## 5532 No Holiday   Summer        0     2.92     30.7       11     30.7      687
## 5201 No Holiday   Summer        0     0.96     28.2       16     28.2     1105
##      col 2489 col 2490 col 2491 col 2492 col 2493 col 2494 col 2495 col 2496
## 1658       60        1        0     1908        1    -14.8     -8.5        1
## 3485       66        4        0     2000        4      0.4      6.4        4
## 5491       55       18        0     1550       18     21.1     31.3       18
## 1237       30       12        0     1085       12    -12.1      3.9       12
## 5532       48       11        0     1705       11     18.4     30.7       11
## 5201       71       16        0     2000       16     22.4     28.2       16
##        col 2497 col 2498 col 2499 col 2500   col 2501 col 2502 col 2503
## 1658   8/2/2018      1.2     0.00        1   8/2/2018     0.00        1
## 3485 25/04/2018      0.5     0.00        4 25/04/2018     0.00        4
## 5491 17/07/2018      2.5     1.20       18 17/07/2018     1.20       18
## 1237 21/01/2018      1.6     0.91       12 21/01/2018     0.91       12
## 5532 19/07/2018      1.6     2.92       11 19/07/2018     2.92       11
## 5201   5/7/2018      1.7     0.96       16   5/7/2018     0.96       16
##      col 2504 col 2505 col 2506   col 2507 col 2508 col 2509   col 2510
## 1658        1     -8.5        1   8/2/2018      1.2    -14.8 No Holiday
## 3485        4      6.4        4 25/04/2018      0.5      0.4 No Holiday
## 5491       18     31.3       18 17/07/2018      2.5     21.1 No Holiday
## 1237       12      3.9       12 21/01/2018      1.6    -12.1 No Holiday
## 5532       11     30.7       11 19/07/2018      1.6     18.4 No Holiday
## 5201       16     28.2       16   5/7/2018      1.7     22.4 No Holiday
##      col 2511 col 2512 col 2513 col 2514 col 2515 col 2516 col 2517   col 2518
## 1658        0      1.2      1.2      126        0   Winter      126   8/2/2018
## 3485        0      0.5      0.5      117        0   Spring      117 25/04/2018
## 5491        0      2.5      2.5     2770        0   Summer     2770 17/07/2018
## 1237        0      1.6      1.6      271        0   Winter      271 21/01/2018
## 5532        0      1.6      1.6      687        0   Summer      687 19/07/2018
## 5201        0      1.7      1.7     1105        0   Summer     1105   5/7/2018
##      col 2519 col 2520 col 2521   col 2522 col 2523 col 2524 col 2525 col 2526
## 1658        1      1.2        0   8/2/2018        0       60      126      1.2
## 3485        4      0.5        0 25/04/2018        0       66      117      0.5
## 5491       18      2.5        0 17/07/2018        0       55     2770      2.5
## 1237       12      1.6        0 21/01/2018        0       30      271      1.6
## 5532       11      1.6        0 19/07/2018        0       48      687      1.6
## 5201       16      1.7        0   5/7/2018        0       71     1105      1.7
##      col 2527 col 2528 col 2529   col 2530 col 2531 col 2532   col 2533
## 1658        0   Winter      126   8/2/2018        0        1   8/2/2018
## 3485        0   Spring      117 25/04/2018        0        4 25/04/2018
## 5491        0   Summer     2770 17/07/2018        0       18 17/07/2018
## 1237        0   Winter      271 21/01/2018        0       12 21/01/2018
## 5532        0   Summer      687 19/07/2018        0       11 19/07/2018
## 5201        0   Summer     1105   5/7/2018        0       16   5/7/2018
##      col 2534 col 2535 col 2536 col 2537 col 2538 col 2539 col 2540 col 2541
## 1658     0.00      Yes   Winter       60      1.2       60     0.00    -14.8
## 3485     0.00      Yes   Spring       66      0.5       66     0.00      0.4
## 5491     1.20      Yes   Summer       55      2.5       55     1.20     21.1
## 1237     0.91      Yes   Winter       30      1.6       30     0.91    -12.1
## 5532     2.92      Yes   Summer       48      1.6       48     2.92     18.4
## 5201     0.96      Yes   Summer       71      1.7       71     0.96     22.4
##        col 2542 col 2543 col 2544 col 2545 col 2546 col 2547 col 2548 col 2549
## 1658 No Holiday     1908      126    -14.8      126    -14.8      1.2    -14.8
## 3485 No Holiday     2000      117      0.4      117      0.4      0.5      0.4
## 5491 No Holiday     1550     2770     21.1     2770     21.1      2.5     21.1
## 1237 No Holiday     1085      271    -12.1      271    -12.1      1.6    -12.1
## 5532 No Holiday     1705      687     18.4      687     18.4      1.6     18.4
## 5201 No Holiday     2000     1105     22.4     1105     22.4      1.7     22.4
##      col 2550 col 2551 col 2552 col 2553 col 2554 col 2555 col 2556   col 2557
## 1658      126     0.00        1        0     1908   Winter        0 No Holiday
## 3485      117     0.00        4        0     2000   Spring        0 No Holiday
## 5491     2770     1.20       18        0     1550   Summer        0 No Holiday
## 1237      271     0.91       12        0     1085   Winter        0 No Holiday
## 5532      687     2.92       11        0     1705   Summer        0 No Holiday
## 5201     1105     0.96       16        0     2000   Summer        0 No Holiday
##      col 2558 col 2559   col 2560 col 2561 col 2562 col 2563 col 2564 col 2565
## 1658     1908      126 No Holiday        0        0        1     0.00     -8.5
## 3485     2000      117 No Holiday        0        0        4     0.00      6.4
## 5491     1550     2770 No Holiday        0        0       18     1.20     31.3
## 1237     1085      271 No Holiday        0        0       12     0.91      3.9
## 5532     1705      687 No Holiday        0        0       11     2.92     30.7
## 5201     2000     1105 No Holiday        0        0       16     0.96     28.2
##      col 2566 col 2567 col 2568 col 2569 col 2570   col 2571 col 2572 col 2573
## 1658   Winter   Winter     -8.5    -14.8      Yes No Holiday      Yes     1908
## 3485   Spring   Spring      6.4      0.4      Yes No Holiday      Yes     2000
## 5491   Summer   Summer     31.3     21.1      Yes No Holiday      Yes     1550
## 1237   Winter   Winter      3.9    -12.1      Yes No Holiday      Yes     1085
## 5532   Summer   Summer     30.7     18.4      Yes No Holiday      Yes     1705
## 5201   Summer   Summer     28.2     22.4      Yes No Holiday      Yes     2000
##      col 2574 col 2575 col 2576   col 2577 col 2578 col 2579 col 2580 col 2581
## 1658       60        1   Winter   8/2/2018       60    -14.8     1908      Yes
## 3485       66        4   Spring 25/04/2018       66      0.4     2000      Yes
## 5491       55       18   Summer 17/07/2018       55     21.1     1550      Yes
## 1237       30       12   Winter 21/01/2018       30    -12.1     1085      Yes
## 5532       48       11   Summer 19/07/2018       48     18.4     1705      Yes
## 5201       71       16   Summer   5/7/2018       71     22.4     2000      Yes
##      col 2582 col 2583 col 2584 col 2585 col 2586 col 2587 col 2588 col 2589
## 1658       60        0   Winter        0     0.00    -14.8      Yes        0
## 3485       66        0   Spring        0     0.00      0.4      Yes        0
## 5491       55        0   Summer        0     1.20     21.1      Yes        0
## 1237       30        0   Winter        0     0.91    -12.1      Yes        0
## 5532       48        0   Summer        0     2.92     18.4      Yes        0
## 5201       71        0   Summer        0     0.96     22.4      Yes        0
##      col 2590 col 2591 col 2592 col 2593   col 2594 col 2595 col 2596 col 2597
## 1658     -8.5        1     1908     -8.5   8/2/2018      1.2        1        0
## 3485      6.4        4     2000      6.4 25/04/2018      0.5        4        0
## 5491     31.3       18     1550     31.3 17/07/2018      2.5       18        0
## 1237      3.9       12     1085      3.9 21/01/2018      1.6       12        0
## 5532     30.7       11     1705     30.7 19/07/2018      1.6       11        0
## 5201     28.2       16     2000     28.2   5/7/2018      1.7       16        0
##      col 2598   col 2599   col 2600 col 2601 col 2602 col 2603 col 2604
## 1658        0 No Holiday   8/2/2018     1908      126     -8.5        1
## 3485        0 No Holiday 25/04/2018     2000      117      6.4        4
## 5491        0 No Holiday 17/07/2018     1550     2770     31.3       18
## 1237        0 No Holiday 21/01/2018     1085      271      3.9       12
## 5532        0 No Holiday 19/07/2018     1705      687     30.7       11
## 5201        0 No Holiday   5/7/2018     2000     1105     28.2       16
##      col 2605 col 2606 col 2607 col 2608 col 2609 col 2610 col 2611 col 2612
## 1658     -8.5      1.2    -14.8     1908    -14.8      1.2       60   Winter
## 3485      6.4      0.5      0.4     2000      0.4      0.5       66   Spring
## 5491     31.3      2.5     21.1     1550     21.1      2.5       55   Summer
## 1237      3.9      1.6    -12.1     1085    -12.1      1.6       30   Winter
## 5532     30.7      1.6     18.4     1705     18.4      1.6       48   Summer
## 5201     28.2      1.7     22.4     2000     22.4      1.7       71   Summer
##        col 2613 col 2614 col 2615 col 2616   col 2617 col 2618 col 2619
## 1658   8/2/2018      1.2   Winter      1.2   8/2/2018      1.2      126
## 3485 25/04/2018      0.5   Spring      0.5 25/04/2018      0.5      117
## 5491 17/07/2018      2.5   Summer      2.5 17/07/2018      2.5     2770
## 1237 21/01/2018      1.6   Winter      1.6 21/01/2018      1.6      271
## 5532 19/07/2018      1.6   Summer      1.6 19/07/2018      1.6      687
## 5201   5/7/2018      1.7   Summer      1.7   5/7/2018      1.7     1105
##      col 2620 col 2621 col 2622   col 2623 col 2624   col 2625 col 2626
## 1658     0.00    -14.8     -8.5   8/2/2018   Winter No Holiday      1.2
## 3485     0.00      0.4      6.4 25/04/2018   Spring No Holiday      0.5
## 5491     1.20     21.1     31.3 17/07/2018   Summer No Holiday      2.5
## 1237     0.91    -12.1      3.9 21/01/2018   Winter No Holiday      1.6
## 5532     2.92     18.4     30.7 19/07/2018   Summer No Holiday      1.6
## 5201     0.96     22.4     28.2   5/7/2018   Summer No Holiday      1.7
##      col 2627   col 2628 col 2629   col 2630 col 2631 col 2632 col 2633
## 1658        1 No Holiday      1.2   8/2/2018     0.00        0       60
## 3485        4 No Holiday      0.5 25/04/2018     0.00        0       66
## 5491       18 No Holiday      2.5 17/07/2018     1.20        0       55
## 1237       12 No Holiday      1.6 21/01/2018     0.91        0       30
## 5532       11 No Holiday      1.6 19/07/2018     2.92        0       48
## 5201       16 No Holiday      1.7   5/7/2018     0.96        0       71
##        col 2634   col 2635   col 2636 col 2637   col 2638 col 2639 col 2640
## 1658 No Holiday   8/2/2018 No Holiday        0 No Holiday    -14.8        0
## 3485 No Holiday 25/04/2018 No Holiday        0 No Holiday      0.4        0
## 5491 No Holiday 17/07/2018 No Holiday        0 No Holiday     21.1        0
## 1237 No Holiday 21/01/2018 No Holiday        0 No Holiday    -12.1        0
## 5532 No Holiday 19/07/2018 No Holiday        0 No Holiday     18.4        0
## 5201 No Holiday   5/7/2018 No Holiday        0 No Holiday     22.4        0
##      col 2641 col 2642   col 2643   col 2644 col 2645 col 2646 col 2647
## 1658      126     0.00 No Holiday   8/2/2018       60       60      Yes
## 3485      117     0.00 No Holiday 25/04/2018       66       66      Yes
## 5491     2770     1.20 No Holiday 17/07/2018       55       55      Yes
## 1237      271     0.91 No Holiday 21/01/2018       30       30      Yes
## 5532      687     2.92 No Holiday 19/07/2018       48       48      Yes
## 5201     1105     0.96 No Holiday   5/7/2018       71       71      Yes
##      col 2648 col 2649 col 2650 col 2651 col 2652 col 2653 col 2654 col 2655
## 1658        1      126       60   Winter        0       60     0.00        0
## 3485        4      117       66   Spring        0       66     0.00        0
## 5491       18     2770       55   Summer        0       55     1.20        0
## 1237       12      271       30   Winter        0       30     0.91        0
## 5532       11      687       48   Summer        0       48     2.92        0
## 5201       16     1105       71   Summer        0       71     0.96        0
##        col 2656 col 2657 col 2658 col 2659 col 2660 col 2661 col 2662 col 2663
## 1658   8/2/2018     -8.5      126     0.00     -8.5     1908       60        1
## 3485 25/04/2018      6.4      117     0.00      6.4     2000       66        4
## 5491 17/07/2018     31.3     2770     1.20     31.3     1550       55       18
## 1237 21/01/2018      3.9      271     0.91      3.9     1085       30       12
## 5532 19/07/2018     30.7      687     2.92     30.7     1705       48       11
## 5201   5/7/2018     28.2     1105     0.96     28.2     2000       71       16
##      col 2664 col 2665 col 2666 col 2667 col 2668 col 2669 col 2670 col 2671
## 1658      Yes     1908      Yes      1.2        0      Yes    -14.8      Yes
## 3485      Yes     2000      Yes      0.5        0      Yes      0.4      Yes
## 5491      Yes     1550      Yes      2.5        0      Yes     21.1      Yes
## 1237      Yes     1085      Yes      1.6        0      Yes    -12.1      Yes
## 5532      Yes     1705      Yes      1.6        0      Yes     18.4      Yes
## 5201      Yes     2000      Yes      1.7        0      Yes     22.4      Yes
##      col 2672 col 2673 col 2674 col 2675 col 2676 col 2677 col 2678 col 2679
## 1658      Yes       60     1908     -8.5     0.00        1     1908        1
## 3485      Yes       66     2000      6.4     0.00        4     2000        4
## 5491      Yes       55     1550     31.3     1.20       18     1550       18
## 1237      Yes       30     1085      3.9     0.91       12     1085       12
## 5532      Yes       48     1705     30.7     2.92       11     1705       11
## 5201      Yes       71     2000     28.2     0.96       16     2000       16
##      col 2680 col 2681   col 2682 col 2683 col 2684 col 2685 col 2686 col 2687
## 1658       60      Yes No Holiday     -8.5     1908     -8.5      1.2     0.00
## 3485       66      Yes No Holiday      6.4     2000      6.4      0.5     0.00
## 5491       55      Yes No Holiday     31.3     1550     31.3      2.5     1.20
## 1237       30      Yes No Holiday      3.9     1085      3.9      1.6     0.91
## 5532       48      Yes No Holiday     30.7     1705     30.7      1.6     2.92
## 5201       71      Yes No Holiday     28.2     2000     28.2      1.7     0.96
##      col 2688 col 2689 col 2690 col 2691 col 2692 col 2693   col 2694 col 2695
## 1658      Yes      1.2       60      Yes      1.2        0   8/2/2018   Winter
## 3485      Yes      0.5       66      Yes      0.5        0 25/04/2018   Spring
## 5491      Yes      2.5       55      Yes      2.5        0 17/07/2018   Summer
## 1237      Yes      1.6       30      Yes      1.6        0 21/01/2018   Winter
## 5532      Yes      1.6       48      Yes      1.6        0 19/07/2018   Summer
## 5201      Yes      1.7       71      Yes      1.7        0   5/7/2018   Summer
##      col 2696   col 2697 col 2698 col 2699 col 2700 col 2701   col 2702
## 1658     1908 No Holiday    -14.8        0       60      Yes No Holiday
## 3485     2000 No Holiday      0.4        0       66      Yes No Holiday
## 5491     1550 No Holiday     21.1        0       55      Yes No Holiday
## 1237     1085 No Holiday    -12.1        0       30      Yes No Holiday
## 5532     1705 No Holiday     18.4        0       48      Yes No Holiday
## 5201     2000 No Holiday     22.4        0       71      Yes No Holiday
##      col 2703 col 2704   col 2705 col 2706 col 2707 col 2708 col 2709 col 2710
## 1658        0     -8.5   8/2/2018        1        1     -8.5        0      126
## 3485        0      6.4 25/04/2018        4        4      6.4        0      117
## 5491        0     31.3 17/07/2018       18       18     31.3        0     2770
## 1237        0      3.9 21/01/2018       12       12      3.9        0      271
## 5532        0     30.7 19/07/2018       11       11     30.7        0      687
## 5201        0     28.2   5/7/2018       16       16     28.2        0     1105
##      col 2711 col 2712 col 2713 col 2714 col 2715 col 2716 col 2717 col 2718
## 1658      1.2        0   Winter     1908        0     1908      126        1
## 3485      0.5        0   Spring     2000        0     2000      117        4
## 5491      2.5        0   Summer     1550        0     1550     2770       18
## 1237      1.6        0   Winter     1085        0     1085      271       12
## 5532      1.6        0   Summer     1705        0     1705      687       11
## 5201      1.7        0   Summer     2000        0     2000     1105       16
##      col 2719 col 2720 col 2721 col 2722 col 2723 col 2724   col 2725 col 2726
## 1658       60        1      126       60     1908   Winter No Holiday     -8.5
## 3485       66        4      117       66     2000   Spring No Holiday      6.4
## 5491       55       18     2770       55     1550   Summer No Holiday     31.3
## 1237       30       12      271       30     1085   Winter No Holiday      3.9
## 5532       48       11      687       48     1705   Summer No Holiday     30.7
## 5201       71       16     1105       71     2000   Summer No Holiday     28.2
##      col 2727 col 2728 col 2729   col 2730 col 2731 col 2732 col 2733 col 2734
## 1658      1.2      Yes      Yes   8/2/2018    -14.8        0      126      126
## 3485      0.5      Yes      Yes 25/04/2018      0.4        0      117      117
## 5491      2.5      Yes      Yes 17/07/2018     21.1        0     2770     2770
## 1237      1.6      Yes      Yes 21/01/2018    -12.1        0      271      271
## 5532      1.6      Yes      Yes 19/07/2018     18.4        0      687      687
## 5201      1.7      Yes      Yes   5/7/2018     22.4        0     1105     1105
##      col 2735 col 2736 col 2737 col 2738 col 2739 col 2740 col 2741 col 2742
## 1658      Yes      126      Yes       60       60        0      Yes       60
## 3485      Yes      117      Yes       66       66        0      Yes       66
## 5491      Yes     2770      Yes       55       55        0      Yes       55
## 1237      Yes      271      Yes       30       30        0      Yes       30
## 5532      Yes      687      Yes       48       48        0      Yes       48
## 5201      Yes     1105      Yes       71       71        0      Yes       71
##      col 2743 col 2744 col 2745 col 2746 col 2747 col 2748 col 2749   col 2750
## 1658     -8.5    -14.8     1908      1.2   Winter     -8.5      126   8/2/2018
## 3485      6.4      0.4     2000      0.5   Spring      6.4      117 25/04/2018
## 5491     31.3     21.1     1550      2.5   Summer     31.3     2770 17/07/2018
## 1237      3.9    -12.1     1085      1.6   Winter      3.9      271 21/01/2018
## 5532     30.7     18.4     1705      1.6   Summer     30.7      687 19/07/2018
## 5201     28.2     22.4     2000      1.7   Summer     28.2     1105   5/7/2018
##      col 2751 col 2752 col 2753 col 2754   col 2755 col 2756 col 2757 col 2758
## 1658      1.2      Yes     1908      Yes No Holiday        0     -8.5     -8.5
## 3485      0.5      Yes     2000      Yes No Holiday        0      6.4      6.4
## 5491      2.5      Yes     1550      Yes No Holiday        0     31.3     31.3
## 1237      1.6      Yes     1085      Yes No Holiday        0      3.9      3.9
## 5532      1.6      Yes     1705      Yes No Holiday        0     30.7     30.7
## 5201      1.7      Yes     2000      Yes No Holiday        0     28.2     28.2
##        col 2759   col 2760 col 2761 col 2762 col 2763 col 2764 col 2765
## 1658   8/2/2018   8/2/2018   Winter    -14.8     0.00     0.00     -8.5
## 3485 25/04/2018 25/04/2018   Spring      0.4     0.00     0.00      6.4
## 5491 17/07/2018 17/07/2018   Summer     21.1     1.20     1.20     31.3
## 1237 21/01/2018 21/01/2018   Winter    -12.1     0.91     0.91      3.9
## 5532 19/07/2018 19/07/2018   Summer     18.4     2.92     2.92     30.7
## 5201   5/7/2018   5/7/2018   Summer     22.4     0.96     0.96     28.2
##      col 2766 col 2767 col 2768 col 2769 col 2770 col 2771 col 2772 col 2773
## 1658     -8.5      1.2     1908    -14.8    -14.8     1908     0.00     0.00
## 3485      6.4      0.5     2000      0.4      0.4     2000     0.00     0.00
## 5491     31.3      2.5     1550     21.1     21.1     1550     1.20     1.20
## 1237      3.9      1.6     1085    -12.1    -12.1     1085     0.91     0.91
## 5532     30.7      1.6     1705     18.4     18.4     1705     2.92     2.92
## 5201     28.2      1.7     2000     22.4     22.4     2000     0.96     0.96
##      col 2774 col 2775   col 2776 col 2777 col 2778 col 2779 col 2780 col 2781
## 1658     1908        1 No Holiday       60        1       60        0        0
## 3485     2000        4 No Holiday       66        4       66        0        0
## 5491     1550       18 No Holiday       55       18       55        0        0
## 1237     1085       12 No Holiday       30       12       30        0        0
## 5532     1705       11 No Holiday       48       11       48        0        0
## 5201     2000       16 No Holiday       71       16       71        0        0
##      col 2782   col 2783 col 2784 col 2785 col 2786   col 2787 col 2788
## 1658   Winter No Holiday     -8.5      126     1908   8/2/2018     1908
## 3485   Spring No Holiday      6.4      117     2000 25/04/2018     2000
## 5491   Summer No Holiday     31.3     2770     1550 17/07/2018     1550
## 1237   Winter No Holiday      3.9      271     1085 21/01/2018     1085
## 5532   Summer No Holiday     30.7      687     1705 19/07/2018     1705
## 5201   Summer No Holiday     28.2     1105     2000   5/7/2018     2000
##      col 2789   col 2790 col 2791 col 2792 col 2793   col 2794 col 2795
## 1658        0 No Holiday       60    -14.8        0 No Holiday       60
## 3485        0 No Holiday       66      0.4        0 No Holiday       66
## 5491        0 No Holiday       55     21.1        0 No Holiday       55
## 1237        0 No Holiday       30    -12.1        0 No Holiday       30
## 5532        0 No Holiday       48     18.4        0 No Holiday       48
## 5201        0 No Holiday       71     22.4        0 No Holiday       71
##      col 2796 col 2797   col 2798 col 2799 col 2800 col 2801   col 2802
## 1658     1908      Yes   8/2/2018     0.00     -8.5   Winter No Holiday
## 3485     2000      Yes 25/04/2018     0.00      6.4   Spring No Holiday
## 5491     1550      Yes 17/07/2018     1.20     31.3   Summer No Holiday
## 1237     1085      Yes 21/01/2018     0.91      3.9   Winter No Holiday
## 5532     1705      Yes 19/07/2018     2.92     30.7   Summer No Holiday
## 5201     2000      Yes   5/7/2018     0.96     28.2   Summer No Holiday
##      col 2803 col 2804 col 2805 col 2806 col 2807 col 2808   col 2809 col 2810
## 1658        1      1.2        0   Winter        1     0.00   8/2/2018      1.2
## 3485        4      0.5        0   Spring        4     0.00 25/04/2018      0.5
## 5491       18      2.5        0   Summer       18     1.20 17/07/2018      2.5
## 1237       12      1.6        0   Winter       12     0.91 21/01/2018      1.6
## 5532       11      1.6        0   Summer       11     2.92 19/07/2018      1.6
## 5201       16      1.7        0   Summer       16     0.96   5/7/2018      1.7
##        col 2811 col 2812 col 2813 col 2814 col 2815 col 2816 col 2817 col 2818
## 1658 No Holiday     0.00      Yes      1.2       60        0        0    -14.8
## 3485 No Holiday     0.00      Yes      0.5       66        0        0      0.4
## 5491 No Holiday     1.20      Yes      2.5       55        0        0     21.1
## 1237 No Holiday     0.91      Yes      1.6       30        0        0    -12.1
## 5532 No Holiday     2.92      Yes      1.6       48        0        0     18.4
## 5201 No Holiday     0.96      Yes      1.7       71        0        0     22.4
##      col 2819 col 2820 col 2821   col 2822 col 2823 col 2824 col 2825 col 2826
## 1658        1   Winter     -8.5   8/2/2018      Yes       60      126     -8.5
## 3485        4   Spring      6.4 25/04/2018      Yes       66      117      6.4
## 5491       18   Summer     31.3 17/07/2018      Yes       55     2770     31.3
## 1237       12   Winter      3.9 21/01/2018      Yes       30      271      3.9
## 5532       11   Summer     30.7 19/07/2018      Yes       48      687     30.7
## 5201       16   Summer     28.2   5/7/2018      Yes       71     1105     28.2
##      col 2827 col 2828 col 2829 col 2830 col 2831 col 2832 col 2833 col 2834
## 1658      1.2      Yes        0     1908      Yes      1.2        0      Yes
## 3485      0.5      Yes        0     2000      Yes      0.5        0      Yes
## 5491      2.5      Yes        0     1550      Yes      2.5        0      Yes
## 1237      1.6      Yes        0     1085      Yes      1.6        0      Yes
## 5532      1.6      Yes        0     1705      Yes      1.6        0      Yes
## 5201      1.7      Yes        0     2000      Yes      1.7        0      Yes
##      col 2835 col 2836 col 2837 col 2838 col 2839 col 2840 col 2841 col 2842
## 1658        0        1     1908   Winter      Yes        1     0.00       60
## 3485        0        4     2000   Spring      Yes        4     0.00       66
## 5491        0       18     1550   Summer      Yes       18     1.20       55
## 1237        0       12     1085   Winter      Yes       12     0.91       30
## 5532        0       11     1705   Summer      Yes       11     2.92       48
## 5201        0       16     2000   Summer      Yes       16     0.96       71
##      col 2843 col 2844 col 2845 col 2846 col 2847 col 2848   col 2849
## 1658        0    -14.8     0.00    -14.8        0       60   8/2/2018
## 3485        0      0.4     0.00      0.4        0       66 25/04/2018
## 5491        0     21.1     1.20     21.1        0       55 17/07/2018
## 1237        0    -12.1     0.91    -12.1        0       30 21/01/2018
## 5532        0     18.4     2.92     18.4        0       48 19/07/2018
## 5201        0     22.4     0.96     22.4        0       71   5/7/2018
##        col 2850 col 2851 col 2852 col 2853 col 2854 col 2855 col 2856 col 2857
## 1658 No Holiday      126       60     -8.5     0.00        0      Yes    -14.8
## 3485 No Holiday      117       66      6.4     0.00        0      Yes      0.4
## 5491 No Holiday     2770       55     31.3     1.20        0      Yes     21.1
## 1237 No Holiday      271       30      3.9     0.91        0      Yes    -12.1
## 5532 No Holiday      687       48     30.7     2.92        0      Yes     18.4
## 5201 No Holiday     1105       71     28.2     0.96        0      Yes     22.4
##      col 2858 col 2859 col 2860 col 2861 col 2862 col 2863 col 2864 col 2865
## 1658     -8.5    -14.8       60     0.00       60      1.2      126     0.00
## 3485      6.4      0.4       66     0.00       66      0.5      117     0.00
## 5491     31.3     21.1       55     1.20       55      2.5     2770     1.20
## 1237      3.9    -12.1       30     0.91       30      1.6      271     0.91
## 5532     30.7     18.4       48     2.92       48      1.6      687     2.92
## 5201     28.2     22.4       71     0.96       71      1.7     1105     0.96
##      col 2866 col 2867   col 2868 col 2869 col 2870 col 2871 col 2872 col 2873
## 1658        0      126 No Holiday      126        1   Winter        1      1.2
## 3485        0      117 No Holiday      117        4   Spring        4      0.5
## 5491        0     2770 No Holiday     2770       18   Summer       18      2.5
## 1237        0      271 No Holiday      271       12   Winter       12      1.6
## 5532        0      687 No Holiday      687       11   Summer       11      1.6
## 5201        0     1105 No Holiday     1105       16   Summer       16      1.7
##      col 2874 col 2875 col 2876 col 2877 col 2878 col 2879 col 2880 col 2881
## 1658      1.2        0        0    -14.8      Yes        0   Winter      126
## 3485      0.5        0        0      0.4      Yes        0   Spring      117
## 5491      2.5        0        0     21.1      Yes        0   Summer     2770
## 1237      1.6        0        0    -12.1      Yes        0   Winter      271
## 5532      1.6        0        0     18.4      Yes        0   Summer      687
## 5201      1.7        0        0     22.4      Yes        0   Summer     1105
##        col 2882 col 2883 col 2884 col 2885 col 2886 col 2887 col 2888 col 2889
## 1658 No Holiday     -8.5       60      126      1.2     -8.5     -8.5     1908
## 3485 No Holiday      6.4       66      117      0.5      6.4      6.4     2000
## 5491 No Holiday     31.3       55     2770      2.5     31.3     31.3     1550
## 1237 No Holiday      3.9       30      271      1.6      3.9      3.9     1085
## 5532 No Holiday     30.7       48      687      1.6     30.7     30.7     1705
## 5201 No Holiday     28.2       71     1105      1.7     28.2     28.2     2000
##        col 2890 col 2891 col 2892 col 2893 col 2894 col 2895 col 2896 col 2897
## 1658 No Holiday      126        0     1908     1908      1.2      1.2      Yes
## 3485 No Holiday      117        0     2000     2000      0.5      0.5      Yes
## 5491 No Holiday     2770        0     1550     1550      2.5      2.5      Yes
## 1237 No Holiday      271        0     1085     1085      1.6      1.6      Yes
## 5532 No Holiday      687        0     1705     1705      1.6      1.6      Yes
## 5201 No Holiday     1105        0     2000     2000      1.7      1.7      Yes
##      col 2898 col 2899 col 2900 col 2901   col 2902 col 2903   col 2904
## 1658       60      1.2     -8.5      1.2 No Holiday    -14.8   8/2/2018
## 3485       66      0.5      6.4      0.5 No Holiday      0.4 25/04/2018
## 5491       55      2.5     31.3      2.5 No Holiday     21.1 17/07/2018
## 1237       30      1.6      3.9      1.6 No Holiday    -12.1 21/01/2018
## 5532       48      1.6     30.7      1.6 No Holiday     18.4 19/07/2018
## 5201       71      1.7     28.2      1.7 No Holiday     22.4   5/7/2018
##      col 2905 col 2906 col 2907 col 2908 col 2909 col 2910 col 2911 col 2912
## 1658   Winter       60      1.2     -8.5      Yes     1908        1      126
## 3485   Spring       66      0.5      6.4      Yes     2000        4      117
## 5491   Summer       55      2.5     31.3      Yes     1550       18     2770
## 1237   Winter       30      1.6      3.9      Yes     1085       12      271
## 5532   Summer       48      1.6     30.7      Yes     1705       11      687
## 5201   Summer       71      1.7     28.2      Yes     2000       16     1105
##      col 2913 col 2914 col 2915 col 2916 col 2917 col 2918   col 2919
## 1658        0        0    -14.8        0       60      Yes No Holiday
## 3485        0        0      0.4        0       66      Yes No Holiday
## 5491        0        0     21.1        0       55      Yes No Holiday
## 1237        0        0    -12.1        0       30      Yes No Holiday
## 5532        0        0     18.4        0       48      Yes No Holiday
## 5201        0        0     22.4        0       71      Yes No Holiday
##        col 2920   col 2921 col 2922 col 2923 col 2924 col 2925   col 2926
## 1658   8/2/2018   8/2/2018      1.2     1908      Yes        0   8/2/2018
## 3485 25/04/2018 25/04/2018      0.5     2000      Yes        0 25/04/2018
## 5491 17/07/2018 17/07/2018      2.5     1550      Yes        0 17/07/2018
## 1237 21/01/2018 21/01/2018      1.6     1085      Yes        0 21/01/2018
## 5532 19/07/2018 19/07/2018      1.6     1705      Yes        0 19/07/2018
## 5201   5/7/2018   5/7/2018      1.7     2000      Yes        0   5/7/2018
##      col 2927 col 2928 col 2929 col 2930 col 2931 col 2932   col 2933 col 2934
## 1658       60      1.2     0.00      Yes    -14.8   Winter   8/2/2018   Winter
## 3485       66      0.5     0.00      Yes      0.4   Spring 25/04/2018   Spring
## 5491       55      2.5     1.20      Yes     21.1   Summer 17/07/2018   Summer
## 1237       30      1.6     0.91      Yes    -12.1   Winter 21/01/2018   Winter
## 5532       48      1.6     2.92      Yes     18.4   Summer 19/07/2018   Summer
## 5201       71      1.7     0.96      Yes     22.4   Summer   5/7/2018   Summer
##      col 2935 col 2936 col 2937 col 2938 col 2939 col 2940 col 2941 col 2942
## 1658    -14.8        0        1      1.2        0        1     -8.5      126
## 3485      0.4        0        4      0.5        0        4      6.4      117
## 5491     21.1        0       18      2.5        0       18     31.3     2770
## 1237    -12.1        0       12      1.6        0       12      3.9      271
## 5532     18.4        0       11      1.6        0       11     30.7      687
## 5201     22.4        0       16      1.7        0       16     28.2     1105
##      col 2943 col 2944   col 2945   col 2946 col 2947   col 2948 col 2949
## 1658     -8.5    -14.8 No Holiday No Holiday       60 No Holiday       60
## 3485      6.4      0.4 No Holiday No Holiday       66 No Holiday       66
## 5491     31.3     21.1 No Holiday No Holiday       55 No Holiday       55
## 1237      3.9    -12.1 No Holiday No Holiday       30 No Holiday       30
## 5532     30.7     18.4 No Holiday No Holiday       48 No Holiday       48
## 5201     28.2     22.4 No Holiday No Holiday       71 No Holiday       71
##        col 2950 col 2951 col 2952   col 2953 col 2954 col 2955   col 2956
## 1658   8/2/2018      Yes     1908 No Holiday        0       60   8/2/2018
## 3485 25/04/2018      Yes     2000 No Holiday        0       66 25/04/2018
## 5491 17/07/2018      Yes     1550 No Holiday        0       55 17/07/2018
## 1237 21/01/2018      Yes     1085 No Holiday        0       30 21/01/2018
## 5532 19/07/2018      Yes     1705 No Holiday        0       48 19/07/2018
## 5201   5/7/2018      Yes     2000 No Holiday        0       71   5/7/2018
##      col 2957 col 2958 col 2959 col 2960 col 2961 col 2962 col 2963 col 2964
## 1658        0      Yes        0        0     0.00       60        0        1
## 3485        0      Yes        0        0     0.00       66        0        4
## 5491        0      Yes        0        0     1.20       55        0       18
## 1237        0      Yes        0        0     0.91       30        0       12
## 5532        0      Yes        0        0     2.92       48        0       11
## 5201        0      Yes        0        0     0.96       71        0       16
##      col 2965   col 2966   col 2967 col 2968 col 2969 col 2970 col 2971
## 1658        1 No Holiday No Holiday        1        1   Winter      1.2
## 3485        4 No Holiday No Holiday        4        4   Spring      0.5
## 5491       18 No Holiday No Holiday       18       18   Summer      2.5
## 1237       12 No Holiday No Holiday       12       12   Winter      1.6
## 5532       11 No Holiday No Holiday       11       11   Summer      1.6
## 5201       16 No Holiday No Holiday       16       16   Summer      1.7
##      col 2972 col 2973 col 2974 col 2975 col 2976 col 2977 col 2978   col 2979
## 1658     0.00     0.00      Yes        0       60        0   Winter   8/2/2018
## 3485     0.00     0.00      Yes        0       66        0   Spring 25/04/2018
## 5491     1.20     1.20      Yes        0       55        0   Summer 17/07/2018
## 1237     0.91     0.91      Yes        0       30        0   Winter 21/01/2018
## 5532     2.92     2.92      Yes        0       48        0   Summer 19/07/2018
## 5201     0.96     0.96      Yes        0       71        0   Summer   5/7/2018
##      col 2980 col 2981 col 2982 col 2983 col 2984 col 2985   col 2986 col 2987
## 1658      Yes     1908      Yes        1      1.2   Winter   8/2/2018    -14.8
## 3485      Yes     2000      Yes        4      0.5   Spring 25/04/2018      0.4
## 5491      Yes     1550      Yes       18      2.5   Summer 17/07/2018     21.1
## 1237      Yes     1085      Yes       12      1.6   Winter 21/01/2018    -12.1
## 5532      Yes     1705      Yes       11      1.6   Summer 19/07/2018     18.4
## 5201      Yes     2000      Yes       16      1.7   Summer   5/7/2018     22.4
##      col 2988 col 2989 col 2990 col 2991 col 2992 col 2993 col 2994 col 2995
## 1658    -14.8     -8.5      1.2     -8.5        1        0      1.2     0.00
## 3485      0.4      6.4      0.5      6.4        4        0      0.5     0.00
## 5491     21.1     31.3      2.5     31.3       18        0      2.5     1.20
## 1237    -12.1      3.9      1.6      3.9       12        0      1.6     0.91
## 5532     18.4     30.7      1.6     30.7       11        0      1.6     2.92
## 5201     22.4     28.2      1.7     28.2       16        0      1.7     0.96
##      col 2996 col 2997 col 2998 col 2999   col 3000 col 3001 col 3002 col 3003
## 1658   Winter    -14.8      Yes       60 No Holiday        0      Yes    -14.8
## 3485   Spring      0.4      Yes       66 No Holiday        0      Yes      0.4
## 5491   Summer     21.1      Yes       55 No Holiday        0      Yes     21.1
## 1237   Winter    -12.1      Yes       30 No Holiday        0      Yes    -12.1
## 5532   Summer     18.4      Yes       48 No Holiday        0      Yes     18.4
## 5201   Summer     22.4      Yes       71 No Holiday        0      Yes     22.4
##      col 3004 col 3005 col 3006 col 3007 col 3008 col 3009 col 3010 col 3011
## 1658      Yes     -8.5   Winter   Winter      1.2      1.2        1     -8.5
## 3485      Yes      6.4   Spring   Spring      0.5      0.5        4      6.4
## 5491      Yes     31.3   Summer   Summer      2.5      2.5       18     31.3
## 1237      Yes      3.9   Winter   Winter      1.6      1.6       12      3.9
## 5532      Yes     30.7   Summer   Summer      1.6      1.6       11     30.7
## 5201      Yes     28.2   Summer   Summer      1.7      1.7       16     28.2
##      col 3012 col 3013 col 3014 col 3015 col 3016 col 3017 col 3018 col 3019
## 1658     1908     1908     0.00      Yes       60      Yes        1       60
## 3485     2000     2000     0.00      Yes       66      Yes        4       66
## 5491     1550     1550     1.20      Yes       55      Yes       18       55
## 1237     1085     1085     0.91      Yes       30      Yes       12       30
## 5532     1705     1705     2.92      Yes       48      Yes       11       48
## 5201     2000     2000     0.96      Yes       71      Yes       16       71
##      col 3020 col 3021 col 3022 col 3023 col 3024 col 3025 col 3026 col 3027
## 1658     0.00     0.00    -14.8      Yes        1   Winter     1908   Winter
## 3485     0.00     0.00      0.4      Yes        4   Spring     2000   Spring
## 5491     1.20     1.20     21.1      Yes       18   Summer     1550   Summer
## 1237     0.91     0.91    -12.1      Yes       12   Winter     1085   Winter
## 5532     2.92     2.92     18.4      Yes       11   Summer     1705   Summer
## 5201     0.96     0.96     22.4      Yes       16   Summer     2000   Summer
##      col 3028   col 3029 col 3030 col 3031 col 3032 col 3033 col 3034
## 1658      126 No Holiday      1.2     0.00        0      126    -14.8
## 3485      117 No Holiday      0.5     0.00        0      117      0.4
## 5491     2770 No Holiday      2.5     1.20        0     2770     21.1
## 1237      271 No Holiday      1.6     0.91        0      271    -12.1
## 5532      687 No Holiday      1.6     2.92        0      687     18.4
## 5201     1105 No Holiday      1.7     0.96        0     1105     22.4
##        col 3035 col 3036   col 3037   col 3038 col 3039 col 3040 col 3041
## 1658 No Holiday        0 No Holiday No Holiday     0.00   Winter      1.2
## 3485 No Holiday        0 No Holiday No Holiday     0.00   Spring      0.5
## 5491 No Holiday        0 No Holiday No Holiday     1.20   Summer      2.5
## 1237 No Holiday        0 No Holiday No Holiday     0.91   Winter      1.6
## 5532 No Holiday        0 No Holiday No Holiday     2.92   Summer      1.6
## 5201 No Holiday        0 No Holiday No Holiday     0.96   Summer      1.7
##      col 3042 col 3043 col 3044 col 3045 col 3046 col 3047 col 3048   col 3049
## 1658   Winter        0     1908        0     1908     -8.5        0   8/2/2018
## 3485   Spring        0     2000        0     2000      6.4        0 25/04/2018
## 5491   Summer        0     1550        0     1550     31.3        0 17/07/2018
## 1237   Winter        0     1085        0     1085      3.9        0 21/01/2018
## 5532   Summer        0     1705        0     1705     30.7        0 19/07/2018
## 5201   Summer        0     2000        0     2000     28.2        0   5/7/2018
##      col 3050 col 3051 col 3052   col 3053 col 3054 col 3055 col 3056 col 3057
## 1658   Winter      Yes        1   8/2/2018   Winter        0        0      Yes
## 3485   Spring      Yes        4 25/04/2018   Spring        0        0      Yes
## 5491   Summer      Yes       18 17/07/2018   Summer        0        0      Yes
## 1237   Winter      Yes       12 21/01/2018   Winter        0        0      Yes
## 5532   Summer      Yes       11 19/07/2018   Summer        0        0      Yes
## 5201   Summer      Yes       16   5/7/2018   Summer        0        0      Yes
##      col 3058 col 3059 col 3060 col 3061 col 3062 col 3063 col 3064 col 3065
## 1658     -8.5     -8.5    -14.8    -14.8   Winter    -14.8        0        0
## 3485      6.4      6.4      0.4      0.4   Spring      0.4        0        0
## 5491     31.3     31.3     21.1     21.1   Summer     21.1        0        0
## 1237      3.9      3.9    -12.1    -12.1   Winter    -12.1        0        0
## 5532     30.7     30.7     18.4     18.4   Summer     18.4        0        0
## 5201     28.2     28.2     22.4     22.4   Summer     22.4        0        0
##      col 3066 col 3067 col 3068   col 3069   col 3070 col 3071 col 3072
## 1658     1908     -8.5     -8.5   8/2/2018 No Holiday      1.2        0
## 3485     2000      6.4      6.4 25/04/2018 No Holiday      0.5        0
## 5491     1550     31.3     31.3 17/07/2018 No Holiday      2.5        0
## 1237     1085      3.9      3.9 21/01/2018 No Holiday      1.6        0
## 5532     1705     30.7     30.7 19/07/2018 No Holiday      1.6        0
## 5201     2000     28.2     28.2   5/7/2018 No Holiday      1.7        0
##      col 3073 col 3074 col 3075   col 3076 col 3077 col 3078 col 3079 col 3080
## 1658     0.00   Winter     0.00 No Holiday     0.00    -14.8       60       60
## 3485     0.00   Spring     0.00 No Holiday     0.00      0.4       66       66
## 5491     1.20   Summer     1.20 No Holiday     1.20     21.1       55       55
## 1237     0.91   Winter     0.91 No Holiday     0.91    -12.1       30       30
## 5532     2.92   Summer     2.92 No Holiday     2.92     18.4       48       48
## 5201     0.96   Summer     0.96 No Holiday     0.96     22.4       71       71
##      col 3081 col 3082 col 3083 col 3084 col 3085   col 3086 col 3087
## 1658      1.2      126   Winter     0.00     0.00   8/2/2018        1
## 3485      0.5      117   Spring     0.00     0.00 25/04/2018        4
## 5491      2.5     2770   Summer     1.20     1.20 17/07/2018       18
## 1237      1.6      271   Winter     0.91     0.91 21/01/2018       12
## 5532      1.6      687   Summer     2.92     2.92 19/07/2018       11
## 5201      1.7     1105   Summer     0.96     0.96   5/7/2018       16
##        col 3088   col 3089 col 3090 col 3091 col 3092 col 3093 col 3094
## 1658 No Holiday   8/2/2018      1.2      1.2      Yes    -14.8        0
## 3485 No Holiday 25/04/2018      0.5      0.5      Yes      0.4        0
## 5491 No Holiday 17/07/2018      2.5      2.5      Yes     21.1        0
## 1237 No Holiday 21/01/2018      1.6      1.6      Yes    -12.1        0
## 5532 No Holiday 19/07/2018      1.6      1.6      Yes     18.4        0
## 5201 No Holiday   5/7/2018      1.7      1.7      Yes     22.4        0
##      col 3095 col 3096 col 3097   col 3098 col 3099 col 3100   col 3101
## 1658    -14.8     1908      1.2 No Holiday        0        0   8/2/2018
## 3485      0.4     2000      0.5 No Holiday        0        0 25/04/2018
## 5491     21.1     1550      2.5 No Holiday        0        0 17/07/2018
## 1237    -12.1     1085      1.6 No Holiday        0        0 21/01/2018
## 5532     18.4     1705      1.6 No Holiday        0        0 19/07/2018
## 5201     22.4     2000      1.7 No Holiday        0        0   5/7/2018
##      col 3102 col 3103 col 3104 col 3105 col 3106   col 3107 col 3108 col 3109
## 1658      1.2        0    -14.8   Winter        0   8/2/2018      Yes    -14.8
## 3485      0.5        0      0.4   Spring        0 25/04/2018      Yes      0.4
## 5491      2.5        0     21.1   Summer        0 17/07/2018      Yes     21.1
## 1237      1.6        0    -12.1   Winter        0 21/01/2018      Yes    -12.1
## 5532      1.6        0     18.4   Summer        0 19/07/2018      Yes     18.4
## 5201      1.7        0     22.4   Summer        0   5/7/2018      Yes     22.4
##      col 3110 col 3111   col 3112   col 3113 col 3114   col 3115 col 3116
## 1658    -14.8        0   8/2/2018   8/2/2018   Winter No Holiday        0
## 3485      0.4        0 25/04/2018 25/04/2018   Spring No Holiday        0
## 5491     21.1        0 17/07/2018 17/07/2018   Summer No Holiday        0
## 1237    -12.1        0 21/01/2018 21/01/2018   Winter No Holiday        0
## 5532     18.4        0 19/07/2018 19/07/2018   Summer No Holiday        0
## 5201     22.4        0   5/7/2018   5/7/2018   Summer No Holiday        0
##      col 3117 col 3118 col 3119 col 3120   col 3121 col 3122 col 3123 col 3124
## 1658     -8.5     1908       60        1 No Holiday      126        0        0
## 3485      6.4     2000       66        4 No Holiday      117        0        0
## 5491     31.3     1550       55       18 No Holiday     2770        0        0
## 1237      3.9     1085       30       12 No Holiday      271        0        0
## 5532     30.7     1705       48       11 No Holiday      687        0        0
## 5201     28.2     2000       71       16 No Holiday     1105        0        0
##      col 3125 col 3126 col 3127 col 3128 col 3129 col 3130 col 3131 col 3132
## 1658      1.2        0       60     -8.5      126        1   Winter        0
## 3485      0.5        0       66      6.4      117        4   Spring        0
## 5491      2.5        0       55     31.3     2770       18   Summer        0
## 1237      1.6        0       30      3.9      271       12   Winter        0
## 5532      1.6        0       48     30.7      687       11   Summer        0
## 5201      1.7        0       71     28.2     1105       16   Summer        0
##      col 3133 col 3134 col 3135 col 3136 col 3137 col 3138   col 3139 col 3140
## 1658   Winter     1908     -8.5      1.2     1908      126   8/2/2018        0
## 3485   Spring     2000      6.4      0.5     2000      117 25/04/2018        0
## 5491   Summer     1550     31.3      2.5     1550     2770 17/07/2018        0
## 1237   Winter     1085      3.9      1.6     1085      271 21/01/2018        0
## 5532   Summer     1705     30.7      1.6     1705      687 19/07/2018        0
## 5201   Summer     2000     28.2      1.7     2000     1105   5/7/2018        0
##      col 3141 col 3142   col 3143 col 3144 col 3145 col 3146   col 3147
## 1658      1.2      Yes No Holiday        0   Winter     -8.5   8/2/2018
## 3485      0.5      Yes No Holiday        0   Spring      6.4 25/04/2018
## 5491      2.5      Yes No Holiday        0   Summer     31.3 17/07/2018
## 1237      1.6      Yes No Holiday        0   Winter      3.9 21/01/2018
## 5532      1.6      Yes No Holiday        0   Summer     30.7 19/07/2018
## 5201      1.7      Yes No Holiday        0   Summer     28.2   5/7/2018
##      col 3148 col 3149 col 3150 col 3151 col 3152 col 3153 col 3154 col 3155
## 1658     0.00      126     0.00      126        0        0   Winter      1.2
## 3485     0.00      117     0.00      117        0        0   Spring      0.5
## 5491     1.20     2770     1.20     2770        0        0   Summer      2.5
## 1237     0.91      271     0.91      271        0        0   Winter      1.6
## 5532     2.92      687     2.92      687        0        0   Summer      1.6
## 5201     0.96     1105     0.96     1105        0        0   Summer      1.7
##      col 3156 col 3157 col 3158 col 3159 col 3160 col 3161 col 3162   col 3163
## 1658      Yes     0.00      Yes     -8.5      126     -8.5      Yes No Holiday
## 3485      Yes     0.00      Yes      6.4      117      6.4      Yes No Holiday
## 5491      Yes     1.20      Yes     31.3     2770     31.3      Yes No Holiday
## 1237      Yes     0.91      Yes      3.9      271      3.9      Yes No Holiday
## 5532      Yes     2.92      Yes     30.7      687     30.7      Yes No Holiday
## 5201      Yes     0.96      Yes     28.2     1105     28.2      Yes No Holiday
##        col 3164 col 3165 col 3166 col 3167 col 3168 col 3169 col 3170 col 3171
## 1658 No Holiday    -14.8     0.00     1908     1908    -14.8        1    -14.8
## 3485 No Holiday      0.4     0.00     2000     2000      0.4        4      0.4
## 5491 No Holiday     21.1     1.20     1550     1550     21.1       18     21.1
## 1237 No Holiday    -12.1     0.91     1085     1085    -12.1       12    -12.1
## 5532 No Holiday     18.4     2.92     1705     1705     18.4       11     18.4
## 5201 No Holiday     22.4     0.96     2000     2000     22.4       16     22.4
##      col 3172   col 3173 col 3174 col 3175 col 3176 col 3177   col 3178
## 1658        0 No Holiday       60      1.2     -8.5    -14.8   8/2/2018
## 3485        0 No Holiday       66      0.5      6.4      0.4 25/04/2018
## 5491        0 No Holiday       55      2.5     31.3     21.1 17/07/2018
## 1237        0 No Holiday       30      1.6      3.9    -12.1 21/01/2018
## 5532        0 No Holiday       48      1.6     30.7     18.4 19/07/2018
## 5201        0 No Holiday       71      1.7     28.2     22.4   5/7/2018
##      col 3179 col 3180 col 3181 col 3182 col 3183 col 3184 col 3185 col 3186
## 1658      126        1        1       60        0      126      Yes      Yes
## 3485      117        4        4       66        0      117      Yes      Yes
## 5491     2770       18       18       55        0     2770      Yes      Yes
## 1237      271       12       12       30        0      271      Yes      Yes
## 5532      687       11       11       48        0      687      Yes      Yes
## 5201     1105       16       16       71        0     1105      Yes      Yes
##      col 3187 col 3188 col 3189 col 3190 col 3191 col 3192 col 3193 col 3194
## 1658       60   Winter     -8.5        1        0        0        1     0.00
## 3485       66   Spring      6.4        4        0        0        4     0.00
## 5491       55   Summer     31.3       18        0        0       18     1.20
## 1237       30   Winter      3.9       12        0        0       12     0.91
## 5532       48   Summer     30.7       11        0        0       11     2.92
## 5201       71   Summer     28.2       16        0        0       16     0.96
##      col 3195 col 3196 col 3197 col 3198 col 3199 col 3200 col 3201 col 3202
## 1658        0     0.00       60      Yes        1    -14.8     0.00      126
## 3485        0     0.00       66      Yes        4      0.4     0.00      117
## 5491        0     1.20       55      Yes       18     21.1     1.20     2770
## 1237        0     0.91       30      Yes       12    -12.1     0.91      271
## 5532        0     2.92       48      Yes       11     18.4     2.92      687
## 5201        0     0.96       71      Yes       16     22.4     0.96     1105
##      col 3203 col 3204 col 3205 col 3206 col 3207 col 3208 col 3209 col 3210
## 1658     1908       60     -8.5    -14.8     1908      126     -8.5   Winter
## 3485     2000       66      6.4      0.4     2000      117      6.4   Spring
## 5491     1550       55     31.3     21.1     1550     2770     31.3   Summer
## 1237     1085       30      3.9    -12.1     1085      271      3.9   Winter
## 5532     1705       48     30.7     18.4     1705      687     30.7   Summer
## 5201     2000       71     28.2     22.4     2000     1105     28.2   Summer
##      col 3211 col 3212 col 3213 col 3214 col 3215 col 3216 col 3217 col 3218
## 1658      Yes     0.00   Winter    -14.8      1.2        0        0    -14.8
## 3485      Yes     0.00   Spring      0.4      0.5        0        0      0.4
## 5491      Yes     1.20   Summer     21.1      2.5        0        0     21.1
## 1237      Yes     0.91   Winter    -12.1      1.6        0        0    -12.1
## 5532      Yes     2.92   Summer     18.4      1.6        0        0     18.4
## 5201      Yes     0.96   Summer     22.4      1.7        0        0     22.4
##      col 3219 col 3220 col 3221   col 3222 col 3223   col 3224 col 3225
## 1658     -8.5     0.00        0 No Holiday        1   8/2/2018      1.2
## 3485      6.4     0.00        0 No Holiday        4 25/04/2018      0.5
## 5491     31.3     1.20        0 No Holiday       18 17/07/2018      2.5
## 1237      3.9     0.91        0 No Holiday       12 21/01/2018      1.6
## 5532     30.7     2.92        0 No Holiday       11 19/07/2018      1.6
## 5201     28.2     0.96        0 No Holiday       16   5/7/2018      1.7
##      col 3226 col 3227 col 3228 col 3229 col 3230 col 3231 col 3232   col 3233
## 1658     -8.5      Yes    -14.8    -14.8        0        0      126   8/2/2018
## 3485      6.4      Yes      0.4      0.4        0        0      117 25/04/2018
## 5491     31.3      Yes     21.1     21.1        0        0     2770 17/07/2018
## 1237      3.9      Yes    -12.1    -12.1        0        0      271 21/01/2018
## 5532     30.7      Yes     18.4     18.4        0        0      687 19/07/2018
## 5201     28.2      Yes     22.4     22.4        0        0     1105   5/7/2018
##      col 3234 col 3235 col 3236   col 3237 col 3238 col 3239 col 3240
## 1658      1.2    -14.8       60 No Holiday       60      1.2    -14.8
## 3485      0.5      0.4       66 No Holiday       66      0.5      0.4
## 5491      2.5     21.1       55 No Holiday       55      2.5     21.1
## 1237      1.6    -12.1       30 No Holiday       30      1.6    -12.1
## 5532      1.6     18.4       48 No Holiday       48      1.6     18.4
## 5201      1.7     22.4       71 No Holiday       71      1.7     22.4
##        col 3241 col 3242 col 3243 col 3244   col 3245 col 3246 col 3247
## 1658 No Holiday    -14.8        1     -8.5 No Holiday     1908     -8.5
## 3485 No Holiday      0.4        4      6.4 No Holiday     2000      6.4
## 5491 No Holiday     21.1       18     31.3 No Holiday     1550     31.3
## 1237 No Holiday    -12.1       12      3.9 No Holiday     1085      3.9
## 5532 No Holiday     18.4       11     30.7 No Holiday     1705     30.7
## 5201 No Holiday     22.4       16     28.2 No Holiday     2000     28.2
##      col 3248   col 3249 col 3250 col 3251 col 3252 col 3253   col 3254
## 1658        0 No Holiday      Yes        1      Yes       60   8/2/2018
## 3485        0 No Holiday      Yes        4      Yes       66 25/04/2018
## 5491        0 No Holiday      Yes       18      Yes       55 17/07/2018
## 1237        0 No Holiday      Yes       12      Yes       30 21/01/2018
## 5532        0 No Holiday      Yes       11      Yes       48 19/07/2018
## 5201        0 No Holiday      Yes       16      Yes       71   5/7/2018
##      col 3255   col 3256 col 3257 col 3258 col 3259 col 3260 col 3261
## 1658     1908   8/2/2018        0      Yes     1908      Yes       60
## 3485     2000 25/04/2018        0      Yes     2000      Yes       66
## 5491     1550 17/07/2018        0      Yes     1550      Yes       55
## 1237     1085 21/01/2018        0      Yes     1085      Yes       30
## 5532     1705 19/07/2018        0      Yes     1705      Yes       48
## 5201     2000   5/7/2018        0      Yes     2000      Yes       71
##        col 3262 col 3263 col 3264 col 3265 col 3266   col 3267 col 3268
## 1658   8/2/2018     1908    -14.8        1     1908 No Holiday        0
## 3485 25/04/2018     2000      0.4        4     2000 No Holiday        0
## 5491 17/07/2018     1550     21.1       18     1550 No Holiday        0
## 1237 21/01/2018     1085    -12.1       12     1085 No Holiday        0
## 5532 19/07/2018     1705     18.4       11     1705 No Holiday        0
## 5201   5/7/2018     2000     22.4       16     2000 No Holiday        0
##      col 3269 col 3270 col 3271 col 3272   col 3273 col 3274 col 3275 col 3276
## 1658        1    -14.8     -8.5     -8.5   8/2/2018     1908        0      1.2
## 3485        4      0.4      6.4      6.4 25/04/2018     2000        0      0.5
## 5491       18     21.1     31.3     31.3 17/07/2018     1550        0      2.5
## 1237       12    -12.1      3.9      3.9 21/01/2018     1085        0      1.6
## 5532       11     18.4     30.7     30.7 19/07/2018     1705        0      1.6
## 5201       16     22.4     28.2     28.2   5/7/2018     2000        0      1.7
##      col 3277 col 3278 col 3279 col 3280   col 3281 col 3282 col 3283 col 3284
## 1658    -14.8      Yes      Yes       60   8/2/2018       60    -14.8        0
## 3485      0.4      Yes      Yes       66 25/04/2018       66      0.4        0
## 5491     21.1      Yes      Yes       55 17/07/2018       55     21.1        0
## 1237    -12.1      Yes      Yes       30 21/01/2018       30    -12.1        0
## 5532     18.4      Yes      Yes       48 19/07/2018       48     18.4        0
## 5201     22.4      Yes      Yes       71   5/7/2018       71     22.4        0
##      col 3285 col 3286 col 3287 col 3288 col 3289 col 3290 col 3291 col 3292
## 1658      126        0       60       60      126      126     -8.5     -8.5
## 3485      117        0       66       66      117      117      6.4      6.4
## 5491     2770        0       55       55     2770     2770     31.3     31.3
## 1237      271        0       30       30      271      271      3.9      3.9
## 5532      687        0       48       48      687      687     30.7     30.7
## 5201     1105        0       71       71     1105     1105     28.2     28.2
##      col 3293 col 3294   col 3295 col 3296   col 3297 col 3298   col 3299
## 1658       60   Winter No Holiday     0.00   8/2/2018      126 No Holiday
## 3485       66   Spring No Holiday     0.00 25/04/2018      117 No Holiday
## 5491       55   Summer No Holiday     1.20 17/07/2018     2770 No Holiday
## 1237       30   Winter No Holiday     0.91 21/01/2018      271 No Holiday
## 5532       48   Summer No Holiday     2.92 19/07/2018      687 No Holiday
## 5201       71   Summer No Holiday     0.96   5/7/2018     1105 No Holiday
##      col 3300 col 3301 col 3302 col 3303 col 3304 col 3305 col 3306 col 3307
## 1658        1        0     1908     0.00      126      126     0.00        0
## 3485        4        0     2000     0.00      117      117     0.00        0
## 5491       18        0     1550     1.20     2770     2770     1.20        0
## 1237       12        0     1085     0.91      271      271     0.91        0
## 5532       11        0     1705     2.92      687      687     2.92        0
## 5201       16        0     2000     0.96     1105     1105     0.96        0
##      col 3308 col 3309 col 3310 col 3311 col 3312 col 3313 col 3314 col 3315
## 1658      Yes      126     1908        0    -14.8     0.00      1.2      126
## 3485      Yes      117     2000        0      0.4     0.00      0.5      117
## 5491      Yes     2770     1550        0     21.1     1.20      2.5     2770
## 1237      Yes      271     1085        0    -12.1     0.91      1.6      271
## 5532      Yes      687     1705        0     18.4     2.92      1.6      687
## 5201      Yes     1105     2000        0     22.4     0.96      1.7     1105
##        col 3316 col 3317 col 3318 col 3319 col 3320 col 3321 col 3322 col 3323
## 1658 No Holiday   Winter   Winter      Yes       60        0     -8.5       60
## 3485 No Holiday   Spring   Spring      Yes       66        0      6.4       66
## 5491 No Holiday   Summer   Summer      Yes       55        0     31.3       55
## 1237 No Holiday   Winter   Winter      Yes       30        0      3.9       30
## 5532 No Holiday   Summer   Summer      Yes       48        0     30.7       48
## 5201 No Holiday   Summer   Summer      Yes       71        0     28.2       71
##      col 3324 col 3325 col 3326   col 3327 col 3328 col 3329   col 3330
## 1658   Winter        0    -14.8 No Holiday    -14.8     -8.5 No Holiday
## 3485   Spring        0      0.4 No Holiday      0.4      6.4 No Holiday
## 5491   Summer        0     21.1 No Holiday     21.1     31.3 No Holiday
## 1237   Winter        0    -12.1 No Holiday    -12.1      3.9 No Holiday
## 5532   Summer        0     18.4 No Holiday     18.4     30.7 No Holiday
## 5201   Summer        0     22.4 No Holiday     22.4     28.2 No Holiday
##      col 3331 col 3332   col 3333   col 3334 col 3335 col 3336   col 3337
## 1658        0      Yes No Holiday   8/2/2018     0.00      1.2   8/2/2018
## 3485        0      Yes No Holiday 25/04/2018     0.00      0.5 25/04/2018
## 5491        0      Yes No Holiday 17/07/2018     1.20      2.5 17/07/2018
## 1237        0      Yes No Holiday 21/01/2018     0.91      1.6 21/01/2018
## 5532        0      Yes No Holiday 19/07/2018     2.92      1.6 19/07/2018
## 5201        0      Yes No Holiday   5/7/2018     0.96      1.7   5/7/2018
##      col 3338 col 3339 col 3340 col 3341 col 3342 col 3343 col 3344 col 3345
## 1658    -14.8     0.00        1       60     0.00      Yes       60      1.2
## 3485      0.4     0.00        4       66     0.00      Yes       66      0.5
## 5491     21.1     1.20       18       55     1.20      Yes       55      2.5
## 1237    -12.1     0.91       12       30     0.91      Yes       30      1.6
## 5532     18.4     2.92       11       48     2.92      Yes       48      1.6
## 5201     22.4     0.96       16       71     0.96      Yes       71      1.7
##        col 3346 col 3347 col 3348 col 3349 col 3350 col 3351 col 3352 col 3353
## 1658   8/2/2018     1908     0.00     1908    -14.8       60      Yes   Winter
## 3485 25/04/2018     2000     0.00     2000      0.4       66      Yes   Spring
## 5491 17/07/2018     1550     1.20     1550     21.1       55      Yes   Summer
## 1237 21/01/2018     1085     0.91     1085    -12.1       30      Yes   Winter
## 5532 19/07/2018     1705     2.92     1705     18.4       48      Yes   Summer
## 5201   5/7/2018     2000     0.96     2000     22.4       71      Yes   Summer
##      col 3354   col 3355   col 3356 col 3357 col 3358 col 3359 col 3360
## 1658     0.00   8/2/2018 No Holiday     0.00    -14.8     1908      1.2
## 3485     0.00 25/04/2018 No Holiday     0.00      0.4     2000      0.5
## 5491     1.20 17/07/2018 No Holiday     1.20     21.1     1550      2.5
## 1237     0.91 21/01/2018 No Holiday     0.91    -12.1     1085      1.6
## 5532     2.92 19/07/2018 No Holiday     2.92     18.4     1705      1.6
## 5201     0.96   5/7/2018 No Holiday     0.96     22.4     2000      1.7
##      col 3361 col 3362 col 3363 col 3364 col 3365   col 3366 col 3367 col 3368
## 1658     0.00        0       60   Winter        0 No Holiday      126    -14.8
## 3485     0.00        0       66   Spring        0 No Holiday      117      0.4
## 5491     1.20        0       55   Summer        0 No Holiday     2770     21.1
## 1237     0.91        0       30   Winter        0 No Holiday      271    -12.1
## 5532     2.92        0       48   Summer        0 No Holiday      687     18.4
## 5201     0.96        0       71   Summer        0 No Holiday     1105     22.4
##      col 3369 col 3370   col 3371 col 3372 col 3373 col 3374 col 3375 col 3376
## 1658      126        1 No Holiday        0    -14.8     1908     1908       60
## 3485      117        4 No Holiday        0      0.4     2000     2000       66
## 5491     2770       18 No Holiday        0     21.1     1550     1550       55
## 1237      271       12 No Holiday        0    -12.1     1085     1085       30
## 5532      687       11 No Holiday        0     18.4     1705     1705       48
## 5201     1105       16 No Holiday        0     22.4     2000     2000       71
##      col 3377 col 3378 col 3379 col 3380 col 3381 col 3382 col 3383 col 3384
## 1658    -14.8   Winter     -8.5        1      1.2     1908     0.00   Winter
## 3485      0.4   Spring      6.4        4      0.5     2000     0.00   Spring
## 5491     21.1   Summer     31.3       18      2.5     1550     1.20   Summer
## 1237    -12.1   Winter      3.9       12      1.6     1085     0.91   Winter
## 5532     18.4   Summer     30.7       11      1.6     1705     2.92   Summer
## 5201     22.4   Summer     28.2       16      1.7     2000     0.96   Summer
##      col 3385 col 3386 col 3387 col 3388 col 3389 col 3390 col 3391 col 3392
## 1658     -8.5        1        0        0      1.2    -14.8    -14.8       60
## 3485      6.4        4        0        0      0.5      0.4      0.4       66
## 5491     31.3       18        0        0      2.5     21.1     21.1       55
## 1237      3.9       12        0        0      1.6    -12.1    -12.1       30
## 5532     30.7       11        0        0      1.6     18.4     18.4       48
## 5201     28.2       16        0        0      1.7     22.4     22.4       71
##      col 3393   col 3394 col 3395 col 3396 col 3397 col 3398   col 3399
## 1658     1908 No Holiday   Winter        1      126        0 No Holiday
## 3485     2000 No Holiday   Spring        4      117        0 No Holiday
## 5491     1550 No Holiday   Summer       18     2770        0 No Holiday
## 1237     1085 No Holiday   Winter       12      271        0 No Holiday
## 5532     1705 No Holiday   Summer       11      687        0 No Holiday
## 5201     2000 No Holiday   Summer       16     1105        0 No Holiday
##        col 3400   col 3401   col 3402 col 3403 col 3404 col 3405 col 3406
## 1658   8/2/2018 No Holiday   8/2/2018        1     0.00        0     1908
## 3485 25/04/2018 No Holiday 25/04/2018        4     0.00        0     2000
## 5491 17/07/2018 No Holiday 17/07/2018       18     1.20        0     1550
## 1237 21/01/2018 No Holiday 21/01/2018       12     0.91        0     1085
## 5532 19/07/2018 No Holiday 19/07/2018       11     2.92        0     1705
## 5201   5/7/2018 No Holiday   5/7/2018       16     0.96        0     2000
##      col 3407 col 3408 col 3409 col 3410 col 3411 col 3412 col 3413 col 3414
## 1658     1908    -14.8    -14.8    -14.8   Winter        0        0     -8.5
## 3485     2000      0.4      0.4      0.4   Spring        0        0      6.4
## 5491     1550     21.1     21.1     21.1   Summer        0        0     31.3
## 1237     1085    -12.1    -12.1    -12.1   Winter        0        0      3.9
## 5532     1705     18.4     18.4     18.4   Summer        0        0     30.7
## 5201     2000     22.4     22.4     22.4   Summer        0        0     28.2
##      col 3415 col 3416 col 3417   col 3418 col 3419   col 3420 col 3421
## 1658    -14.8    -14.8      126 No Holiday      Yes   8/2/2018     1908
## 3485      0.4      0.4      117 No Holiday      Yes 25/04/2018     2000
## 5491     21.1     21.1     2770 No Holiday      Yes 17/07/2018     1550
## 1237    -12.1    -12.1      271 No Holiday      Yes 21/01/2018     1085
## 5532     18.4     18.4      687 No Holiday      Yes 19/07/2018     1705
## 5201     22.4     22.4     1105 No Holiday      Yes   5/7/2018     2000
##        col 3422 col 3423 col 3424 col 3425 col 3426 col 3427 col 3428 col 3429
## 1658   8/2/2018      126      126        1        0      Yes     -8.5      126
## 3485 25/04/2018      117      117        4        0      Yes      6.4      117
## 5491 17/07/2018     2770     2770       18        0      Yes     31.3     2770
## 1237 21/01/2018      271      271       12        0      Yes      3.9      271
## 5532 19/07/2018      687      687       11        0      Yes     30.7      687
## 5201   5/7/2018     1105     1105       16        0      Yes     28.2     1105
##      col 3430 col 3431 col 3432 col 3433 col 3434 col 3435 col 3436 col 3437
## 1658     1908    -14.8      Yes      126      Yes     1908        0     -8.5
## 3485     2000      0.4      Yes      117      Yes     2000        0      6.4
## 5491     1550     21.1      Yes     2770      Yes     1550        0     31.3
## 1237     1085    -12.1      Yes      271      Yes     1085        0      3.9
## 5532     1705     18.4      Yes      687      Yes     1705        0     30.7
## 5201     2000     22.4      Yes     1105      Yes     2000        0     28.2
##      col 3438 col 3439 col 3440 col 3441   col 3442 col 3443 col 3444
## 1658      Yes      1.2     -8.5        0 No Holiday        1    -14.8
## 3485      Yes      0.5      6.4        0 No Holiday        4      0.4
## 5491      Yes      2.5     31.3        0 No Holiday       18     21.1
## 1237      Yes      1.6      3.9        0 No Holiday       12    -12.1
## 5532      Yes      1.6     30.7        0 No Holiday       11     18.4
## 5201      Yes      1.7     28.2        0 No Holiday       16     22.4
##        col 3445   col 3446   col 3447 col 3448 col 3449 col 3450 col 3451
## 1658 No Holiday No Holiday No Holiday    -14.8     -8.5      1.2       60
## 3485 No Holiday No Holiday No Holiday      0.4      6.4      0.5       66
## 5491 No Holiday No Holiday No Holiday     21.1     31.3      2.5       55
## 1237 No Holiday No Holiday No Holiday    -12.1      3.9      1.6       30
## 5532 No Holiday No Holiday No Holiday     18.4     30.7      1.6       48
## 5201 No Holiday No Holiday No Holiday     22.4     28.2      1.7       71
##      col 3452 col 3453 col 3454 col 3455 col 3456 col 3457 col 3458 col 3459
## 1658     -8.5     1908       60       60     0.00        0     -8.5   Winter
## 3485      6.4     2000       66       66     0.00        0      6.4   Spring
## 5491     31.3     1550       55       55     1.20        0     31.3   Summer
## 1237      3.9     1085       30       30     0.91        0      3.9   Winter
## 5532     30.7     1705       48       48     2.92        0     30.7   Summer
## 5201     28.2     2000       71       71     0.96        0     28.2   Summer
##        col 3460 col 3461   col 3462 col 3463 col 3464 col 3465 col 3466
## 1658   8/2/2018      126 No Holiday     -8.5        0      Yes        0
## 3485 25/04/2018      117 No Holiday      6.4        0      Yes        0
## 5491 17/07/2018     2770 No Holiday     31.3        0      Yes        0
## 1237 21/01/2018      271 No Holiday      3.9        0      Yes        0
## 5532 19/07/2018      687 No Holiday     30.7        0      Yes        0
## 5201   5/7/2018     1105 No Holiday     28.2        0      Yes        0
##      col 3467 col 3468 col 3469   col 3470 col 3471 col 3472 col 3473 col 3474
## 1658   Winter        0   Winter   8/2/2018    -14.8       60     0.00      1.2
## 3485   Spring        0   Spring 25/04/2018      0.4       66     0.00      0.5
## 5491   Summer        0   Summer 17/07/2018     21.1       55     1.20      2.5
## 1237   Winter        0   Winter 21/01/2018    -12.1       30     0.91      1.6
## 5532   Summer        0   Summer 19/07/2018     18.4       48     2.92      1.6
## 5201   Summer        0   Summer   5/7/2018     22.4       71     0.96      1.7
##      col 3475 col 3476   col 3477   col 3478 col 3479 col 3480 col 3481
## 1658     -8.5      Yes   8/2/2018 No Holiday   Winter      126        0
## 3485      6.4      Yes 25/04/2018 No Holiday   Spring      117        0
## 5491     31.3      Yes 17/07/2018 No Holiday   Summer     2770        0
## 1237      3.9      Yes 21/01/2018 No Holiday   Winter      271        0
## 5532     30.7      Yes 19/07/2018 No Holiday   Summer      687        0
## 5201     28.2      Yes   5/7/2018 No Holiday   Summer     1105        0
##      col 3482 col 3483 col 3484 col 3485 col 3486 col 3487 col 3488 col 3489
## 1658       60     -8.5    -14.8       60        0      Yes      1.2   Winter
## 3485       66      6.4      0.4       66        0      Yes      0.5   Spring
## 5491       55     31.3     21.1       55        0      Yes      2.5   Summer
## 1237       30      3.9    -12.1       30        0      Yes      1.6   Winter
## 5532       48     30.7     18.4       48        0      Yes      1.6   Summer
## 5201       71     28.2     22.4       71        0      Yes      1.7   Summer
##      col 3490 col 3491 col 3492 col 3493 col 3494   col 3495 col 3496 col 3497
## 1658     1908        0     -8.5     -8.5      126   8/2/2018      Yes      Yes
## 3485     2000        0      6.4      6.4      117 25/04/2018      Yes      Yes
## 5491     1550        0     31.3     31.3     2770 17/07/2018      Yes      Yes
## 1237     1085        0      3.9      3.9      271 21/01/2018      Yes      Yes
## 5532     1705        0     30.7     30.7      687 19/07/2018      Yes      Yes
## 5201     2000        0     28.2     28.2     1105   5/7/2018      Yes      Yes
##      col 3498 col 3499   col 3500 col 3501 col 3502 col 3503 col 3504 col 3505
## 1658   Winter        0 No Holiday      126     -8.5      1.2    -14.8      1.2
## 3485   Spring        0 No Holiday      117      6.4      0.5      0.4      0.5
## 5491   Summer        0 No Holiday     2770     31.3      2.5     21.1      2.5
## 1237   Winter        0 No Holiday      271      3.9      1.6    -12.1      1.6
## 5532   Summer        0 No Holiday      687     30.7      1.6     18.4      1.6
## 5201   Summer        0 No Holiday     1105     28.2      1.7     22.4      1.7
##        col 3506 col 3507 col 3508 col 3509 col 3510 col 3511 col 3512 col 3513
## 1658 No Holiday       60       60     1908      Yes       60        0        1
## 3485 No Holiday       66       66     2000      Yes       66        0        4
## 5491 No Holiday       55       55     1550      Yes       55        0       18
## 1237 No Holiday       30       30     1085      Yes       30        0       12
## 5532 No Holiday       48       48     1705      Yes       48        0       11
## 5201 No Holiday       71       71     2000      Yes       71        0       16
##        col 3514   col 3515 col 3516 col 3517 col 3518 col 3519 col 3520
## 1658 No Holiday   8/2/2018     1908     1908     0.00     1908     1908
## 3485 No Holiday 25/04/2018     2000     2000     0.00     2000     2000
## 5491 No Holiday 17/07/2018     1550     1550     1.20     1550     1550
## 1237 No Holiday 21/01/2018     1085     1085     0.91     1085     1085
## 5532 No Holiday 19/07/2018     1705     1705     2.92     1705     1705
## 5201 No Holiday   5/7/2018     2000     2000     0.96     2000     2000
##      col 3521 col 3522 col 3523 col 3524 col 3525 col 3526 col 3527 col 3528
## 1658     -8.5     -8.5   Winter        0      1.2     -8.5      126      Yes
## 3485      6.4      6.4   Spring        0      0.5      6.4      117      Yes
## 5491     31.3     31.3   Summer        0      2.5     31.3     2770      Yes
## 1237      3.9      3.9   Winter        0      1.6      3.9      271      Yes
## 5532     30.7     30.7   Summer        0      1.6     30.7      687      Yes
## 5201     28.2     28.2   Summer        0      1.7     28.2     1105      Yes
##      col 3529 col 3530 col 3531 col 3532 col 3533 col 3534 col 3535   col 3536
## 1658   Winter     0.00      1.2     -8.5   Winter   Winter    -14.8   8/2/2018
## 3485   Spring     0.00      0.5      6.4   Spring   Spring      0.4 25/04/2018
## 5491   Summer     1.20      2.5     31.3   Summer   Summer     21.1 17/07/2018
## 1237   Winter     0.91      1.6      3.9   Winter   Winter    -12.1 21/01/2018
## 5532   Summer     2.92      1.6     30.7   Summer   Summer     18.4 19/07/2018
## 5201   Summer     0.96      1.7     28.2   Summer   Summer     22.4   5/7/2018
##        col 3537 col 3538 col 3539 col 3540 col 3541 col 3542 col 3543
## 1658 No Holiday      1.2        0    -14.8      Yes        0     1908
## 3485 No Holiday      0.5        0      0.4      Yes        0     2000
## 5491 No Holiday      2.5        0     21.1      Yes        0     1550
## 1237 No Holiday      1.6        0    -12.1      Yes        0     1085
## 5532 No Holiday      1.6        0     18.4      Yes        0     1705
## 5201 No Holiday      1.7        0     22.4      Yes        0     2000
##        col 3544 col 3545 col 3546 col 3547 col 3548 col 3549 col 3550
## 1658 No Holiday     -8.5      126     -8.5   Winter       60      126
## 3485 No Holiday      6.4      117      6.4   Spring       66      117
## 5491 No Holiday     31.3     2770     31.3   Summer       55     2770
## 1237 No Holiday      3.9      271      3.9   Winter       30      271
## 5532 No Holiday     30.7      687     30.7   Summer       48      687
## 5201 No Holiday     28.2     1105     28.2   Summer       71     1105
##        col 3551 col 3552   col 3553 col 3554 col 3555 col 3556 col 3557
## 1658   8/2/2018        0   8/2/2018   Winter      126     0.00    -14.8
## 3485 25/04/2018        0 25/04/2018   Spring      117     0.00      0.4
## 5491 17/07/2018        0 17/07/2018   Summer     2770     1.20     21.1
## 1237 21/01/2018        0 21/01/2018   Winter      271     0.91    -12.1
## 5532 19/07/2018        0 19/07/2018   Summer      687     2.92     18.4
## 5201   5/7/2018        0   5/7/2018   Summer     1105     0.96     22.4
##      col 3558 col 3559 col 3560 col 3561 col 3562 col 3563 col 3564 col 3565
## 1658       60        0     -8.5      1.2    -14.8    -14.8    -14.8   Winter
## 3485       66        0      6.4      0.5      0.4      0.4      0.4   Spring
## 5491       55        0     31.3      2.5     21.1     21.1     21.1   Summer
## 1237       30        0      3.9      1.6    -12.1    -12.1    -12.1   Winter
## 5532       48        0     30.7      1.6     18.4     18.4     18.4   Summer
## 5201       71        0     28.2      1.7     22.4     22.4     22.4   Summer
##      col 3566 col 3567 col 3568 col 3569 col 3570   col 3571 col 3572 col 3573
## 1658        0     -8.5      Yes       60   Winter No Holiday    -14.8     0.00
## 3485        0      6.4      Yes       66   Spring No Holiday      0.4     0.00
## 5491        0     31.3      Yes       55   Summer No Holiday     21.1     1.20
## 1237        0      3.9      Yes       30   Winter No Holiday    -12.1     0.91
## 5532        0     30.7      Yes       48   Summer No Holiday     18.4     2.92
## 5201        0     28.2      Yes       71   Summer No Holiday     22.4     0.96
##      col 3574 col 3575   col 3576 col 3577 col 3578 col 3579 col 3580 col 3581
## 1658      Yes        0 No Holiday   Winter     1908        1     0.00     1908
## 3485      Yes        0 No Holiday   Spring     2000        4     0.00     2000
## 5491      Yes        0 No Holiday   Summer     1550       18     1.20     1550
## 1237      Yes        0 No Holiday   Winter     1085       12     0.91     1085
## 5532      Yes        0 No Holiday   Summer     1705       11     2.92     1705
## 5201      Yes        0 No Holiday   Summer     2000       16     0.96     2000
##      col 3582 col 3583 col 3584 col 3585 col 3586 col 3587 col 3588 col 3589
## 1658       60     1908      126      1.2      126        0        0       60
## 3485       66     2000      117      0.5      117        0        0       66
## 5491       55     1550     2770      2.5     2770        0        0       55
## 1237       30     1085      271      1.6      271        0        0       30
## 5532       48     1705      687      1.6      687        0        0       48
## 5201       71     2000     1105      1.7     1105        0        0       71
##      col 3590 col 3591 col 3592 col 3593 col 3594   col 3595 col 3596 col 3597
## 1658     1908    -14.8    -14.8        0     1908   8/2/2018     0.00        0
## 3485     2000      0.4      0.4        0     2000 25/04/2018     0.00        0
## 5491     1550     21.1     21.1        0     1550 17/07/2018     1.20        0
## 1237     1085    -12.1    -12.1        0     1085 21/01/2018     0.91        0
## 5532     1705     18.4     18.4        0     1705 19/07/2018     2.92        0
## 5201     2000     22.4     22.4        0     2000   5/7/2018     0.96        0
##      col 3598 col 3599 col 3600   col 3601 col 3602 col 3603   col 3604
## 1658      Yes    -14.8     -8.5   8/2/2018    -14.8     1908 No Holiday
## 3485      Yes      0.4      6.4 25/04/2018      0.4     2000 No Holiday
## 5491      Yes     21.1     31.3 17/07/2018     21.1     1550 No Holiday
## 1237      Yes    -12.1      3.9 21/01/2018    -12.1     1085 No Holiday
## 5532      Yes     18.4     30.7 19/07/2018     18.4     1705 No Holiday
## 5201      Yes     22.4     28.2   5/7/2018     22.4     2000 No Holiday
##      col 3605 col 3606 col 3607 col 3608   col 3609 col 3610 col 3611 col 3612
## 1658     1908       60   Winter        0   8/2/2018      1.2       60    -14.8
## 3485     2000       66   Spring        0 25/04/2018      0.5       66      0.4
## 5491     1550       55   Summer        0 17/07/2018      2.5       55     21.1
## 1237     1085       30   Winter        0 21/01/2018      1.6       30    -12.1
## 5532     1705       48   Summer        0 19/07/2018      1.6       48     18.4
## 5201     2000       71   Summer        0   5/7/2018      1.7       71     22.4
##      col 3613 col 3614 col 3615 col 3616 col 3617 col 3618 col 3619 col 3620
## 1658      1.2       60     1908       60      1.2   Winter       60      Yes
## 3485      0.5       66     2000       66      0.5   Spring       66      Yes
## 5491      2.5       55     1550       55      2.5   Summer       55      Yes
## 1237      1.6       30     1085       30      1.6   Winter       30      Yes
## 5532      1.6       48     1705       48      1.6   Summer       48      Yes
## 5201      1.7       71     2000       71      1.7   Summer       71      Yes
##      col 3621   col 3622 col 3623   col 3624 col 3625   col 3626 col 3627
## 1658    -14.8   8/2/2018        0   8/2/2018      126 No Holiday     1908
## 3485      0.4 25/04/2018        0 25/04/2018      117 No Holiday     2000
## 5491     21.1 17/07/2018        0 17/07/2018     2770 No Holiday     1550
## 1237    -12.1 21/01/2018        0 21/01/2018      271 No Holiday     1085
## 5532     18.4 19/07/2018        0 19/07/2018      687 No Holiday     1705
## 5201     22.4   5/7/2018        0   5/7/2018     1105 No Holiday     2000
##        col 3628 col 3629 col 3630 col 3631 col 3632 col 3633 col 3634 col 3635
## 1658   8/2/2018    -14.8   Winter   Winter      Yes        1   Winter        0
## 3485 25/04/2018      0.4   Spring   Spring      Yes        4   Spring        0
## 5491 17/07/2018     21.1   Summer   Summer      Yes       18   Summer        0
## 1237 21/01/2018    -12.1   Winter   Winter      Yes       12   Winter        0
## 5532 19/07/2018     18.4   Summer   Summer      Yes       11   Summer        0
## 5201   5/7/2018     22.4   Summer   Summer      Yes       16   Summer        0
##      col 3636 col 3637 col 3638 col 3639   col 3640 col 3641 col 3642 col 3643
## 1658      Yes      Yes     1908     1908   8/2/2018     1908        0     1908
## 3485      Yes      Yes     2000     2000 25/04/2018     2000        0     2000
## 5491      Yes      Yes     1550     1550 17/07/2018     1550        0     1550
## 1237      Yes      Yes     1085     1085 21/01/2018     1085        0     1085
## 5532      Yes      Yes     1705     1705 19/07/2018     1705        0     1705
## 5201      Yes      Yes     2000     2000   5/7/2018     2000        0     2000
##      col 3644 col 3645   col 3646 col 3647 col 3648 col 3649 col 3650 col 3651
## 1658      1.2        0   8/2/2018        0      126     -8.5    -14.8     1908
## 3485      0.5        0 25/04/2018        0      117      6.4      0.4     2000
## 5491      2.5        0 17/07/2018        0     2770     31.3     21.1     1550
## 1237      1.6        0 21/01/2018        0      271      3.9    -12.1     1085
## 5532      1.6        0 19/07/2018        0      687     30.7     18.4     1705
## 5201      1.7        0   5/7/2018        0     1105     28.2     22.4     2000
##      col 3652 col 3653 col 3654 col 3655 col 3656 col 3657 col 3658   col 3659
## 1658      1.2      126        1        0      Yes        1       60 No Holiday
## 3485      0.5      117        4        0      Yes        4       66 No Holiday
## 5491      2.5     2770       18        0      Yes       18       55 No Holiday
## 1237      1.6      271       12        0      Yes       12       30 No Holiday
## 5532      1.6      687       11        0      Yes       11       48 No Holiday
## 5201      1.7     1105       16        0      Yes       16       71 No Holiday
##      col 3660 col 3661 col 3662   col 3663 col 3664 col 3665 col 3666 col 3667
## 1658      Yes      Yes      Yes No Holiday        0        1        0   Winter
## 3485      Yes      Yes      Yes No Holiday        0        4        0   Spring
## 5491      Yes      Yes      Yes No Holiday        0       18        0   Summer
## 1237      Yes      Yes      Yes No Holiday        0       12        0   Winter
## 5532      Yes      Yes      Yes No Holiday        0       11        0   Summer
## 5201      Yes      Yes      Yes No Holiday        0       16        0   Summer
##      col 3668 col 3669   col 3670   col 3671 col 3672 col 3673 col 3674
## 1658      Yes      126   8/2/2018 No Holiday     1908      Yes    -14.8
## 3485      Yes      117 25/04/2018 No Holiday     2000      Yes      0.4
## 5491      Yes     2770 17/07/2018 No Holiday     1550      Yes     21.1
## 1237      Yes      271 21/01/2018 No Holiday     1085      Yes    -12.1
## 5532      Yes      687 19/07/2018 No Holiday     1705      Yes     18.4
## 5201      Yes     1105   5/7/2018 No Holiday     2000      Yes     22.4
##      col 3675 col 3676 col 3677 col 3678 col 3679 col 3680 col 3681 col 3682
## 1658     1908    -14.8      126    -14.8    -14.8    -14.8     0.00   Winter
## 3485     2000      0.4      117      0.4      0.4      0.4     0.00   Spring
## 5491     1550     21.1     2770     21.1     21.1     21.1     1.20   Summer
## 1237     1085    -12.1      271    -12.1    -12.1    -12.1     0.91   Winter
## 5532     1705     18.4      687     18.4     18.4     18.4     2.92   Summer
## 5201     2000     22.4     1105     22.4     22.4     22.4     0.96   Summer
##      col 3683   col 3684 col 3685 col 3686 col 3687 col 3688 col 3689 col 3690
## 1658      126   8/2/2018     0.00     -8.5   Winter        0      126        0
## 3485      117 25/04/2018     0.00      6.4   Spring        0      117        0
## 5491     2770 17/07/2018     1.20     31.3   Summer        0     2770        0
## 1237      271 21/01/2018     0.91      3.9   Winter        0      271        0
## 5532      687 19/07/2018     2.92     30.7   Summer        0      687        0
## 5201     1105   5/7/2018     0.96     28.2   Summer        0     1105        0
##      col 3691   col 3692   col 3693 col 3694 col 3695 col 3696   col 3697
## 1658      1.2   8/2/2018   8/2/2018     0.00     0.00      1.2   8/2/2018
## 3485      0.5 25/04/2018 25/04/2018     0.00     0.00      0.5 25/04/2018
## 5491      2.5 17/07/2018 17/07/2018     1.20     1.20      2.5 17/07/2018
## 1237      1.6 21/01/2018 21/01/2018     0.91     0.91      1.6 21/01/2018
## 5532      1.6 19/07/2018 19/07/2018     2.92     2.92      1.6 19/07/2018
## 5201      1.7   5/7/2018   5/7/2018     0.96     0.96      1.7   5/7/2018
##      col 3698 col 3699 col 3700 col 3701 col 3702 col 3703 col 3704 col 3705
## 1658     1908      126      1.2      Yes     -8.5      126        1      1.2
## 3485     2000      117      0.5      Yes      6.4      117        4      0.5
## 5491     1550     2770      2.5      Yes     31.3     2770       18      2.5
## 1237     1085      271      1.6      Yes      3.9      271       12      1.6
## 5532     1705      687      1.6      Yes     30.7      687       11      1.6
## 5201     2000     1105      1.7      Yes     28.2     1105       16      1.7
##      col 3706 col 3707   col 3708 col 3709 col 3710 col 3711 col 3712
## 1658     1908        0 No Holiday      1.2      1.2        1        0
## 3485     2000        0 No Holiday      0.5      0.5        4        0
## 5491     1550        0 No Holiday      2.5      2.5       18        0
## 1237     1085        0 No Holiday      1.6      1.6       12        0
## 5532     1705        0 No Holiday      1.6      1.6       11        0
## 5201     2000        0 No Holiday      1.7      1.7       16        0
##        col 3713   col 3714 col 3715 col 3716 col 3717 col 3718 col 3719
## 1658   8/2/2018 No Holiday     -8.5        0        0    -14.8        0
## 3485 25/04/2018 No Holiday      6.4        0        0      0.4        0
## 5491 17/07/2018 No Holiday     31.3        0        0     21.1        0
## 1237 21/01/2018 No Holiday      3.9        0        0    -12.1        0
## 5532 19/07/2018 No Holiday     30.7        0        0     18.4        0
## 5201   5/7/2018 No Holiday     28.2        0        0     22.4        0
##      col 3720 col 3721 col 3722 col 3723 col 3724 col 3725 col 3726   col 3727
## 1658      Yes      1.2     1908    -14.8     1908      126      126 No Holiday
## 3485      Yes      0.5     2000      0.4     2000      117      117 No Holiday
## 5491      Yes      2.5     1550     21.1     1550     2770     2770 No Holiday
## 1237      Yes      1.6     1085    -12.1     1085      271      271 No Holiday
## 5532      Yes      1.6     1705     18.4     1705      687      687 No Holiday
## 5201      Yes      1.7     2000     22.4     2000     1105     1105 No Holiday
##      col 3728 col 3729 col 3730 col 3731 col 3732 col 3733 col 3734 col 3735
## 1658      126    -14.8        0      126      Yes    -14.8    -14.8      1.2
## 3485      117      0.4        0      117      Yes      0.4      0.4      0.5
## 5491     2770     21.1        0     2770      Yes     21.1     21.1      2.5
## 1237      271    -12.1        0      271      Yes    -12.1    -12.1      1.6
## 5532      687     18.4        0      687      Yes     18.4     18.4      1.6
## 5201     1105     22.4        0     1105      Yes     22.4     22.4      1.7
##      col 3736 col 3737 col 3738   col 3739 col 3740 col 3741 col 3742 col 3743
## 1658     -8.5      1.2      126 No Holiday      1.2        1       60       60
## 3485      6.4      0.5      117 No Holiday      0.5        4       66       66
## 5491     31.3      2.5     2770 No Holiday      2.5       18       55       55
## 1237      3.9      1.6      271 No Holiday      1.6       12       30       30
## 5532     30.7      1.6      687 No Holiday      1.6       11       48       48
## 5201     28.2      1.7     1105 No Holiday      1.7       16       71       71
##      col 3744 col 3745 col 3746 col 3747 col 3748 col 3749 col 3750 col 3751
## 1658      126        1        1     1908     0.00    -14.8     -8.5        0
## 3485      117        4        4     2000     0.00      0.4      6.4        0
## 5491     2770       18       18     1550     1.20     21.1     31.3        0
## 1237      271       12       12     1085     0.91    -12.1      3.9        0
## 5532      687       11       11     1705     2.92     18.4     30.7        0
## 5201     1105       16       16     2000     0.96     22.4     28.2        0
##      col 3752   col 3753 col 3754 col 3755 col 3756 col 3757 col 3758 col 3759
## 1658     -8.5   8/2/2018     0.00      1.2      126    -14.8        1      1.2
## 3485      6.4 25/04/2018     0.00      0.5      117      0.4        4      0.5
## 5491     31.3 17/07/2018     1.20      2.5     2770     21.1       18      2.5
## 1237      3.9 21/01/2018     0.91      1.6      271    -12.1       12      1.6
## 5532     30.7 19/07/2018     2.92      1.6      687     18.4       11      1.6
## 5201     28.2   5/7/2018     0.96      1.7     1105     22.4       16      1.7
##      col 3760 col 3761   col 3762 col 3763 col 3764 col 3765 col 3766
## 1658      126     0.00 No Holiday        0        0      Yes        0
## 3485      117     0.00 No Holiday        0        0      Yes        0
## 5491     2770     1.20 No Holiday        0        0      Yes        0
## 1237      271     0.91 No Holiday        0        0      Yes        0
## 5532      687     2.92 No Holiday        0        0      Yes        0
## 5201     1105     0.96 No Holiday        0        0      Yes        0
##        col 3767 col 3768   col 3769 col 3770 col 3771 col 3772 col 3773
## 1658 No Holiday    -14.8   8/2/2018      126     1908     1908     0.00
## 3485 No Holiday      0.4 25/04/2018      117     2000     2000     0.00
## 5491 No Holiday     21.1 17/07/2018     2770     1550     1550     1.20
## 1237 No Holiday    -12.1 21/01/2018      271     1085     1085     0.91
## 5532 No Holiday     18.4 19/07/2018      687     1705     1705     2.92
## 5201 No Holiday     22.4   5/7/2018     1105     2000     2000     0.96
##      col 3774   col 3775 col 3776 col 3777 col 3778 col 3779 col 3780 col 3781
## 1658     -8.5 No Holiday       60     1908      1.2      1.2      126      Yes
## 3485      6.4 No Holiday       66     2000      0.5      0.5      117      Yes
## 5491     31.3 No Holiday       55     1550      2.5      2.5     2770      Yes
## 1237      3.9 No Holiday       30     1085      1.6      1.6      271      Yes
## 5532     30.7 No Holiday       48     1705      1.6      1.6      687      Yes
## 5201     28.2 No Holiday       71     2000      1.7      1.7     1105      Yes
##      col 3782 col 3783 col 3784 col 3785 col 3786 col 3787   col 3788 col 3789
## 1658        0      1.2     0.00      1.2        0      126 No Holiday      126
## 3485        0      0.5     0.00      0.5        0      117 No Holiday      117
## 5491        0      2.5     1.20      2.5        0     2770 No Holiday     2770
## 1237        0      1.6     0.91      1.6        0      271 No Holiday      271
## 5532        0      1.6     2.92      1.6        0      687 No Holiday      687
## 5201        0      1.7     0.96      1.7        0     1105 No Holiday     1105
##      col 3790 col 3791 col 3792 col 3793 col 3794   col 3795 col 3796 col 3797
## 1658    -14.8        1     0.00        0     -8.5   8/2/2018     0.00      Yes
## 3485      0.4        4     0.00        0      6.4 25/04/2018     0.00      Yes
## 5491     21.1       18     1.20        0     31.3 17/07/2018     1.20      Yes
## 1237    -12.1       12     0.91        0      3.9 21/01/2018     0.91      Yes
## 5532     18.4       11     2.92        0     30.7 19/07/2018     2.92      Yes
## 5201     22.4       16     0.96        0     28.2   5/7/2018     0.96      Yes
##      col 3798   col 3799 col 3800 col 3801 col 3802 col 3803 col 3804
## 1658      1.2 No Holiday      Yes     -8.5      1.2    -14.8      126
## 3485      0.5 No Holiday      Yes      6.4      0.5      0.4      117
## 5491      2.5 No Holiday      Yes     31.3      2.5     21.1     2770
## 1237      1.6 No Holiday      Yes      3.9      1.6    -12.1      271
## 5532      1.6 No Holiday      Yes     30.7      1.6     18.4      687
## 5201      1.7 No Holiday      Yes     28.2      1.7     22.4     1105
##        col 3805 col 3806 col 3807 col 3808 col 3809 col 3810 col 3811 col 3812
## 1658 No Holiday     -8.5     0.00      1.2        0      1.2      Yes      Yes
## 3485 No Holiday      6.4     0.00      0.5        0      0.5      Yes      Yes
## 5491 No Holiday     31.3     1.20      2.5        0      2.5      Yes      Yes
## 1237 No Holiday      3.9     0.91      1.6        0      1.6      Yes      Yes
## 5532 No Holiday     30.7     2.92      1.6        0      1.6      Yes      Yes
## 5201 No Holiday     28.2     0.96      1.7        0      1.7      Yes      Yes
##      col 3813 col 3814 col 3815   col 3816   col 3817   col 3818   col 3819
## 1658   Winter      Yes        1   8/2/2018 No Holiday   8/2/2018   8/2/2018
## 3485   Spring      Yes        4 25/04/2018 No Holiday 25/04/2018 25/04/2018
## 5491   Summer      Yes       18 17/07/2018 No Holiday 17/07/2018 17/07/2018
## 1237   Winter      Yes       12 21/01/2018 No Holiday 21/01/2018 21/01/2018
## 5532   Summer      Yes       11 19/07/2018 No Holiday 19/07/2018 19/07/2018
## 5201   Summer      Yes       16   5/7/2018 No Holiday   5/7/2018   5/7/2018
##      col 3820 col 3821 col 3822 col 3823 col 3824 col 3825 col 3826 col 3827
## 1658     0.00      Yes     1908        1    -14.8      126       60    -14.8
## 3485     0.00      Yes     2000        4      0.4      117       66      0.4
## 5491     1.20      Yes     1550       18     21.1     2770       55     21.1
## 1237     0.91      Yes     1085       12    -12.1      271       30    -12.1
## 5532     2.92      Yes     1705       11     18.4      687       48     18.4
## 5201     0.96      Yes     2000       16     22.4     1105       71     22.4
##      col 3828 col 3829 col 3830 col 3831 col 3832 col 3833 col 3834 col 3835
## 1658      Yes     0.00     0.00        0   Winter     1908     0.00      1.2
## 3485      Yes     0.00     0.00        0   Spring     2000     0.00      0.5
## 5491      Yes     1.20     1.20        0   Summer     1550     1.20      2.5
## 1237      Yes     0.91     0.91        0   Winter     1085     0.91      1.6
## 5532      Yes     2.92     2.92        0   Summer     1705     2.92      1.6
## 5201      Yes     0.96     0.96        0   Summer     2000     0.96      1.7
##      col 3836 col 3837 col 3838 col 3839   col 3840 col 3841 col 3842 col 3843
## 1658        0        1        0        1 No Holiday        1     -8.5      126
## 3485        0        4        0        4 No Holiday        4      6.4      117
## 5491        0       18        0       18 No Holiday       18     31.3     2770
## 1237        0       12        0       12 No Holiday       12      3.9      271
## 5532        0       11        0       11 No Holiday       11     30.7      687
## 5201        0       16        0       16 No Holiday       16     28.2     1105
##      col 3844 col 3845   col 3846 col 3847 col 3848 col 3849   col 3850
## 1658    -14.8       60 No Holiday       60      126        1   8/2/2018
## 3485      0.4       66 No Holiday       66      117        4 25/04/2018
## 5491     21.1       55 No Holiday       55     2770       18 17/07/2018
## 1237    -12.1       30 No Holiday       30      271       12 21/01/2018
## 5532     18.4       48 No Holiday       48      687       11 19/07/2018
## 5201     22.4       71 No Holiday       71     1105       16   5/7/2018
##      col 3851 col 3852 col 3853 col 3854 col 3855 col 3856 col 3857 col 3858
## 1658       60    -14.8    -14.8       60       60    -14.8   Winter      Yes
## 3485       66      0.4      0.4       66       66      0.4   Spring      Yes
## 5491       55     21.1     21.1       55       55     21.1   Summer      Yes
## 1237       30    -12.1    -12.1       30       30    -12.1   Winter      Yes
## 5532       48     18.4     18.4       48       48     18.4   Summer      Yes
## 5201       71     22.4     22.4       71       71     22.4   Summer      Yes
##      col 3859   col 3860 col 3861 col 3862   col 3863 col 3864 col 3865
## 1658        1   8/2/2018      126      Yes   8/2/2018     -8.5     0.00
## 3485        4 25/04/2018      117      Yes 25/04/2018      6.4     0.00
## 5491       18 17/07/2018     2770      Yes 17/07/2018     31.3     1.20
## 1237       12 21/01/2018      271      Yes 21/01/2018      3.9     0.91
## 5532       11 19/07/2018      687      Yes 19/07/2018     30.7     2.92
## 5201       16   5/7/2018     1105      Yes   5/7/2018     28.2     0.96
##      col 3866 col 3867 col 3868 col 3869 col 3870 col 3871 col 3872 col 3873
## 1658      1.2        0      Yes     -8.5     -8.5      126       60      Yes
## 3485      0.5        0      Yes      6.4      6.4      117       66      Yes
## 5491      2.5        0      Yes     31.3     31.3     2770       55      Yes
## 1237      1.6        0      Yes      3.9      3.9      271       30      Yes
## 5532      1.6        0      Yes     30.7     30.7      687       48      Yes
## 5201      1.7        0      Yes     28.2     28.2     1105       71      Yes
##      col 3874 col 3875 col 3876   col 3877 col 3878 col 3879 col 3880 col 3881
## 1658    -14.8      1.2      1.2   8/2/2018        0     1908     0.00      1.2
## 3485      0.4      0.5      0.5 25/04/2018        0     2000     0.00      0.5
## 5491     21.1      2.5      2.5 17/07/2018        0     1550     1.20      2.5
## 1237    -12.1      1.6      1.6 21/01/2018        0     1085     0.91      1.6
## 5532     18.4      1.6      1.6 19/07/2018        0     1705     2.92      1.6
## 5201     22.4      1.7      1.7   5/7/2018        0     2000     0.96      1.7
##      col 3882 col 3883 col 3884   col 3885 col 3886 col 3887 col 3888 col 3889
## 1658     -8.5       60      126 No Holiday      126        1      126        0
## 3485      6.4       66      117 No Holiday      117        4      117        0
## 5491     31.3       55     2770 No Holiday     2770       18     2770        0
## 1237      3.9       30      271 No Holiday      271       12      271        0
## 5532     30.7       48      687 No Holiday      687       11      687        0
## 5201     28.2       71     1105 No Holiday     1105       16     1105        0
##      col 3890 col 3891 col 3892 col 3893 col 3894 col 3895 col 3896 col 3897
## 1658    -14.8     -8.5      126      126       60     0.00     -8.5     1908
## 3485      0.4      6.4      117      117       66     0.00      6.4     2000
## 5491     21.1     31.3     2770     2770       55     1.20     31.3     1550
## 1237    -12.1      3.9      271      271       30     0.91      3.9     1085
## 5532     18.4     30.7      687      687       48     2.92     30.7     1705
## 5201     22.4     28.2     1105     1105       71     0.96     28.2     2000
##      col 3898 col 3899 col 3900   col 3901 col 3902   col 3903   col 3904
## 1658        1     0.00        1   8/2/2018      126 No Holiday   8/2/2018
## 3485        4     0.00        4 25/04/2018      117 No Holiday 25/04/2018
## 5491       18     1.20       18 17/07/2018     2770 No Holiday 17/07/2018
## 1237       12     0.91       12 21/01/2018      271 No Holiday 21/01/2018
## 5532       11     2.92       11 19/07/2018      687 No Holiday 19/07/2018
## 5201       16     0.96       16   5/7/2018     1105 No Holiday   5/7/2018
##        col 3905 col 3906 col 3907 col 3908   col 3909 col 3910 col 3911
## 1658 No Holiday     0.00        0      1.2 No Holiday      Yes      126
## 3485 No Holiday     0.00        0      0.5 No Holiday      Yes      117
## 5491 No Holiday     1.20        0      2.5 No Holiday      Yes     2770
## 1237 No Holiday     0.91        0      1.6 No Holiday      Yes      271
## 5532 No Holiday     2.92        0      1.6 No Holiday      Yes      687
## 5201 No Holiday     0.96        0      1.7 No Holiday      Yes     1105
##      col 3912 col 3913 col 3914 col 3915   col 3916 col 3917 col 3918 col 3919
## 1658     -8.5      1.2       60     1908 No Holiday     1908   Winter      126
## 3485      6.4      0.5       66     2000 No Holiday     2000   Spring      117
## 5491     31.3      2.5       55     1550 No Holiday     1550   Summer     2770
## 1237      3.9      1.6       30     1085 No Holiday     1085   Winter      271
## 5532     30.7      1.6       48     1705 No Holiday     1705   Summer      687
## 5201     28.2      1.7       71     2000 No Holiday     2000   Summer     1105
##      col 3920   col 3921 col 3922   col 3923 col 3924 col 3925 col 3926
## 1658       60   8/2/2018     -8.5 No Holiday   Winter        0      126
## 3485       66 25/04/2018      6.4 No Holiday   Spring        0      117
## 5491       55 17/07/2018     31.3 No Holiday   Summer        0     2770
## 1237       30 21/01/2018      3.9 No Holiday   Winter        0      271
## 5532       48 19/07/2018     30.7 No Holiday   Summer        0      687
## 5201       71   5/7/2018     28.2 No Holiday   Summer        0     1105
##      col 3927 col 3928 col 3929 col 3930 col 3931 col 3932 col 3933   col 3934
## 1658        0   Winter        1   Winter      126       60      Yes   8/2/2018
## 3485        0   Spring        4   Spring      117       66      Yes 25/04/2018
## 5491        0   Summer       18   Summer     2770       55      Yes 17/07/2018
## 1237        0   Winter       12   Winter      271       30      Yes 21/01/2018
## 5532        0   Summer       11   Summer      687       48      Yes 19/07/2018
## 5201        0   Summer       16   Summer     1105       71      Yes   5/7/2018
##      col 3935 col 3936 col 3937 col 3938 col 3939 col 3940 col 3941 col 3942
## 1658        1      Yes        0      Yes      126       60        1   Winter
## 3485        4      Yes        0      Yes      117       66        4   Spring
## 5491       18      Yes        0      Yes     2770       55       18   Summer
## 1237       12      Yes        0      Yes      271       30       12   Winter
## 5532       11      Yes        0      Yes      687       48       11   Summer
## 5201       16      Yes        0      Yes     1105       71       16   Summer
##      col 3943 col 3944 col 3945   col 3946 col 3947 col 3948 col 3949 col 3950
## 1658      Yes      126    -14.8 No Holiday        0   Winter    -14.8      126
## 3485      Yes      117      0.4 No Holiday        0   Spring      0.4      117
## 5491      Yes     2770     21.1 No Holiday        0   Summer     21.1     2770
## 1237      Yes      271    -12.1 No Holiday        0   Winter    -12.1      271
## 5532      Yes      687     18.4 No Holiday        0   Summer     18.4      687
## 5201      Yes     1105     22.4 No Holiday        0   Summer     22.4     1105
##      col 3951 col 3952 col 3953 col 3954 col 3955 col 3956 col 3957 col 3958
## 1658       60      Yes   Winter     0.00      1.2   Winter     1908      126
## 3485       66      Yes   Spring     0.00      0.5   Spring     2000      117
## 5491       55      Yes   Summer     1.20      2.5   Summer     1550     2770
## 1237       30      Yes   Winter     0.91      1.6   Winter     1085      271
## 5532       48      Yes   Summer     2.92      1.6   Summer     1705      687
## 5201       71      Yes   Summer     0.96      1.7   Summer     2000     1105
##      col 3959 col 3960 col 3961 col 3962 col 3963 col 3964 col 3965 col 3966
## 1658     0.00        1      126    -14.8      Yes       60     -8.5        1
## 3485     0.00        4      117      0.4      Yes       66      6.4        4
## 5491     1.20       18     2770     21.1      Yes       55     31.3       18
## 1237     0.91       12      271    -12.1      Yes       30      3.9       12
## 5532     2.92       11      687     18.4      Yes       48     30.7       11
## 5201     0.96       16     1105     22.4      Yes       71     28.2       16
##      col 3967   col 3968 col 3969 col 3970 col 3971 col 3972 col 3973 col 3974
## 1658        1   8/2/2018      1.2      Yes        0      Yes        1     0.00
## 3485        4 25/04/2018      0.5      Yes        0      Yes        4     0.00
## 5491       18 17/07/2018      2.5      Yes        0      Yes       18     1.20
## 1237       12 21/01/2018      1.6      Yes        0      Yes       12     0.91
## 5532       11 19/07/2018      1.6      Yes        0      Yes       11     2.92
## 5201       16   5/7/2018      1.7      Yes        0      Yes       16     0.96
##      col 3975 col 3976 col 3977 col 3978 col 3979 col 3980 col 3981 col 3982
## 1658      Yes        0   Winter      Yes        0      126      1.2     1908
## 3485      Yes        0   Spring      Yes        0      117      0.5     2000
## 5491      Yes        0   Summer      Yes        0     2770      2.5     1550
## 1237      Yes        0   Winter      Yes        0      271      1.6     1085
## 5532      Yes        0   Summer      Yes        0      687      1.6     1705
## 5201      Yes        0   Summer      Yes        0     1105      1.7     2000
##      col 3983 col 3984   col 3985 col 3986 col 3987 col 3988 col 3989 col 3990
## 1658        0     -8.5 No Holiday        0     0.00      Yes     1908      Yes
## 3485        0      6.4 No Holiday        0     0.00      Yes     2000      Yes
## 5491        0     31.3 No Holiday        0     1.20      Yes     1550      Yes
## 1237        0      3.9 No Holiday        0     0.91      Yes     1085      Yes
## 5532        0     30.7 No Holiday        0     2.92      Yes     1705      Yes
## 5201        0     28.2 No Holiday        0     0.96      Yes     2000      Yes
##      col 3991 col 3992 col 3993 col 3994 col 3995 col 3996 col 3997 col 3998
## 1658      126   Winter    -14.8     1908     -8.5        0      1.2      Yes
## 3485      117   Spring      0.4     2000      6.4        0      0.5      Yes
## 5491     2770   Summer     21.1     1550     31.3        0      2.5      Yes
## 1237      271   Winter    -12.1     1085      3.9        0      1.6      Yes
## 5532      687   Summer     18.4     1705     30.7        0      1.6      Yes
## 5201     1105   Summer     22.4     2000     28.2        0      1.7      Yes
##      col 3999   col 4000 col 4001 col 4002 col 4003 col 4004 col 4005 col 4006
## 1658      126 No Holiday     -8.5        0        1        1     -8.5       60
## 3485      117 No Holiday      6.4        0        4        4      6.4       66
## 5491     2770 No Holiday     31.3        0       18       18     31.3       55
## 1237      271 No Holiday      3.9        0       12       12      3.9       30
## 5532      687 No Holiday     30.7        0       11       11     30.7       48
## 5201     1105 No Holiday     28.2        0       16       16     28.2       71
##        col 4007 col 4008 col 4009 col 4010 col 4011 col 4012 col 4013 col 4014
## 1658   8/2/2018     1908     -8.5        1        0   Winter   Winter        0
## 3485 25/04/2018     2000      6.4        4        0   Spring   Spring        0
## 5491 17/07/2018     1550     31.3       18        0   Summer   Summer        0
## 1237 21/01/2018     1085      3.9       12        0   Winter   Winter        0
## 5532 19/07/2018     1705     30.7       11        0   Summer   Summer        0
## 5201   5/7/2018     2000     28.2       16        0   Summer   Summer        0
##      col 4015 col 4016 col 4017 col 4018 col 4019 col 4020 col 4021 col 4022
## 1658      Yes    -14.8      126      Yes      126     0.00      1.2     1908
## 3485      Yes      0.4      117      Yes      117     0.00      0.5     2000
## 5491      Yes     21.1     2770      Yes     2770     1.20      2.5     1550
## 1237      Yes    -12.1      271      Yes      271     0.91      1.6     1085
## 5532      Yes     18.4      687      Yes      687     2.92      1.6     1705
## 5201      Yes     22.4     1105      Yes     1105     0.96      1.7     2000
##      col 4023 col 4024 col 4025 col 4026 col 4027 col 4028 col 4029 col 4030
## 1658      1.2        0      1.2     0.00        1        1   Winter   Winter
## 3485      0.5        0      0.5     0.00        4        4   Spring   Spring
## 5491      2.5        0      2.5     1.20       18       18   Summer   Summer
## 1237      1.6        0      1.6     0.91       12       12   Winter   Winter
## 5532      1.6        0      1.6     2.92       11       11   Summer   Summer
## 5201      1.7        0      1.7     0.96       16       16   Summer   Summer
##      col 4031 col 4032   col 4033 col 4034   col 4035 col 4036 col 4037
## 1658     -8.5        0   8/2/2018       60 No Holiday      Yes     1908
## 3485      6.4        0 25/04/2018       66 No Holiday      Yes     2000
## 5491     31.3        0 17/07/2018       55 No Holiday      Yes     1550
## 1237      3.9        0 21/01/2018       30 No Holiday      Yes     1085
## 5532     30.7        0 19/07/2018       48 No Holiday      Yes     1705
## 5201     28.2        0   5/7/2018       71 No Holiday      Yes     2000
##      col 4038 col 4039 col 4040 col 4041 col 4042 col 4043 col 4044 col 4045
## 1658        0    -14.8     1908        0      126      1.2    -14.8     1908
## 3485        0      0.4     2000        0      117      0.5      0.4     2000
## 5491        0     21.1     1550        0     2770      2.5     21.1     1550
## 1237        0    -12.1     1085        0      271      1.6    -12.1     1085
## 5532        0     18.4     1705        0      687      1.6     18.4     1705
## 5201        0     22.4     2000        0     1105      1.7     22.4     2000
##      col 4046 col 4047 col 4048 col 4049 col 4050 col 4051 col 4052 col 4053
## 1658      Yes      Yes      1.2     0.00       60        0        1      126
## 3485      Yes      Yes      0.5     0.00       66        0        4      117
## 5491      Yes      Yes      2.5     1.20       55        0       18     2770
## 1237      Yes      Yes      1.6     0.91       30        0       12      271
## 5532      Yes      Yes      1.6     2.92       48        0       11      687
## 5201      Yes      Yes      1.7     0.96       71        0       16     1105
##      col 4054 col 4055 col 4056 col 4057 col 4058 col 4059 col 4060 col 4061
## 1658      Yes     -8.5     -8.5        0      1.2    -14.8       60    -14.8
## 3485      Yes      6.4      6.4        0      0.5      0.4       66      0.4
## 5491      Yes     31.3     31.3        0      2.5     21.1       55     21.1
## 1237      Yes      3.9      3.9        0      1.6    -12.1       30    -12.1
## 5532      Yes     30.7     30.7        0      1.6     18.4       48     18.4
## 5201      Yes     28.2     28.2        0      1.7     22.4       71     22.4
##      col 4062 col 4063 col 4064 col 4065 col 4066 col 4067   col 4068 col 4069
## 1658       60   Winter        0     0.00      126     0.00 No Holiday        0
## 3485       66   Spring        0     0.00      117     0.00 No Holiday        0
## 5491       55   Summer        0     1.20     2770     1.20 No Holiday        0
## 1237       30   Winter        0     0.91      271     0.91 No Holiday        0
## 5532       48   Summer        0     2.92      687     2.92 No Holiday        0
## 5201       71   Summer        0     0.96     1105     0.96 No Holiday        0
##      col 4070 col 4071 col 4072 col 4073 col 4074   col 4075 col 4076
## 1658     1908        1    -14.8     -8.5   Winter No Holiday     -8.5
## 3485     2000        4      0.4      6.4   Spring No Holiday      6.4
## 5491     1550       18     21.1     31.3   Summer No Holiday     31.3
## 1237     1085       12    -12.1      3.9   Winter No Holiday      3.9
## 5532     1705       11     18.4     30.7   Summer No Holiday     30.7
## 5201     2000       16     22.4     28.2   Summer No Holiday     28.2
##        col 4077 col 4078 col 4079 col 4080 col 4081 col 4082 col 4083 col 4084
## 1658   8/2/2018       60      1.2    -14.8     0.00   Winter     1908        1
## 3485 25/04/2018       66      0.5      0.4     0.00   Spring     2000        4
## 5491 17/07/2018       55      2.5     21.1     1.20   Summer     1550       18
## 1237 21/01/2018       30      1.6    -12.1     0.91   Winter     1085       12
## 5532 19/07/2018       48      1.6     18.4     2.92   Summer     1705       11
## 5201   5/7/2018       71      1.7     22.4     0.96   Summer     2000       16
##      col 4085 col 4086 col 4087 col 4088   col 4089 col 4090 col 4091 col 4092
## 1658        0      Yes        1        1   8/2/2018    -14.8     0.00     0.00
## 3485        0      Yes        4        4 25/04/2018      0.4     0.00     0.00
## 5491        0      Yes       18       18 17/07/2018     21.1     1.20     1.20
## 1237        0      Yes       12       12 21/01/2018    -12.1     0.91     0.91
## 5532        0      Yes       11       11 19/07/2018     18.4     2.92     2.92
## 5201        0      Yes       16       16   5/7/2018     22.4     0.96     0.96
##      col 4093 col 4094 col 4095 col 4096 col 4097   col 4098 col 4099 col 4100
## 1658      126        0     -8.5      1.2       60   8/2/2018     0.00      1.2
## 3485      117        0      6.4      0.5       66 25/04/2018     0.00      0.5
## 5491     2770        0     31.3      2.5       55 17/07/2018     1.20      2.5
## 1237      271        0      3.9      1.6       30 21/01/2018     0.91      1.6
## 5532      687        0     30.7      1.6       48 19/07/2018     2.92      1.6
## 5201     1105        0     28.2      1.7       71   5/7/2018     0.96      1.7
##      col 4101   col 4102 col 4103 col 4104 col 4105 col 4106 col 4107
## 1658     -8.5 No Holiday       60     0.00    -14.8     -8.5        0
## 3485      6.4 No Holiday       66     0.00      0.4      6.4        0
## 5491     31.3 No Holiday       55     1.20     21.1     31.3        0
## 1237      3.9 No Holiday       30     0.91    -12.1      3.9        0
## 5532     30.7 No Holiday       48     2.92     18.4     30.7        0
## 5201     28.2 No Holiday       71     0.96     22.4     28.2        0
##        col 4108 col 4109 col 4110 col 4111   col 4112 col 4113 col 4114
## 1658   8/2/2018     -8.5        0      126 No Holiday      Yes     1908
## 3485 25/04/2018      6.4        0      117 No Holiday      Yes     2000
## 5491 17/07/2018     31.3        0     2770 No Holiday      Yes     1550
## 1237 21/01/2018      3.9        0      271 No Holiday      Yes     1085
## 5532 19/07/2018     30.7        0      687 No Holiday      Yes     1705
## 5201   5/7/2018     28.2        0     1105 No Holiday      Yes     2000
##      col 4115 col 4116   col 4117   col 4118 col 4119 col 4120   col 4121
## 1658        0    -14.8   8/2/2018   8/2/2018      1.2     -8.5   8/2/2018
## 3485        0      0.4 25/04/2018 25/04/2018      0.5      6.4 25/04/2018
## 5491        0     21.1 17/07/2018 17/07/2018      2.5     31.3 17/07/2018
## 1237        0    -12.1 21/01/2018 21/01/2018      1.6      3.9 21/01/2018
## 5532        0     18.4 19/07/2018 19/07/2018      1.6     30.7 19/07/2018
## 5201        0     22.4   5/7/2018   5/7/2018      1.7     28.2   5/7/2018
##        col 4122 col 4123 col 4124 col 4125 col 4126 col 4127 col 4128
## 1658 No Holiday       60     1908        0        0    -14.8      Yes
## 3485 No Holiday       66     2000        0        0      0.4      Yes
## 5491 No Holiday       55     1550        0        0     21.1      Yes
## 1237 No Holiday       30     1085        0        0    -12.1      Yes
## 5532 No Holiday       48     1705        0        0     18.4      Yes
## 5201 No Holiday       71     2000        0        0     22.4      Yes
##        col 4129 col 4130 col 4131 col 4132 col 4133 col 4134 col 4135 col 4136
## 1658   8/2/2018     0.00      1.2      Yes      126    -14.8     -8.5      126
## 3485 25/04/2018     0.00      0.5      Yes      117      0.4      6.4      117
## 5491 17/07/2018     1.20      2.5      Yes     2770     21.1     31.3     2770
## 1237 21/01/2018     0.91      1.6      Yes      271    -12.1      3.9      271
## 5532 19/07/2018     2.92      1.6      Yes      687     18.4     30.7      687
## 5201   5/7/2018     0.96      1.7      Yes     1105     22.4     28.2     1105
##      col 4137 col 4138 col 4139 col 4140   col 4141   col 4142 col 4143
## 1658     1908      Yes   Winter      Yes No Holiday   8/2/2018     0.00
## 3485     2000      Yes   Spring      Yes No Holiday 25/04/2018     0.00
## 5491     1550      Yes   Summer      Yes No Holiday 17/07/2018     1.20
## 1237     1085      Yes   Winter      Yes No Holiday 21/01/2018     0.91
## 5532     1705      Yes   Summer      Yes No Holiday 19/07/2018     2.92
## 5201     2000      Yes   Summer      Yes No Holiday   5/7/2018     0.96
##      col 4144 col 4145 col 4146 col 4147 col 4148 col 4149 col 4150 col 4151
## 1658   Winter        0   Winter     1908       60     0.00        0   Winter
## 3485   Spring        0   Spring     2000       66     0.00        0   Spring
## 5491   Summer        0   Summer     1550       55     1.20        0   Summer
## 1237   Winter        0   Winter     1085       30     0.91        0   Winter
## 5532   Summer        0   Summer     1705       48     2.92        0   Summer
## 5201   Summer        0   Summer     2000       71     0.96        0   Summer
##      col 4152 col 4153 col 4154 col 4155 col 4156   col 4157 col 4158 col 4159
## 1658        1    -14.8       60      126     0.00 No Holiday   Winter      Yes
## 3485        4      0.4       66      117     0.00 No Holiday   Spring      Yes
## 5491       18     21.1       55     2770     1.20 No Holiday   Summer      Yes
## 1237       12    -12.1       30      271     0.91 No Holiday   Winter      Yes
## 5532       11     18.4       48      687     2.92 No Holiday   Summer      Yes
## 5201       16     22.4       71     1105     0.96 No Holiday   Summer      Yes
##      col 4160 col 4161 col 4162 col 4163 col 4164 col 4165 col 4166 col 4167
## 1658      1.2       60    -14.8     0.00       60       60      Yes      Yes
## 3485      0.5       66      0.4     0.00       66       66      Yes      Yes
## 5491      2.5       55     21.1     1.20       55       55      Yes      Yes
## 1237      1.6       30    -12.1     0.91       30       30      Yes      Yes
## 5532      1.6       48     18.4     2.92       48       48      Yes      Yes
## 5201      1.7       71     22.4     0.96       71       71      Yes      Yes
##      col 4168 col 4169 col 4170 col 4171 col 4172 col 4173 col 4174   col 4175
## 1658        1     1908       60    -14.8     1908        1     0.00 No Holiday
## 3485        4     2000       66      0.4     2000        4     0.00 No Holiday
## 5491       18     1550       55     21.1     1550       18     1.20 No Holiday
## 1237       12     1085       30    -12.1     1085       12     0.91 No Holiday
## 5532       11     1705       48     18.4     1705       11     2.92 No Holiday
## 5201       16     2000       71     22.4     2000       16     0.96 No Holiday
##      col 4176 col 4177 col 4178   col 4179 col 4180   col 4181 col 4182
## 1658        0       60       60 No Holiday      126 No Holiday    -14.8
## 3485        0       66       66 No Holiday      117 No Holiday      0.4
## 5491        0       55       55 No Holiday     2770 No Holiday     21.1
## 1237        0       30       30 No Holiday      271 No Holiday    -12.1
## 5532        0       48       48 No Holiday      687 No Holiday     18.4
## 5201        0       71       71 No Holiday     1105 No Holiday     22.4
##      col 4183 col 4184 col 4185 col 4186 col 4187   col 4188 col 4189 col 4190
## 1658        1        0     1908        0   Winter No Holiday      1.2        0
## 3485        4        0     2000        0   Spring No Holiday      0.5        0
## 5491       18        0     1550        0   Summer No Holiday      2.5        0
## 1237       12        0     1085        0   Winter No Holiday      1.6        0
## 5532       11        0     1705        0   Summer No Holiday      1.6        0
## 5201       16        0     2000        0   Summer No Holiday      1.7        0
##      col 4191 col 4192 col 4193 col 4194 col 4195 col 4196 col 4197 col 4198
## 1658        0   Winter      1.2   Winter      Yes      Yes        1      126
## 3485        0   Spring      0.5   Spring      Yes      Yes        4      117
## 5491        0   Summer      2.5   Summer      Yes      Yes       18     2770
## 1237        0   Winter      1.6   Winter      Yes      Yes       12      271
## 5532        0   Summer      1.6   Summer      Yes      Yes       11      687
## 5201        0   Summer      1.7   Summer      Yes      Yes       16     1105
##      col 4199 col 4200 col 4201 col 4202 col 4203 col 4204   col 4205 col 4206
## 1658    -14.8     1908     1908      1.2        0      126   8/2/2018        0
## 3485      0.4     2000     2000      0.5        0      117 25/04/2018        0
## 5491     21.1     1550     1550      2.5        0     2770 17/07/2018        0
## 1237    -12.1     1085     1085      1.6        0      271 21/01/2018        0
## 5532     18.4     1705     1705      1.6        0      687 19/07/2018        0
## 5201     22.4     2000     2000      1.7        0     1105   5/7/2018        0
##        col 4207 col 4208 col 4209 col 4210 col 4211   col 4212   col 4213
## 1658 No Holiday      Yes    -14.8       60        0 No Holiday   8/2/2018
## 3485 No Holiday      Yes      0.4       66        0 No Holiday 25/04/2018
## 5491 No Holiday      Yes     21.1       55        0 No Holiday 17/07/2018
## 1237 No Holiday      Yes    -12.1       30        0 No Holiday 21/01/2018
## 5532 No Holiday      Yes     18.4       48        0 No Holiday 19/07/2018
## 5201 No Holiday      Yes     22.4       71        0 No Holiday   5/7/2018
##      col 4214 col 4215 col 4216 col 4217 col 4218 col 4219 col 4220 col 4221
## 1658      126        0       60      1.2    -14.8      Yes      126     -8.5
## 3485      117        0       66      0.5      0.4      Yes      117      6.4
## 5491     2770        0       55      2.5     21.1      Yes     2770     31.3
## 1237      271        0       30      1.6    -12.1      Yes      271      3.9
## 5532      687        0       48      1.6     18.4      Yes      687     30.7
## 5201     1105        0       71      1.7     22.4      Yes     1105     28.2
##      col 4222 col 4223   col 4224   col 4225 col 4226 col 4227 col 4228
## 1658   Winter    -14.8 No Holiday   8/2/2018     -8.5     1908     1908
## 3485   Spring      0.4 No Holiday 25/04/2018      6.4     2000     2000
## 5491   Summer     21.1 No Holiday 17/07/2018     31.3     1550     1550
## 1237   Winter    -12.1 No Holiday 21/01/2018      3.9     1085     1085
## 5532   Summer     18.4 No Holiday 19/07/2018     30.7     1705     1705
## 5201   Summer     22.4 No Holiday   5/7/2018     28.2     2000     2000
##      col 4229 col 4230 col 4231 col 4232 col 4233   col 4234 col 4235 col 4236
## 1658        0       60     1908      Yes       60   8/2/2018       60       60
## 3485        0       66     2000      Yes       66 25/04/2018       66       66
## 5491        0       55     1550      Yes       55 17/07/2018       55       55
## 1237        0       30     1085      Yes       30 21/01/2018       30       30
## 5532        0       48     1705      Yes       48 19/07/2018       48       48
## 5201        0       71     2000      Yes       71   5/7/2018       71       71
##      col 4237 col 4238 col 4239 col 4240 col 4241 col 4242 col 4243   col 4244
## 1658     -8.5      Yes     0.00      126    -14.8        1     0.00   8/2/2018
## 3485      6.4      Yes     0.00      117      0.4        4     0.00 25/04/2018
## 5491     31.3      Yes     1.20     2770     21.1       18     1.20 17/07/2018
## 1237      3.9      Yes     0.91      271    -12.1       12     0.91 21/01/2018
## 5532     30.7      Yes     2.92      687     18.4       11     2.92 19/07/2018
## 5201     28.2      Yes     0.96     1105     22.4       16     0.96   5/7/2018
##      col 4245 col 4246   col 4247 col 4248 col 4249 col 4250 col 4251 col 4252
## 1658   Winter      126 No Holiday        1        0     1908    -14.8      Yes
## 3485   Spring      117 No Holiday        4        0     2000      0.4      Yes
## 5491   Summer     2770 No Holiday       18        0     1550     21.1      Yes
## 1237   Winter      271 No Holiday       12        0     1085    -12.1      Yes
## 5532   Summer      687 No Holiday       11        0     1705     18.4      Yes
## 5201   Summer     1105 No Holiday       16        0     2000     22.4      Yes
##      col 4253 col 4254 col 4255 col 4256 col 4257 col 4258   col 4259 col 4260
## 1658      Yes       60    -14.8        0      Yes     -8.5   8/2/2018   Winter
## 3485      Yes       66      0.4        0      Yes      6.4 25/04/2018   Spring
## 5491      Yes       55     21.1        0      Yes     31.3 17/07/2018   Summer
## 1237      Yes       30    -12.1        0      Yes      3.9 21/01/2018   Winter
## 5532      Yes       48     18.4        0      Yes     30.7 19/07/2018   Summer
## 5201      Yes       71     22.4        0      Yes     28.2   5/7/2018   Summer
##      col 4261 col 4262 col 4263 col 4264   col 4265 col 4266 col 4267 col 4268
## 1658        0      126    -14.8    -14.8   8/2/2018        0    -14.8       60
## 3485        0      117      0.4      0.4 25/04/2018        0      0.4       66
## 5491        0     2770     21.1     21.1 17/07/2018        0     21.1       55
## 1237        0      271    -12.1    -12.1 21/01/2018        0    -12.1       30
## 5532        0      687     18.4     18.4 19/07/2018        0     18.4       48
## 5201        0     1105     22.4     22.4   5/7/2018        0     22.4       71
##        col 4269 col 4270 col 4271 col 4272 col 4273 col 4274 col 4275 col 4276
## 1658 No Holiday        0      1.2       60   Winter        1        1     0.00
## 3485 No Holiday        0      0.5       66   Spring        4        4     0.00
## 5491 No Holiday        0      2.5       55   Summer       18       18     1.20
## 1237 No Holiday        0      1.6       30   Winter       12       12     0.91
## 5532 No Holiday        0      1.6       48   Summer       11       11     2.92
## 5201 No Holiday        0      1.7       71   Summer       16       16     0.96
##      col 4277 col 4278 col 4279 col 4280 col 4281   col 4282   col 4283
## 1658   Winter        0    -14.8      1.2   Winter   8/2/2018 No Holiday
## 3485   Spring        0      0.4      0.5   Spring 25/04/2018 No Holiday
## 5491   Summer        0     21.1      2.5   Summer 17/07/2018 No Holiday
## 1237   Winter        0    -12.1      1.6   Winter 21/01/2018 No Holiday
## 5532   Summer        0     18.4      1.6   Summer 19/07/2018 No Holiday
## 5201   Summer        0     22.4      1.7   Summer   5/7/2018 No Holiday
##      col 4284 col 4285 col 4286 col 4287 col 4288   col 4289 col 4290 col 4291
## 1658        1        1      126     0.00        1   8/2/2018     -8.5     -8.5
## 3485        4        4      117     0.00        4 25/04/2018      6.4      6.4
## 5491       18       18     2770     1.20       18 17/07/2018     31.3     31.3
## 1237       12       12      271     0.91       12 21/01/2018      3.9      3.9
## 5532       11       11      687     2.92       11 19/07/2018     30.7     30.7
## 5201       16       16     1105     0.96       16   5/7/2018     28.2     28.2
##      col 4292 col 4293 col 4294 col 4295 col 4296 col 4297 col 4298 col 4299
## 1658     -8.5       60    -14.8       60       60     1908      126      1.2
## 3485      6.4       66      0.4       66       66     2000      117      0.5
## 5491     31.3       55     21.1       55       55     1550     2770      2.5
## 1237      3.9       30    -12.1       30       30     1085      271      1.6
## 5532     30.7       48     18.4       48       48     1705      687      1.6
## 5201     28.2       71     22.4       71       71     2000     1105      1.7
##      col 4300 col 4301 col 4302 col 4303 col 4304 col 4305 col 4306 col 4307
## 1658      1.2        0     0.00   Winter    -14.8     -8.5        1        1
## 3485      0.5        0     0.00   Spring      0.4      6.4        4        4
## 5491      2.5        0     1.20   Summer     21.1     31.3       18       18
## 1237      1.6        0     0.91   Winter    -12.1      3.9       12       12
## 5532      1.6        0     2.92   Summer     18.4     30.7       11       11
## 5201      1.7        0     0.96   Summer     22.4     28.2       16       16
##        col 4308   col 4309 col 4310 col 4311 col 4312 col 4313   col 4314
## 1658   8/2/2018 No Holiday    -14.8     0.00     1908     1908 No Holiday
## 3485 25/04/2018 No Holiday      0.4     0.00     2000     2000 No Holiday
## 5491 17/07/2018 No Holiday     21.1     1.20     1550     1550 No Holiday
## 1237 21/01/2018 No Holiday    -12.1     0.91     1085     1085 No Holiday
## 5532 19/07/2018 No Holiday     18.4     2.92     1705     1705 No Holiday
## 5201   5/7/2018 No Holiday     22.4     0.96     2000     2000 No Holiday
##      col 4315 col 4316 col 4317 col 4318 col 4319 col 4320 col 4321 col 4322
## 1658       60        1      1.2        0        0        1        0      Yes
## 3485       66        4      0.5        0        0        4        0      Yes
## 5491       55       18      2.5        0        0       18        0      Yes
## 1237       30       12      1.6        0        0       12        0      Yes
## 5532       48       11      1.6        0        0       11        0      Yes
## 5201       71       16      1.7        0        0       16        0      Yes
##      col 4323 col 4324   col 4325 col 4326 col 4327 col 4328 col 4329 col 4330
## 1658     -8.5     -8.5 No Holiday        0        0        0        0     0.00
## 3485      6.4      6.4 No Holiday        0        0        0        0     0.00
## 5491     31.3     31.3 No Holiday        0        0        0        0     1.20
## 1237      3.9      3.9 No Holiday        0        0        0        0     0.91
## 5532     30.7     30.7 No Holiday        0        0        0        0     2.92
## 5201     28.2     28.2 No Holiday        0        0        0        0     0.96
##      col 4331   col 4332 col 4333 col 4334 col 4335 col 4336 col 4337
## 1658        1   8/2/2018        0      1.2        0        0    -14.8
## 3485        4 25/04/2018        0      0.5        0        0      0.4
## 5491       18 17/07/2018        0      2.5        0        0     21.1
## 1237       12 21/01/2018        0      1.6        0        0    -12.1
## 5532       11 19/07/2018        0      1.6        0        0     18.4
## 5201       16   5/7/2018        0      1.7        0        0     22.4
##        col 4338 col 4339 col 4340   col 4341 col 4342 col 4343 col 4344
## 1658 No Holiday   Winter        0 No Holiday        0     1908   Winter
## 3485 No Holiday   Spring        0 No Holiday        0     2000   Spring
## 5491 No Holiday   Summer        0 No Holiday        0     1550   Summer
## 1237 No Holiday   Winter        0 No Holiday        0     1085   Winter
## 5532 No Holiday   Summer        0 No Holiday        0     1705   Summer
## 5201 No Holiday   Summer        0 No Holiday        0     2000   Summer
##      col 4345 col 4346 col 4347 col 4348 col 4349 col 4350 col 4351 col 4352
## 1658        1       60     -8.5        1        0       60      Yes      Yes
## 3485        4       66      6.4        4        0       66      Yes      Yes
## 5491       18       55     31.3       18        0       55      Yes      Yes
## 1237       12       30      3.9       12        0       30      Yes      Yes
## 5532       11       48     30.7       11        0       48      Yes      Yes
## 5201       16       71     28.2       16        0       71      Yes      Yes
##        col 4353 col 4354 col 4355 col 4356 col 4357 col 4358 col 4359
## 1658 No Holiday     -8.5      1.2     0.00       60   Winter       60
## 3485 No Holiday      6.4      0.5     0.00       66   Spring       66
## 5491 No Holiday     31.3      2.5     1.20       55   Summer       55
## 1237 No Holiday      3.9      1.6     0.91       30   Winter       30
## 5532 No Holiday     30.7      1.6     2.92       48   Summer       48
## 5201 No Holiday     28.2      1.7     0.96       71   Summer       71
##        col 4360 col 4361   col 4362 col 4363 col 4364 col 4365 col 4366
## 1658 No Holiday        1 No Holiday     0.00      1.2        1        0
## 3485 No Holiday        4 No Holiday     0.00      0.5        4        0
## 5491 No Holiday       18 No Holiday     1.20      2.5       18        0
## 1237 No Holiday       12 No Holiday     0.91      1.6       12        0
## 5532 No Holiday       11 No Holiday     2.92      1.6       11        0
## 5201 No Holiday       16 No Holiday     0.96      1.7       16        0
##      col 4367 col 4368 col 4369 col 4370   col 4371 col 4372   col 4373
## 1658      126   Winter        1   Winter   8/2/2018     -8.5 No Holiday
## 3485      117   Spring        4   Spring 25/04/2018      6.4 No Holiday
## 5491     2770   Summer       18   Summer 17/07/2018     31.3 No Holiday
## 1237      271   Winter       12   Winter 21/01/2018      3.9 No Holiday
## 5532      687   Summer       11   Summer 19/07/2018     30.7 No Holiday
## 5201     1105   Summer       16   Summer   5/7/2018     28.2 No Holiday
##        col 4374 col 4375   col 4376 col 4377   col 4378 col 4379 col 4380
## 1658 No Holiday      126   8/2/2018     0.00 No Holiday        0    -14.8
## 3485 No Holiday      117 25/04/2018     0.00 No Holiday        0      0.4
## 5491 No Holiday     2770 17/07/2018     1.20 No Holiday        0     21.1
## 1237 No Holiday      271 21/01/2018     0.91 No Holiday        0    -12.1
## 5532 No Holiday      687 19/07/2018     2.92 No Holiday        0     18.4
## 5201 No Holiday     1105   5/7/2018     0.96 No Holiday        0     22.4
## 
## Subsample 4 :
##      col 1 col 2 col 3 col 4 col 5 col 6 col 7 col 8      col 9 col 10 col 11
## 4035    48   237   Yes  18.8     0  18.4   0.5     2 18/05/2018      0    0.5
## 8669    95   270   Yes   3.1     0   1.2   0.0     4 27/11/2018      0    0.0
## 1255   165  2000   Yes   0.0     0 -14.3   0.0     6 22/01/2018      0    0.0
## 8749   720  1409   Yes   6.6     0  -7.8   0.0    12 30/11/2018      0    0.0
## 4335  1119  1211   Yes  24.3     0  15.5   0.0    14 30/05/2018      0    0.0
## 5610   965  1837   Yes  37.6     0  18.5   0.0    17 22/07/2018      0    0.0
##      col 12 col 13 col 14 col 15 col 16 col 17 col 18 col 19 col 20 col 21
## 4035   0.00     98    237    237    237    237    1.5    0.5   18.8      0
## 8669   0.00     88    270    270    270    270    1.0    0.0    3.1      0
## 1255   0.00     33   2000   2000   2000   2000    0.4    0.0    0.0      0
## 8749   1.70     35   1409   1409   1409   1409    1.3    0.0    6.6      0
## 4335   2.92     58   1211   1211   1211   1211    2.9    0.0   24.3      0
## 5610   1.82     33   1837   1837   1837   1837    2.1    0.0   37.6      0
##      col 22 col 23 col 24 col 25     col 26 col 27 col 28 col 29 col 30 col 31
## 4035 Spring   0.00      2    0.5 18/05/2018   0.00    1.5      2      2    1.5
## 8669 Autumn   0.00      4    0.0 27/11/2018   0.00    1.0      4      4    1.0
## 1255 Winter   0.00      6    0.0 22/01/2018   0.00    0.4      6      6    0.4
## 8749 Autumn   1.70     12    0.0 30/11/2018   1.70    1.3     12     12    1.3
## 4335 Spring   2.92     14    0.0 30/05/2018   2.92    2.9     14     14    2.9
## 5610 Summer   1.82     17    0.0 22/07/2018   1.82    2.1     17     17    2.1
##      col 32 col 33     col 34 col 35 col 36 col 37     col 38 col 39 col 40
## 4035   18.4    Yes No Holiday Spring      0     98 18/05/2018    1.5   18.8
## 8669    1.2    Yes No Holiday Autumn      0     88 27/11/2018    1.0    3.1
## 1255  -14.3    Yes No Holiday Winter      0     33 22/01/2018    0.4    0.0
## 8749   -7.8    Yes No Holiday Autumn      0     35 30/11/2018    1.3    6.6
## 4335   15.5    Yes No Holiday Spring      0     58 30/05/2018    2.9   24.3
## 5610   18.5    Yes No Holiday Summer      0     33 22/07/2018    2.1   37.6
##      col 41 col 42 col 43 col 44 col 45 col 46 col 47 col 48 col 49 col 50
## 4035     98    237   18.4     48   18.4   0.00   18.8   18.4   0.00    0.5
## 8669     88    270    1.2     95    1.2   0.00    3.1    1.2   0.00    0.0
## 1255     33   2000  -14.3    165  -14.3   0.00    0.0  -14.3   0.00    0.0
## 8749     35   1409   -7.8    720   -7.8   1.70    6.6   -7.8   1.70    0.0
## 4335     58   1211   15.5   1119   15.5   2.92   24.3   15.5   2.92    0.0
## 5610     33   1837   18.5    965   18.5   1.82   37.6   18.5   1.82    0.0
##      col 51 col 52     col 53 col 54 col 55 col 56 col 57 col 58     col 59
## 4035 Spring      0 18/05/2018    237     48     48 Spring    Yes 18/05/2018
## 8669 Autumn      0 27/11/2018    270     95     95 Autumn    Yes 27/11/2018
## 1255 Winter      0 22/01/2018   2000    165    165 Winter    Yes 22/01/2018
## 8749 Autumn      0 30/11/2018   1409    720    720 Autumn    Yes 30/11/2018
## 4335 Spring      0 30/05/2018   1211   1119   1119 Spring    Yes 30/05/2018
## 5610 Summer      0 22/07/2018   1837    965    965 Summer    Yes 22/07/2018
##      col 60 col 61 col 62 col 63 col 64 col 65     col 66 col 67 col 68 col 69
## 4035   18.8     98    Yes     48    1.5      0 18/05/2018    237    237    1.5
## 8669    3.1     88    Yes     95    1.0      0 27/11/2018    270    270    1.0
## 1255    0.0     33    Yes    165    0.4      0 22/01/2018   2000   2000    0.4
## 8749    6.6     35    Yes    720    1.3      0 30/11/2018   1409   1409    1.3
## 4335   24.3     58    Yes   1119    2.9      0 30/05/2018   1211   1211    2.9
## 5610   37.6     33    Yes    965    2.1      0 22/07/2018   1837   1837    2.1
##      col 70 col 71 col 72 col 73 col 74 col 75 col 76 col 77     col 78 col 79
## 4035     98      0   0.00    1.5    237    1.5   18.8   18.8 18/05/2018   18.8
## 8669     88      0   0.00    1.0    270    1.0    3.1    3.1 27/11/2018    3.1
## 1255     33      0   0.00    0.4   2000    0.4    0.0    0.0 22/01/2018    0.0
## 8749     35      0   1.70    1.3   1409    1.3    6.6    6.6 30/11/2018    6.6
## 4335     58      0   2.92    2.9   1211    2.9   24.3   24.3 30/05/2018   24.3
## 5610     33      0   1.82    2.1   1837    2.1   37.6   37.6 22/07/2018   37.6
##      col 80 col 81 col 82 col 83 col 84 col 85 col 86 col 87 col 88 col 89
## 4035      0   0.00     98    0.5    237    Yes     48   18.8   18.4   0.00
## 8669      0   0.00     88    0.0    270    Yes     95    3.1    1.2   0.00
## 1255      0   0.00     33    0.0   2000    Yes    165    0.0  -14.3   0.00
## 8749      0   1.70     35    0.0   1409    Yes    720    6.6   -7.8   1.70
## 4335      0   2.92     58    0.0   1211    Yes   1119   24.3   15.5   2.92
## 5610      0   1.82     33    0.0   1837    Yes    965   37.6   18.5   1.82
##      col 90 col 91 col 92 col 93 col 94 col 95     col 96 col 97 col 98
## 4035   0.00    0.5   0.00    Yes    Yes      2 No Holiday     98     98
## 8669   0.00    0.0   0.00    Yes    Yes      4 No Holiday     88     88
## 1255   0.00    0.0   0.00    Yes    Yes      6 No Holiday     33     33
## 8749   1.70    0.0   1.70    Yes    Yes     12 No Holiday     35     35
## 4335   2.92    0.0   2.92    Yes    Yes     14 No Holiday     58     58
## 5610   1.82    0.0   1.82    Yes    Yes     17 No Holiday     33     33
##          col 99 col 100 col 101 col 102 col 103 col 104 col 105 col 106
## 4035 18/05/2018    18.4      98      98  Spring     237     Yes     237
## 8669 27/11/2018     1.2      88      88  Autumn     270     Yes     270
## 1255 22/01/2018   -14.3      33      33  Winter    2000     Yes    2000
## 8749 30/11/2018    -7.8      35      35  Autumn    1409     Yes    1409
## 4335 30/05/2018    15.5      58      58  Spring    1211     Yes    1211
## 5610 22/07/2018    18.5      33      33  Summer    1837     Yes    1837
##         col 107 col 108 col 109    col 110 col 111    col 112 col 113 col 114
## 4035 18/05/2018     0.5    0.00 No Holiday     237 18/05/2018       2     Yes
## 8669 27/11/2018     0.0    0.00 No Holiday     270 27/11/2018       4     Yes
## 1255 22/01/2018     0.0    0.00 No Holiday    2000 22/01/2018       6     Yes
## 8749 30/11/2018     0.0    1.70 No Holiday    1409 30/11/2018      12     Yes
## 4335 30/05/2018     0.0    2.92 No Holiday    1211 30/05/2018      14     Yes
## 5610 22/07/2018     0.0    1.82 No Holiday    1837 22/07/2018      17     Yes
##      col 115    col 116 col 117 col 118 col 119 col 120 col 121 col 122 col 123
## 4035      98 18/05/2018    18.8      98       0       2    0.00      48     Yes
## 8669      88 27/11/2018     3.1      88       0       4    0.00      95     Yes
## 1255      33 22/01/2018     0.0      33       0       6    0.00     165     Yes
## 8749      35 30/11/2018     6.6      35       0      12    1.70     720     Yes
## 4335      58 30/05/2018    24.3      58       0      14    2.92    1119     Yes
## 5610      33 22/07/2018    37.6      33       0      17    1.82     965     Yes
##      col 124 col 125    col 126 col 127 col 128 col 129 col 130 col 131 col 132
## 4035  Spring     0.5 No Holiday     Yes      98      98     1.5    18.8     237
## 8669  Autumn     0.0 No Holiday     Yes      88      88     1.0     3.1     270
## 1255  Winter     0.0 No Holiday     Yes      33      33     0.4     0.0    2000
## 8749  Autumn     0.0 No Holiday     Yes      35      35     1.3     6.6    1409
## 4335  Spring     0.0 No Holiday     Yes      58      58     2.9    24.3    1211
## 5610  Summer     0.0 No Holiday     Yes      33      33     2.1    37.6    1837
##      col 133 col 134 col 135 col 136 col 137 col 138 col 139 col 140 col 141
## 4035       2     237     Yes     237     Yes      98    18.4     237       2
## 8669       4     270     Yes     270     Yes      88     1.2     270       4
## 1255       6    2000     Yes    2000     Yes      33   -14.3    2000       6
## 8749      12    1409     Yes    1409     Yes      35    -7.8    1409      12
## 4335      14    1211     Yes    1211     Yes      58    15.5    1211      14
## 5610      17    1837     Yes    1837     Yes      33    18.5    1837      17
##      col 142 col 143 col 144 col 145    col 146 col 147 col 148    col 149
## 4035    0.00  Spring     Yes     0.5 No Holiday    0.00     Yes No Holiday
## 8669    0.00  Autumn     Yes     0.0 No Holiday    0.00     Yes No Holiday
## 1255    0.00  Winter     Yes     0.0 No Holiday    0.00     Yes No Holiday
## 8749    1.70  Autumn     Yes     0.0 No Holiday    1.70     Yes No Holiday
## 4335    2.92  Spring     Yes     0.0 No Holiday    2.92     Yes No Holiday
## 5610    1.82  Summer     Yes     0.0 No Holiday    1.82     Yes No Holiday
##      col 150 col 151 col 152 col 153 col 154 col 155    col 156    col 157
## 4035      48     1.5       0     237    0.00     Yes No Holiday 18/05/2018
## 8669      95     1.0       0     270    0.00     Yes No Holiday 27/11/2018
## 1255     165     0.4       0    2000    0.00     Yes No Holiday 22/01/2018
## 8749     720     1.3       0    1409    1.70     Yes No Holiday 30/11/2018
## 4335    1119     2.9       0    1211    2.92     Yes No Holiday 30/05/2018
## 5610     965     2.1       0    1837    1.82     Yes No Holiday 22/07/2018
##      col 158 col 159 col 160    col 161 col 162 col 163 col 164 col 165 col 166
## 4035    18.8     0.5     0.5 18/05/2018      48       2     1.5     237     237
## 8669     3.1     0.0     0.0 27/11/2018      95       4     1.0     270     270
## 1255     0.0     0.0     0.0 22/01/2018     165       6     0.4    2000    2000
## 8749     6.6     0.0     0.0 30/11/2018     720      12     1.3    1409    1409
## 4335    24.3     0.0     0.0 30/05/2018    1119      14     2.9    1211    1211
## 5610    37.6     0.0     0.0 22/07/2018     965      17     2.1    1837    1837
##      col 167 col 168 col 169    col 170 col 171    col 172 col 173 col 174
## 4035    0.00    18.4       2 No Holiday    18.8 18/05/2018  Spring    18.4
## 8669    0.00     1.2       4 No Holiday     3.1 27/11/2018  Autumn     1.2
## 1255    0.00   -14.3       6 No Holiday     0.0 22/01/2018  Winter   -14.3
## 8749    1.70    -7.8      12 No Holiday     6.6 30/11/2018  Autumn    -7.8
## 4335    2.92    15.5      14 No Holiday    24.3 30/05/2018  Spring    15.5
## 5610    1.82    18.5      17 No Holiday    37.6 22/07/2018  Summer    18.5
##         col 175 col 176 col 177 col 178 col 179 col 180 col 181 col 182 col 183
## 4035 No Holiday     0.5    18.4     1.5    18.4       2    18.4     237    18.4
## 8669 No Holiday     0.0     1.2     1.0     1.2       4     1.2     270     1.2
## 1255 No Holiday     0.0   -14.3     0.4   -14.3       6   -14.3    2000   -14.3
## 8749 No Holiday     0.0    -7.8     1.3    -7.8      12    -7.8    1409    -7.8
## 4335 No Holiday     0.0    15.5     2.9    15.5      14    15.5    1211    15.5
## 5610 No Holiday     0.0    18.5     2.1    18.5      17    18.5    1837    18.5
##         col 184 col 185 col 186 col 187 col 188 col 189 col 190 col 191 col 192
## 4035 No Holiday  Spring      98     1.5      98     1.5      48     237      48
## 8669 No Holiday  Autumn      88     1.0      88     1.0      95     270      95
## 1255 No Holiday  Winter      33     0.4      33     0.4     165    2000     165
## 8749 No Holiday  Autumn      35     1.3      35     1.3     720    1409     720
## 4335 No Holiday  Spring      58     2.9      58     2.9    1119    1211    1119
## 5610 No Holiday  Summer      33     2.1      33     2.1     965    1837     965
##      col 193 col 194 col 195    col 196 col 197    col 198    col 199 col 200
## 4035     1.5       2     0.5 18/05/2018       0 No Holiday No Holiday    18.4
## 8669     1.0       4     0.0 27/11/2018       0 No Holiday No Holiday     1.2
## 1255     0.4       6     0.0 22/01/2018       0 No Holiday No Holiday   -14.3
## 8749     1.3      12     0.0 30/11/2018       0 No Holiday No Holiday    -7.8
## 4335     2.9      14     0.0 30/05/2018       0 No Holiday No Holiday    15.5
## 5610     2.1      17     0.0 22/07/2018       0 No Holiday No Holiday    18.5
##         col 201 col 202 col 203 col 204 col 205 col 206 col 207 col 208 col 209
## 4035 18/05/2018     Yes     Yes     1.5      98     1.5     237       2     1.5
## 8669 27/11/2018     Yes     Yes     1.0      88     1.0     270       4     1.0
## 1255 22/01/2018     Yes     Yes     0.4      33     0.4    2000       6     0.4
## 8749 30/11/2018     Yes     Yes     1.3      35     1.3    1409      12     1.3
## 4335 30/05/2018     Yes     Yes     2.9      58     2.9    1211      14     2.9
## 5610 22/07/2018     Yes     Yes     2.1      33     2.1    1837      17     2.1
##      col 210    col 211 col 212 col 213 col 214 col 215 col 216 col 217 col 218
## 4035      48 No Holiday  Spring       0    0.00       0    0.00     0.5     1.5
## 8669      95 No Holiday  Autumn       0    0.00       0    0.00     0.0     1.0
## 1255     165 No Holiday  Winter       0    0.00       0    0.00     0.0     0.4
## 8749     720 No Holiday  Autumn       0    1.70       0    1.70     0.0     1.3
## 4335    1119 No Holiday  Spring       0    2.92       0    2.92     0.0     2.9
## 5610     965 No Holiday  Summer       0    1.82       0    1.82     0.0     2.1
##      col 219 col 220 col 221 col 222 col 223 col 224 col 225 col 226 col 227
## 4035    18.8       2     Yes    18.4    18.4       2  Spring  Spring  Spring
## 8669     3.1       4     Yes     1.2     1.2       4  Autumn  Autumn  Autumn
## 1255     0.0       6     Yes   -14.3   -14.3       6  Winter  Winter  Winter
## 8749     6.6      12     Yes    -7.8    -7.8      12  Autumn  Autumn  Autumn
## 4335    24.3      14     Yes    15.5    15.5      14  Spring  Spring  Spring
## 5610    37.6      17     Yes    18.5    18.5      17  Summer  Summer  Summer
##      col 228 col 229 col 230 col 231 col 232 col 233 col 234 col 235 col 236
## 4035       0       0     1.5  Spring     Yes    18.8     Yes       2      98
## 8669       0       0     1.0  Autumn     Yes     3.1     Yes       4      88
## 1255       0       0     0.4  Winter     Yes     0.0     Yes       6      33
## 8749       0       0     1.3  Autumn     Yes     6.6     Yes      12      35
## 4335       0       0     2.9  Spring     Yes    24.3     Yes      14      58
## 5610       0       0     2.1  Summer     Yes    37.6     Yes      17      33
##      col 237 col 238 col 239 col 240 col 241 col 242 col 243 col 244 col 245
## 4035     237    18.8       2     1.5       0       2      98      48     0.5
## 8669     270     3.1       4     1.0       0       4      88      95     0.0
## 1255    2000     0.0       6     0.4       0       6      33     165     0.0
## 8749    1409     6.6      12     1.3       0      12      35     720     0.0
## 4335    1211    24.3      14     2.9       0      14      58    1119     0.0
## 5610    1837    37.6      17     2.1       0      17      33     965     0.0
##      col 246 col 247 col 248 col 249 col 250 col 251 col 252 col 253 col 254
## 4035     0.5      48    18.4     1.5    18.4      98    18.8       2      98
## 8669     0.0      95     1.2     1.0     1.2      88     3.1       4      88
## 1255     0.0     165   -14.3     0.4   -14.3      33     0.0       6      33
## 8749     0.0     720    -7.8     1.3    -7.8      35     6.6      12      35
## 4335     0.0    1119    15.5     2.9    15.5      58    24.3      14      58
## 5610     0.0     965    18.5     2.1    18.5      33    37.6      17      33
##         col 255 col 256 col 257 col 258 col 259    col 260 col 261 col 262
## 4035 No Holiday    0.00    18.8       0     1.5 No Holiday      48    18.8
## 8669 No Holiday    0.00     3.1       0     1.0 No Holiday      95     3.1
## 1255 No Holiday    0.00     0.0       0     0.4 No Holiday     165     0.0
## 8749 No Holiday    1.70     6.6       0     1.3 No Holiday     720     6.6
## 4335 No Holiday    2.92    24.3       0     2.9 No Holiday    1119    24.3
## 5610 No Holiday    1.82    37.6       0     2.1 No Holiday     965    37.6
##      col 263 col 264 col 265 col 266 col 267 col 268 col 269 col 270 col 271
## 4035       2     1.5  Spring     0.5     0.5    18.8     Yes     0.5       0
## 8669       4     1.0  Autumn     0.0     0.0     3.1     Yes     0.0       0
## 1255       6     0.4  Winter     0.0     0.0     0.0     Yes     0.0       0
## 8749      12     1.3  Autumn     0.0     0.0     6.6     Yes     0.0       0
## 4335      14     2.9  Spring     0.0     0.0    24.3     Yes     0.0       0
## 5610      17     2.1  Summer     0.0     0.0    37.6     Yes     0.0       0
##      col 272 col 273 col 274 col 275 col 276 col 277 col 278 col 279 col 280
## 4035     0.5    18.4       0     0.5    0.00       2     Yes     0.5     0.5
## 8669     0.0     1.2       0     0.0    0.00       4     Yes     0.0     0.0
## 1255     0.0   -14.3       0     0.0    0.00       6     Yes     0.0     0.0
## 8749     0.0    -7.8       0     0.0    1.70      12     Yes     0.0     0.0
## 4335     0.0    15.5       0     0.0    2.92      14     Yes     0.0     0.0
## 5610     0.0    18.5       0     0.0    1.82      17     Yes     0.0     0.0
##         col 281 col 282 col 283 col 284 col 285    col 286 col 287 col 288
## 4035 No Holiday     0.5     1.5    18.8    18.8 18/05/2018    18.4      48
## 8669 No Holiday     0.0     1.0     3.1     3.1 27/11/2018     1.2      95
## 1255 No Holiday     0.0     0.4     0.0     0.0 22/01/2018   -14.3     165
## 8749 No Holiday     0.0     1.3     6.6     6.6 30/11/2018    -7.8     720
## 4335 No Holiday     0.0     2.9    24.3    24.3 30/05/2018    15.5    1119
## 5610 No Holiday     0.0     2.1    37.6    37.6 22/07/2018    18.5     965
##      col 289 col 290 col 291 col 292    col 293 col 294    col 295 col 296
## 4035    0.00    18.4     Yes     237 No Holiday    0.00 No Holiday      98
## 8669    0.00     1.2     Yes     270 No Holiday    0.00 No Holiday      88
## 1255    0.00   -14.3     Yes    2000 No Holiday    0.00 No Holiday      33
## 8749    1.70    -7.8     Yes    1409 No Holiday    1.70 No Holiday      35
## 4335    2.92    15.5     Yes    1211 No Holiday    2.92 No Holiday      58
## 5610    1.82    18.5     Yes    1837 No Holiday    1.82 No Holiday      33
##      col 297 col 298 col 299 col 300 col 301    col 302 col 303 col 304 col 305
## 4035     0.5      48     237       2    18.8 No Holiday     Yes    18.8      48
## 8669     0.0      95     270       4     3.1 No Holiday     Yes     3.1      95
## 1255     0.0     165    2000       6     0.0 No Holiday     Yes     0.0     165
## 8749     0.0     720    1409      12     6.6 No Holiday     Yes     6.6     720
## 4335     0.0    1119    1211      14    24.3 No Holiday     Yes    24.3    1119
## 5610     0.0     965    1837      17    37.6 No Holiday     Yes    37.6     965
##      col 306 col 307 col 308 col 309 col 310 col 311 col 312 col 313 col 314
## 4035    0.00     0.5     Yes      98     237       2      48  Spring     Yes
## 8669    0.00     0.0     Yes      88     270       4      95  Autumn     Yes
## 1255    0.00     0.0     Yes      33    2000       6     165  Winter     Yes
## 8749    1.70     0.0     Yes      35    1409      12     720  Autumn     Yes
## 4335    2.92     0.0     Yes      58    1211      14    1119  Spring     Yes
## 5610    1.82     0.0     Yes      33    1837      17     965  Summer     Yes
##      col 315 col 316 col 317 col 318 col 319 col 320 col 321 col 322 col 323
## 4035       2     1.5     1.5     0.5     1.5  Spring      48       0     0.5
## 8669       4     1.0     1.0     0.0     1.0  Autumn      95       0     0.0
## 1255       6     0.4     0.4     0.0     0.4  Winter     165       0     0.0
## 8749      12     1.3     1.3     0.0     1.3  Autumn     720       0     0.0
## 4335      14     2.9     2.9     0.0     2.9  Spring    1119       0     0.0
## 5610      17     2.1     2.1     0.0     2.1  Summer     965       0     0.0
##      col 324 col 325 col 326 col 327 col 328    col 329 col 330 col 331 col 332
## 4035  Spring      48  Spring     1.5    18.8 18/05/2018    18.4     1.5      98
## 8669  Autumn      95  Autumn     1.0     3.1 27/11/2018     1.2     1.0      88
## 1255  Winter     165  Winter     0.4     0.0 22/01/2018   -14.3     0.4      33
## 8749  Autumn     720  Autumn     1.3     6.6 30/11/2018    -7.8     1.3      35
## 4335  Spring    1119  Spring     2.9    24.3 30/05/2018    15.5     2.9      58
## 5610  Summer     965  Summer     2.1    37.6 22/07/2018    18.5     2.1      33
##         col 333 col 334    col 335    col 336 col 337 col 338 col 339 col 340
## 4035 18/05/2018      48 18/05/2018 No Holiday  Spring     0.5     0.5    18.8
## 8669 27/11/2018      95 27/11/2018 No Holiday  Autumn     0.0     0.0     3.1
## 1255 22/01/2018     165 22/01/2018 No Holiday  Winter     0.0     0.0     0.0
## 8749 30/11/2018     720 30/11/2018 No Holiday  Autumn     0.0     0.0     6.6
## 4335 30/05/2018    1119 30/05/2018 No Holiday  Spring     0.0     0.0    24.3
## 5610 22/07/2018     965 22/07/2018 No Holiday  Summer     0.0     0.0    37.6
##      col 341 col 342 col 343 col 344    col 345 col 346 col 347 col 348 col 349
## 4035  Spring     237    18.8    18.4 18/05/2018     0.5    18.8    18.8      48
## 8669  Autumn     270     3.1     1.2 27/11/2018     0.0     3.1     3.1      95
## 1255  Winter    2000     0.0   -14.3 22/01/2018     0.0     0.0     0.0     165
## 8749  Autumn    1409     6.6    -7.8 30/11/2018     0.0     6.6     6.6     720
## 4335  Spring    1211    24.3    15.5 30/05/2018     0.0    24.3    24.3    1119
## 5610  Summer    1837    37.6    18.5 22/07/2018     0.0    37.6    37.6     965
##      col 350 col 351 col 352 col 353 col 354 col 355 col 356 col 357 col 358
## 4035    18.4       0    0.00     Yes     0.5     0.5    18.8       2    18.8
## 8669     1.2       0    0.00     Yes     0.0     0.0     3.1       4     3.1
## 1255   -14.3       0    0.00     Yes     0.0     0.0     0.0       6     0.0
## 8749    -7.8       0    1.70     Yes     0.0     0.0     6.6      12     6.6
## 4335    15.5       0    2.92     Yes     0.0     0.0    24.3      14    24.3
## 5610    18.5       0    1.82     Yes     0.0     0.0    37.6      17    37.6
##      col 359 col 360 col 361 col 362 col 363 col 364 col 365 col 366 col 367
## 4035     0.5     1.5       0     237     0.5  Spring    18.8     0.5     Yes
## 8669     0.0     1.0       0     270     0.0  Autumn     3.1     0.0     Yes
## 1255     0.0     0.4       0    2000     0.0  Winter     0.0     0.0     Yes
## 8749     0.0     1.3       0    1409     0.0  Autumn     6.6     0.0     Yes
## 4335     0.0     2.9       0    1211     0.0  Spring    24.3     0.0     Yes
## 5610     0.0     2.1       0    1837     0.0  Summer    37.6     0.0     Yes
##      col 368 col 369 col 370 col 371 col 372 col 373 col 374    col 375 col 376
## 4035    18.4    18.4      98    18.4       2       0    18.4 18/05/2018     Yes
## 8669     1.2     1.2      88     1.2       4       0     1.2 27/11/2018     Yes
## 1255   -14.3   -14.3      33   -14.3       6       0   -14.3 22/01/2018     Yes
## 8749    -7.8    -7.8      35    -7.8      12       0    -7.8 30/11/2018     Yes
## 4335    15.5    15.5      58    15.5      14       0    15.5 30/05/2018     Yes
## 5610    18.5    18.5      33    18.5      17       0    18.5 22/07/2018     Yes
##      col 377 col 378 col 379 col 380 col 381    col 382 col 383    col 384
## 4035    18.8      48      98     1.5      98 18/05/2018  Spring 18/05/2018
## 8669     3.1      95      88     1.0      88 27/11/2018  Autumn 27/11/2018
## 1255     0.0     165      33     0.4      33 22/01/2018  Winter 22/01/2018
## 8749     6.6     720      35     1.3      35 30/11/2018  Autumn 30/11/2018
## 4335    24.3    1119      58     2.9      58 30/05/2018  Spring 30/05/2018
## 5610    37.6     965      33     2.1      33 22/07/2018  Summer 22/07/2018
##      col 385 col 386 col 387 col 388 col 389 col 390 col 391 col 392 col 393
## 4035     237     1.5  Spring     Yes     237    0.00     1.5       0    18.4
## 8669     270     1.0  Autumn     Yes     270    0.00     1.0       0     1.2
## 1255    2000     0.4  Winter     Yes    2000    0.00     0.4       0   -14.3
## 8749    1409     1.3  Autumn     Yes    1409    1.70     1.3       0    -7.8
## 4335    1211     2.9  Spring     Yes    1211    2.92     2.9       0    15.5
## 5610    1837     2.1  Summer     Yes    1837    1.82     2.1       0    18.5
##      col 394 col 395 col 396 col 397 col 398 col 399    col 400 col 401 col 402
## 4035      48  Spring      48     Yes    0.00      98 18/05/2018      98     237
## 8669      95  Autumn      95     Yes    0.00      88 27/11/2018      88     270
## 1255     165  Winter     165     Yes    0.00      33 22/01/2018      33    2000
## 8749     720  Autumn     720     Yes    1.70      35 30/11/2018      35    1409
## 4335    1119  Spring    1119     Yes    2.92      58 30/05/2018      58    1211
## 5610     965  Summer     965     Yes    1.82      33 22/07/2018      33    1837
##      col 403 col 404 col 405 col 406 col 407 col 408    col 409 col 410
## 4035       0      48     1.5      48  Spring     0.5 No Holiday     0.5
## 8669       0      95     1.0      95  Autumn     0.0 No Holiday     0.0
## 1255       0     165     0.4     165  Winter     0.0 No Holiday     0.0
## 8749       0     720     1.3     720  Autumn     0.0 No Holiday     0.0
## 4335       0    1119     2.9    1119  Spring     0.0 No Holiday     0.0
## 5610       0     965     2.1     965  Summer     0.0 No Holiday     0.0
##         col 411 col 412 col 413 col 414 col 415 col 416 col 417 col 418 col 419
## 4035 18/05/2018    18.8      98     237      98       2      48    18.4     Yes
## 8669 27/11/2018     3.1      88     270      88       4      95     1.2     Yes
## 1255 22/01/2018     0.0      33    2000      33       6     165   -14.3     Yes
## 8749 30/11/2018     6.6      35    1409      35      12     720    -7.8     Yes
## 4335 30/05/2018    24.3      58    1211      58      14    1119    15.5     Yes
## 5610 22/07/2018    37.6      33    1837      33      17     965    18.5     Yes
##      col 420    col 421 col 422 col 423 col 424 col 425    col 426    col 427
## 4035       2 18/05/2018       0    18.4    0.00       0 18/05/2018 18/05/2018
## 8669       4 27/11/2018       0     1.2    0.00       0 27/11/2018 27/11/2018
## 1255       6 22/01/2018       0   -14.3    0.00       0 22/01/2018 22/01/2018
## 8749      12 30/11/2018       0    -7.8    1.70       0 30/11/2018 30/11/2018
## 4335      14 30/05/2018       0    15.5    2.92       0 30/05/2018 30/05/2018
## 5610      17 22/07/2018       0    18.5    1.82       0 22/07/2018 22/07/2018
##      col 428 col 429 col 430 col 431 col 432    col 433 col 434 col 435 col 436
## 4035     237      98       0     Yes      48 No Holiday      48     237     Yes
## 8669     270      88       0     Yes      95 No Holiday      95     270     Yes
## 1255    2000      33       0     Yes     165 No Holiday     165    2000     Yes
## 8749    1409      35       0     Yes     720 No Holiday     720    1409     Yes
## 4335    1211      58       0     Yes    1119 No Holiday    1119    1211     Yes
## 5610    1837      33       0     Yes     965 No Holiday     965    1837     Yes
##      col 437 col 438 col 439 col 440 col 441 col 442 col 443 col 444 col 445
## 4035      98      98     237     1.5      98      98    0.00       0    18.4
## 8669      88      88     270     1.0      88      88    0.00       0     1.2
## 1255      33      33    2000     0.4      33      33    0.00       0   -14.3
## 8749      35      35    1409     1.3      35      35    1.70       0    -7.8
## 4335      58      58    1211     2.9      58      58    2.92       0    15.5
## 5610      33      33    1837     2.1      33      33    1.82       0    18.5
##      col 446    col 447 col 448 col 449 col 450 col 451 col 452 col 453 col 454
## 4035     0.5 18/05/2018    18.8    18.8      98    18.4    0.00       2     237
## 8669     0.0 27/11/2018     3.1     3.1      88     1.2    0.00       4     270
## 1255     0.0 22/01/2018     0.0     0.0      33   -14.3    0.00       6    2000
## 8749     0.0 30/11/2018     6.6     6.6      35    -7.8    1.70      12    1409
## 4335     0.0 30/05/2018    24.3    24.3      58    15.5    2.92      14    1211
## 5610     0.0 22/07/2018    37.6    37.6      33    18.5    1.82      17    1837
##      col 455 col 456 col 457    col 458 col 459 col 460    col 461    col 462
## 4035     237      98       2 No Holiday     Yes     1.5 No Holiday 18/05/2018
## 8669     270      88       4 No Holiday     Yes     1.0 No Holiday 27/11/2018
## 1255    2000      33       6 No Holiday     Yes     0.4 No Holiday 22/01/2018
## 8749    1409      35      12 No Holiday     Yes     1.3 No Holiday 30/11/2018
## 4335    1211      58      14 No Holiday     Yes     2.9 No Holiday 30/05/2018
## 5610    1837      33      17 No Holiday     Yes     2.1 No Holiday 22/07/2018
##      col 463 col 464    col 465 col 466 col 467 col 468 col 469 col 470 col 471
## 4035     Yes     237 No Holiday    0.00      48      98       2       0       2
## 8669     Yes     270 No Holiday    0.00      95      88       4       0       4
## 1255     Yes    2000 No Holiday    0.00     165      33       6       0       6
## 8749     Yes    1409 No Holiday    1.70     720      35      12       0      12
## 4335     Yes    1211 No Holiday    2.92    1119      58      14       0      14
## 5610     Yes    1837 No Holiday    1.82     965      33      17       0      17
##      col 472 col 473 col 474 col 475 col 476 col 477 col 478 col 479 col 480
## 4035      48       2       2    18.8    18.8     1.5       0  Spring     0.5
## 8669      95       4       4     3.1     3.1     1.0       0  Autumn     0.0
## 1255     165       6       6     0.0     0.0     0.4       0  Winter     0.0
## 8749     720      12      12     6.6     6.6     1.3       0  Autumn     0.0
## 4335    1119      14      14    24.3    24.3     2.9       0  Spring     0.0
## 5610     965      17      17    37.6    37.6     2.1       0  Summer     0.0
##      col 481 col 482 col 483 col 484 col 485 col 486 col 487 col 488 col 489
## 4035       0       0    18.8    18.4    18.8      98     237     1.5     0.5
## 8669       0       0     3.1     1.2     3.1      88     270     1.0     0.0
## 1255       0       0     0.0   -14.3     0.0      33    2000     0.4     0.0
## 8749       0       0     6.6    -7.8     6.6      35    1409     1.3     0.0
## 4335       0       0    24.3    15.5    24.3      58    1211     2.9     0.0
## 5610       0       0    37.6    18.5    37.6      33    1837     2.1     0.0
##      col 490 col 491 col 492 col 493 col 494 col 495 col 496 col 497 col 498
## 4035    0.00      48      98    0.00       2     1.5       2      48     1.5
## 8669    0.00      95      88    0.00       4     1.0       4      95     1.0
## 1255    0.00     165      33    0.00       6     0.4       6     165     0.4
## 8749    1.70     720      35    1.70      12     1.3      12     720     1.3
## 4335    2.92    1119      58    2.92      14     2.9      14    1119     2.9
## 5610    1.82     965      33    1.82      17     2.1      17     965     2.1
##      col 499 col 500    col 501 col 502    col 503 col 504 col 505 col 506
## 4035     237      48 No Holiday     Yes 18/05/2018       2       2       0
## 8669     270      95 No Holiday     Yes 27/11/2018       4       4       0
## 1255    2000     165 No Holiday     Yes 22/01/2018       6       6       0
## 8749    1409     720 No Holiday     Yes 30/11/2018      12      12       0
## 4335    1211    1119 No Holiday     Yes 30/05/2018      14      14       0
## 5610    1837     965 No Holiday     Yes 22/07/2018      17      17       0
##      col 507 col 508 col 509 col 510    col 511 col 512 col 513 col 514 col 515
## 4035       2       0    18.8     1.5 No Holiday    0.00     Yes       0     237
## 8669       4       0     3.1     1.0 No Holiday    0.00     Yes       0     270
## 1255       6       0     0.0     0.4 No Holiday    0.00     Yes       0    2000
## 8749      12       0     6.6     1.3 No Holiday    1.70     Yes       0    1409
## 4335      14       0    24.3     2.9 No Holiday    2.92     Yes       0    1211
## 5610      17       0    37.6     2.1 No Holiday    1.82     Yes       0    1837
##      col 516    col 517 col 518 col 519 col 520 col 521 col 522 col 523 col 524
## 4035     237 18/05/2018      98      98      48       0       0     Yes    18.4
## 8669     270 27/11/2018      88      88      95       0       0     Yes     1.2
## 1255    2000 22/01/2018      33      33     165       0       0     Yes   -14.3
## 8749    1409 30/11/2018      35      35     720       0       0     Yes    -7.8
## 4335    1211 30/05/2018      58      58    1119       0       0     Yes    15.5
## 5610    1837 22/07/2018      33      33     965       0       0     Yes    18.5
##      col 525 col 526 col 527 col 528    col 529    col 530 col 531 col 532
## 4035      98     237     Yes      48 18/05/2018 No Holiday       0    18.4
## 8669      88     270     Yes      95 27/11/2018 No Holiday       0     1.2
## 1255      33    2000     Yes     165 22/01/2018 No Holiday       0   -14.3
## 8749      35    1409     Yes     720 30/11/2018 No Holiday       0    -7.8
## 4335      58    1211     Yes    1119 30/05/2018 No Holiday       0    15.5
## 5610      33    1837     Yes     965 22/07/2018 No Holiday       0    18.5
##      col 533 col 534 col 535 col 536 col 537 col 538 col 539 col 540 col 541
## 4035     Yes    18.4     237      98       0     237    18.8     0.5  Spring
## 8669     Yes     1.2     270      88       0     270     3.1     0.0  Autumn
## 1255     Yes   -14.3    2000      33       0    2000     0.0     0.0  Winter
## 8749     Yes    -7.8    1409      35       0    1409     6.6     0.0  Autumn
## 4335     Yes    15.5    1211      58       0    1211    24.3     0.0  Spring
## 5610     Yes    18.5    1837      33       0    1837    37.6     0.0  Summer
##      col 542 col 543 col 544 col 545 col 546 col 547 col 548 col 549 col 550
## 4035     1.5     237      48     237     1.5     1.5      98       0  Spring
## 8669     1.0     270      95     270     1.0     1.0      88       0  Autumn
## 1255     0.4    2000     165    2000     0.4     0.4      33       0  Winter
## 8749     1.3    1409     720    1409     1.3     1.3      35       0  Autumn
## 4335     2.9    1211    1119    1211     2.9     2.9      58       0  Spring
## 5610     2.1    1837     965    1837     2.1     2.1      33       0  Summer
##         col 551 col 552 col 553 col 554 col 555 col 556    col 557 col 558
## 4035 18/05/2018    18.4      98    18.8     0.5       2 18/05/2018    18.4
## 8669 27/11/2018     1.2      88     3.1     0.0       4 27/11/2018     1.2
## 1255 22/01/2018   -14.3      33     0.0     0.0       6 22/01/2018   -14.3
## 8749 30/11/2018    -7.8      35     6.6     0.0      12 30/11/2018    -7.8
## 4335 30/05/2018    15.5      58    24.3     0.0      14 30/05/2018    15.5
## 5610 22/07/2018    18.5      33    37.6     0.0      17 22/07/2018    18.5
##      col 559 col 560 col 561    col 562 col 563    col 564 col 565 col 566
## 4035      98     1.5       2 No Holiday     1.5 18/05/2018      48    0.00
## 8669      88     1.0       4 No Holiday     1.0 27/11/2018      95    0.00
## 1255      33     0.4       6 No Holiday     0.4 22/01/2018     165    0.00
## 8749      35     1.3      12 No Holiday     1.3 30/11/2018     720    1.70
## 4335      58     2.9      14 No Holiday     2.9 30/05/2018    1119    2.92
## 5610      33     2.1      17 No Holiday     2.1 22/07/2018     965    1.82
##      col 567 col 568 col 569 col 570 col 571 col 572 col 573 col 574 col 575
## 4035    18.4    0.00    18.8    0.00       0     237     Yes     Yes    18.4
## 8669     1.2    0.00     3.1    0.00       0     270     Yes     Yes     1.2
## 1255   -14.3    0.00     0.0    0.00       0    2000     Yes     Yes   -14.3
## 8749    -7.8    1.70     6.6    1.70       0    1409     Yes     Yes    -7.8
## 4335    15.5    2.92    24.3    2.92       0    1211     Yes     Yes    15.5
## 5610    18.5    1.82    37.6    1.82       0    1837     Yes     Yes    18.5
##      col 576 col 577 col 578    col 579    col 580 col 581 col 582 col 583
## 4035  Spring       0     0.5 18/05/2018 18/05/2018      48       2  Spring
## 8669  Autumn       0     0.0 27/11/2018 27/11/2018      95       4  Autumn
## 1255  Winter       0     0.0 22/01/2018 22/01/2018     165       6  Winter
## 8749  Autumn       0     0.0 30/11/2018 30/11/2018     720      12  Autumn
## 4335  Spring       0     0.0 30/05/2018 30/05/2018    1119      14  Spring
## 5610  Summer       0     0.0 22/07/2018 22/07/2018     965      17  Summer
##         col 584 col 585 col 586 col 587 col 588 col 589 col 590 col 591 col 592
## 4035 18/05/2018       2     Yes     Yes     237    0.00     Yes     0.5  Spring
## 8669 27/11/2018       4     Yes     Yes     270    0.00     Yes     0.0  Autumn
## 1255 22/01/2018       6     Yes     Yes    2000    0.00     Yes     0.0  Winter
## 8749 30/11/2018      12     Yes     Yes    1409    1.70     Yes     0.0  Autumn
## 4335 30/05/2018      14     Yes     Yes    1211    2.92     Yes     0.0  Spring
## 5610 22/07/2018      17     Yes     Yes    1837    1.82     Yes     0.0  Summer
##      col 593    col 594 col 595 col 596 col 597 col 598 col 599 col 600 col 601
## 4035     0.5 18/05/2018     1.5  Spring    0.00      98       2       0     0.5
## 8669     0.0 27/11/2018     1.0  Autumn    0.00      88       4       0     0.0
## 1255     0.0 22/01/2018     0.4  Winter    0.00      33       6       0     0.0
## 8749     0.0 30/11/2018     1.3  Autumn    1.70      35      12       0     0.0
## 4335     0.0 30/05/2018     2.9  Spring    2.92      58      14       0     0.0
## 5610     0.0 22/07/2018     2.1  Summer    1.82      33      17       0     0.0
##         col 602 col 603    col 604 col 605 col 606 col 607 col 608 col 609
## 4035 18/05/2018     237 18/05/2018      98     1.5    18.4       2     Yes
## 8669 27/11/2018     270 27/11/2018      88     1.0     1.2       4     Yes
## 1255 22/01/2018    2000 22/01/2018      33     0.4   -14.3       6     Yes
## 8749 30/11/2018    1409 30/11/2018      35     1.3    -7.8      12     Yes
## 4335 30/05/2018    1211 30/05/2018      58     2.9    15.5      14     Yes
## 5610 22/07/2018    1837 22/07/2018      33     2.1    18.5      17     Yes
##         col 610 col 611    col 612 col 613 col 614 col 615 col 616 col 617
## 4035 18/05/2018       2 No Holiday      98    0.00    18.8     Yes     0.5
## 8669 27/11/2018       4 No Holiday      88    0.00     3.1     Yes     0.0
## 1255 22/01/2018       6 No Holiday      33    0.00     0.0     Yes     0.0
## 8749 30/11/2018      12 No Holiday      35    1.70     6.6     Yes     0.0
## 4335 30/05/2018      14 No Holiday      58    2.92    24.3     Yes     0.0
## 5610 22/07/2018      17 No Holiday      33    1.82    37.6     Yes     0.0
##      col 618 col 619 col 620 col 621 col 622 col 623    col 624 col 625
## 4035       2     237       2       0     Yes    0.00 18/05/2018     Yes
## 8669       4     270       4       0     Yes    0.00 27/11/2018     Yes
## 1255       6    2000       6       0     Yes    0.00 22/01/2018     Yes
## 8749      12    1409      12       0     Yes    1.70 30/11/2018     Yes
## 4335      14    1211      14       0     Yes    2.92 30/05/2018     Yes
## 5610      17    1837      17       0     Yes    1.82 22/07/2018     Yes
##         col 626 col 627 col 628 col 629 col 630    col 631 col 632 col 633
## 4035 18/05/2018    18.4     1.5     237    0.00 No Holiday     237    18.4
## 8669 27/11/2018     1.2     1.0     270    0.00 No Holiday     270     1.2
## 1255 22/01/2018   -14.3     0.4    2000    0.00 No Holiday    2000   -14.3
## 8749 30/11/2018    -7.8     1.3    1409    1.70 No Holiday    1409    -7.8
## 4335 30/05/2018    15.5     2.9    1211    2.92 No Holiday    1211    15.5
## 5610 22/07/2018    18.5     2.1    1837    1.82 No Holiday    1837    18.5
##      col 634 col 635 col 636 col 637 col 638 col 639 col 640 col 641    col 642
## 4035     0.5    18.8     1.5       0  Spring  Spring  Spring    0.00 No Holiday
## 8669     0.0     3.1     1.0       0  Autumn  Autumn  Autumn    0.00 No Holiday
## 1255     0.0     0.0     0.4       0  Winter  Winter  Winter    0.00 No Holiday
## 8749     0.0     6.6     1.3       0  Autumn  Autumn  Autumn    1.70 No Holiday
## 4335     0.0    24.3     2.9       0  Spring  Spring  Spring    2.92 No Holiday
## 5610     0.0    37.6     2.1       0  Summer  Summer  Summer    1.82 No Holiday
##      col 643 col 644 col 645    col 646    col 647 col 648 col 649    col 650
## 4035      48      98       2 18/05/2018 No Holiday    18.4       0 No Holiday
## 8669      95      88       4 27/11/2018 No Holiday     1.2       0 No Holiday
## 1255     165      33       6 22/01/2018 No Holiday   -14.3       0 No Holiday
## 8749     720      35      12 30/11/2018 No Holiday    -7.8       0 No Holiday
## 4335    1119      58      14 30/05/2018 No Holiday    15.5       0 No Holiday
## 5610     965      33      17 22/07/2018 No Holiday    18.5       0 No Holiday
##      col 651 col 652 col 653 col 654 col 655 col 656    col 657 col 658 col 659
## 4035      98     Yes    0.00      48    18.4    18.4 18/05/2018    18.4    0.00
## 8669      88     Yes    0.00      95     1.2     1.2 27/11/2018     1.2    0.00
## 1255      33     Yes    0.00     165   -14.3   -14.3 22/01/2018   -14.3    0.00
## 8749      35     Yes    1.70     720    -7.8    -7.8 30/11/2018    -7.8    1.70
## 4335      58     Yes    2.92    1119    15.5    15.5 30/05/2018    15.5    2.92
## 5610      33     Yes    1.82     965    18.5    18.5 22/07/2018    18.5    1.82
##      col 660 col 661 col 662    col 663 col 664 col 665 col 666    col 667
## 4035      98    18.8       0 No Holiday     Yes    18.8     1.5 No Holiday
## 8669      88     3.1       0 No Holiday     Yes     3.1     1.0 No Holiday
## 1255      33     0.0       0 No Holiday     Yes     0.0     0.4 No Holiday
## 8749      35     6.6       0 No Holiday     Yes     6.6     1.3 No Holiday
## 4335      58    24.3       0 No Holiday     Yes    24.3     2.9 No Holiday
## 5610      33    37.6       0 No Holiday     Yes    37.6     2.1 No Holiday
##      col 668    col 669 col 670 col 671 col 672 col 673 col 674 col 675 col 676
## 4035       2 18/05/2018     Yes     Yes    18.8       0     Yes    0.00      48
## 8669       4 27/11/2018     Yes     Yes     3.1       0     Yes    0.00      95
## 1255       6 22/01/2018     Yes     Yes     0.0       0     Yes    0.00     165
## 8749      12 30/11/2018     Yes     Yes     6.6       0     Yes    1.70     720
## 4335      14 30/05/2018     Yes     Yes    24.3       0     Yes    2.92    1119
## 5610      17 22/07/2018     Yes     Yes    37.6       0     Yes    1.82     965
##      col 677 col 678 col 679 col 680 col 681 col 682 col 683 col 684 col 685
## 4035  Spring     1.5  Spring       2     1.5     237     237    18.8    18.8
## 8669  Autumn     1.0  Autumn       4     1.0     270     270     3.1     3.1
## 1255  Winter     0.4  Winter       6     0.4    2000    2000     0.0     0.0
## 8749  Autumn     1.3  Autumn      12     1.3    1409    1409     6.6     6.6
## 4335  Spring     2.9  Spring      14     2.9    1211    1211    24.3    24.3
## 5610  Summer     2.1  Summer      17     2.1    1837    1837    37.6    37.6
##      col 686 col 687 col 688 col 689 col 690 col 691 col 692 col 693 col 694
## 4035       2    18.8      48       0     0.5     Yes     1.5       0     237
## 8669       4     3.1      95       0     0.0     Yes     1.0       0     270
## 1255       6     0.0     165       0     0.0     Yes     0.4       0    2000
## 8749      12     6.6     720       0     0.0     Yes     1.3       0    1409
## 4335      14    24.3    1119       0     0.0     Yes     2.9       0    1211
## 5610      17    37.6     965       0     0.0     Yes     2.1       0    1837
##      col 695 col 696 col 697 col 698 col 699    col 700 col 701 col 702 col 703
## 4035     Yes     0.5    18.8    18.8      48 No Holiday  Spring     237    18.4
## 8669     Yes     0.0     3.1     3.1      95 No Holiday  Autumn     270     1.2
## 1255     Yes     0.0     0.0     0.0     165 No Holiday  Winter    2000   -14.3
## 8749     Yes     0.0     6.6     6.6     720 No Holiday  Autumn    1409    -7.8
## 4335     Yes     0.0    24.3    24.3    1119 No Holiday  Spring    1211    15.5
## 5610     Yes     0.0    37.6    37.6     965 No Holiday  Summer    1837    18.5
##      col 704 col 705 col 706    col 707 col 708 col 709 col 710 col 711 col 712
## 4035       0    18.8    0.00 18/05/2018       0    18.8       0  Spring     Yes
## 8669       0     3.1    0.00 27/11/2018       0     3.1       0  Autumn     Yes
## 1255       0     0.0    0.00 22/01/2018       0     0.0       0  Winter     Yes
## 8749       0     6.6    1.70 30/11/2018       0     6.6       0  Autumn     Yes
## 4335       0    24.3    2.92 30/05/2018       0    24.3       0  Spring     Yes
## 5610       0    37.6    1.82 22/07/2018       0    37.6       0  Summer     Yes
##      col 713    col 714 col 715    col 716 col 717    col 718 col 719 col 720
## 4035     1.5 No Holiday      48 No Holiday       2 18/05/2018     1.5     Yes
## 8669     1.0 No Holiday      95 No Holiday       4 27/11/2018     1.0     Yes
## 1255     0.4 No Holiday     165 No Holiday       6 22/01/2018     0.4     Yes
## 8749     1.3 No Holiday     720 No Holiday      12 30/11/2018     1.3     Yes
## 4335     2.9 No Holiday    1119 No Holiday      14 30/05/2018     2.9     Yes
## 5610     2.1 No Holiday     965 No Holiday      17 22/07/2018     2.1     Yes
##      col 721 col 722 col 723 col 724    col 725 col 726    col 727 col 728
## 4035     237      48    18.8       0 No Holiday  Spring 18/05/2018    18.4
## 8669     270      95     3.1       0 No Holiday  Autumn 27/11/2018     1.2
## 1255    2000     165     0.0       0 No Holiday  Winter 22/01/2018   -14.3
## 8749    1409     720     6.6       0 No Holiday  Autumn 30/11/2018    -7.8
## 4335    1211    1119    24.3       0 No Holiday  Spring 30/05/2018    15.5
## 5610    1837     965    37.6       0 No Holiday  Summer 22/07/2018    18.5
##      col 729 col 730 col 731 col 732 col 733 col 734 col 735    col 736 col 737
## 4035  Spring    18.4  Spring    18.4    0.00    18.4     Yes No Holiday     Yes
## 8669  Autumn     1.2  Autumn     1.2    0.00     1.2     Yes No Holiday     Yes
## 1255  Winter   -14.3  Winter   -14.3    0.00   -14.3     Yes No Holiday     Yes
## 8749  Autumn    -7.8  Autumn    -7.8    1.70    -7.8     Yes No Holiday     Yes
## 4335  Spring    15.5  Spring    15.5    2.92    15.5     Yes No Holiday     Yes
## 5610  Summer    18.5  Summer    18.5    1.82    18.5     Yes No Holiday     Yes
##         col 738    col 739 col 740 col 741 col 742 col 743 col 744 col 745
## 4035 18/05/2018 No Holiday      48  Spring     1.5    18.4     237  Spring
## 8669 27/11/2018 No Holiday      95  Autumn     1.0     1.2     270  Autumn
## 1255 22/01/2018 No Holiday     165  Winter     0.4   -14.3    2000  Winter
## 8749 30/11/2018 No Holiday     720  Autumn     1.3    -7.8    1409  Autumn
## 4335 30/05/2018 No Holiday    1119  Spring     2.9    15.5    1211  Spring
## 5610 22/07/2018 No Holiday     965  Summer     2.1    18.5    1837  Summer
##      col 746 col 747 col 748 col 749    col 750 col 751    col 752 col 753
## 4035     0.5      98    0.00       0 18/05/2018  Spring No Holiday     1.5
## 8669     0.0      88    0.00       0 27/11/2018  Autumn No Holiday     1.0
## 1255     0.0      33    0.00       0 22/01/2018  Winter No Holiday     0.4
## 8749     0.0      35    1.70       0 30/11/2018  Autumn No Holiday     1.3
## 4335     0.0      58    2.92       0 30/05/2018  Spring No Holiday     2.9
## 5610     0.0      33    1.82       0 22/07/2018  Summer No Holiday     2.1
##      col 754 col 755 col 756 col 757    col 758 col 759 col 760 col 761 col 762
## 4035      98  Spring     0.5    18.4 No Holiday     0.5      48      48     0.5
## 8669      88  Autumn     0.0     1.2 No Holiday     0.0      95      95     0.0
## 1255      33  Winter     0.0   -14.3 No Holiday     0.0     165     165     0.0
## 8749      35  Autumn     0.0    -7.8 No Holiday     0.0     720     720     0.0
## 4335      58  Spring     0.0    15.5 No Holiday     0.0    1119    1119     0.0
## 5610      33  Summer     0.0    18.5 No Holiday     0.0     965     965     0.0
##         col 763    col 764 col 765 col 766 col 767 col 768 col 769 col 770
## 4035 18/05/2018 No Holiday  Spring     237     1.5       0    18.8     0.5
## 8669 27/11/2018 No Holiday  Autumn     270     1.0       0     3.1     0.0
## 1255 22/01/2018 No Holiday  Winter    2000     0.4       0     0.0     0.0
## 8749 30/11/2018 No Holiday  Autumn    1409     1.3       0     6.6     0.0
## 4335 30/05/2018 No Holiday  Spring    1211     2.9       0    24.3     0.0
## 5610 22/07/2018 No Holiday  Summer    1837     2.1       0    37.6     0.0
##      col 771 col 772 col 773 col 774 col 775 col 776 col 777    col 778 col 779
## 4035     1.5    0.00  Spring     0.5     237     1.5      48 18/05/2018     0.5
## 8669     1.0    0.00  Autumn     0.0     270     1.0      95 27/11/2018     0.0
## 1255     0.4    0.00  Winter     0.0    2000     0.4     165 22/01/2018     0.0
## 8749     1.3    1.70  Autumn     0.0    1409     1.3     720 30/11/2018     0.0
## 4335     2.9    2.92  Spring     0.0    1211     2.9    1119 30/05/2018     0.0
## 5610     2.1    1.82  Summer     0.0    1837     2.1     965 22/07/2018     0.0
##      col 780 col 781 col 782 col 783 col 784 col 785 col 786 col 787 col 788
## 4035     1.5     Yes       0     0.5      98     0.5  Spring  Spring     237
## 8669     1.0     Yes       0     0.0      88     0.0  Autumn  Autumn     270
## 1255     0.4     Yes       0     0.0      33     0.0  Winter  Winter    2000
## 8749     1.3     Yes       0     0.0      35     0.0  Autumn  Autumn    1409
## 4335     2.9     Yes       0     0.0      58     0.0  Spring  Spring    1211
## 5610     2.1     Yes       0     0.0      33     0.0  Summer  Summer    1837
##      col 789    col 790 col 791 col 792 col 793 col 794 col 795 col 796 col 797
## 4035     237 No Holiday    18.8     Yes     0.5     Yes     237       0     0.5
## 8669     270 No Holiday     3.1     Yes     0.0     Yes     270       0     0.0
## 1255    2000 No Holiday     0.0     Yes     0.0     Yes    2000       0     0.0
## 8749    1409 No Holiday     6.6     Yes     0.0     Yes    1409       0     0.0
## 4335    1211 No Holiday    24.3     Yes     0.0     Yes    1211       0     0.0
## 5610    1837 No Holiday    37.6     Yes     0.0     Yes    1837       0     0.0
##      col 798 col 799 col 800 col 801 col 802 col 803 col 804 col 805 col 806
## 4035      48     1.5       2    0.00    18.8     1.5     0.5       2    18.4
## 8669      95     1.0       4    0.00     3.1     1.0     0.0       4     1.2
## 1255     165     0.4       6    0.00     0.0     0.4     0.0       6   -14.3
## 8749     720     1.3      12    1.70     6.6     1.3     0.0      12    -7.8
## 4335    1119     2.9      14    2.92    24.3     2.9     0.0      14    15.5
## 5610     965     2.1      17    1.82    37.6     2.1     0.0      17    18.5
##      col 807 col 808 col 809 col 810 col 811 col 812    col 813 col 814 col 815
## 4035    18.4    18.4      48    18.8     1.5    0.00 18/05/2018    0.00    0.00
## 8669     1.2     1.2      95     3.1     1.0    0.00 27/11/2018    0.00    0.00
## 1255   -14.3   -14.3     165     0.0     0.4    0.00 22/01/2018    0.00    0.00
## 8749    -7.8    -7.8     720     6.6     1.3    1.70 30/11/2018    1.70    1.70
## 4335    15.5    15.5    1119    24.3     2.9    2.92 30/05/2018    2.92    2.92
## 5610    18.5    18.5     965    37.6     2.1    1.82 22/07/2018    1.82    1.82
##      col 816 col 817 col 818 col 819 col 820    col 821 col 822 col 823
## 4035    18.4     0.5    18.8       2     0.5 18/05/2018     237       0
## 8669     1.2     0.0     3.1       4     0.0 27/11/2018     270       0
## 1255   -14.3     0.0     0.0       6     0.0 22/01/2018    2000       0
## 8749    -7.8     0.0     6.6      12     0.0 30/11/2018    1409       0
## 4335    15.5     0.0    24.3      14     0.0 30/05/2018    1211       0
## 5610    18.5     0.0    37.6      17     0.0 22/07/2018    1837       0
##         col 824 col 825 col 826    col 827 col 828 col 829 col 830 col 831
## 4035 No Holiday       2      48 18/05/2018      48      48     Yes    0.00
## 8669 No Holiday       4      95 27/11/2018      95      95     Yes    0.00
## 1255 No Holiday       6     165 22/01/2018     165     165     Yes    0.00
## 8749 No Holiday      12     720 30/11/2018     720     720     Yes    1.70
## 4335 No Holiday      14    1119 30/05/2018    1119    1119     Yes    2.92
## 5610 No Holiday      17     965 22/07/2018     965     965     Yes    1.82
##      col 832 col 833 col 834    col 835 col 836 col 837 col 838    col 839
## 4035    18.4     0.5     237 18/05/2018     Yes     Yes     1.5 18/05/2018
## 8669     1.2     0.0     270 27/11/2018     Yes     Yes     1.0 27/11/2018
## 1255   -14.3     0.0    2000 22/01/2018     Yes     Yes     0.4 22/01/2018
## 8749    -7.8     0.0    1409 30/11/2018     Yes     Yes     1.3 30/11/2018
## 4335    15.5     0.0    1211 30/05/2018     Yes     Yes     2.9 30/05/2018
## 5610    18.5     0.0    1837 22/07/2018     Yes     Yes     2.1 22/07/2018
##      col 840 col 841 col 842 col 843 col 844 col 845 col 846 col 847 col 848
## 4035     1.5    18.8      98  Spring      48     0.5    18.8  Spring       0
## 8669     1.0     3.1      88  Autumn      95     0.0     3.1  Autumn       0
## 1255     0.4     0.0      33  Winter     165     0.0     0.0  Winter       0
## 8749     1.3     6.6      35  Autumn     720     0.0     6.6  Autumn       0
## 4335     2.9    24.3      58  Spring    1119     0.0    24.3  Spring       0
## 5610     2.1    37.6      33  Summer     965     0.0    37.6  Summer       0
##      col 849 col 850 col 851 col 852    col 853 col 854 col 855 col 856 col 857
## 4035    0.00       0     0.5  Spring 18/05/2018     237     1.5    18.4      48
## 8669    0.00       0     0.0  Autumn 27/11/2018     270     1.0     1.2      95
## 1255    0.00       0     0.0  Winter 22/01/2018    2000     0.4   -14.3     165
## 8749    1.70       0     0.0  Autumn 30/11/2018    1409     1.3    -7.8     720
## 4335    2.92       0     0.0  Spring 30/05/2018    1211     2.9    15.5    1119
## 5610    1.82       0     0.0  Summer 22/07/2018    1837     2.1    18.5     965
##      col 858 col 859 col 860 col 861 col 862 col 863 col 864 col 865 col 866
## 4035    18.8     Yes    18.4     237     Yes     1.5    18.8      48      48
## 8669     3.1     Yes     1.2     270     Yes     1.0     3.1      95      95
## 1255     0.0     Yes   -14.3    2000     Yes     0.4     0.0     165     165
## 8749     6.6     Yes    -7.8    1409     Yes     1.3     6.6     720     720
## 4335    24.3     Yes    15.5    1211     Yes     2.9    24.3    1119    1119
## 5610    37.6     Yes    18.5    1837     Yes     2.1    37.6     965     965
##      col 867    col 868 col 869 col 870 col 871 col 872 col 873 col 874
## 4035    18.8 No Holiday     1.5       0     0.5  Spring      98       0
## 8669     3.1 No Holiday     1.0       0     0.0  Autumn      88       0
## 1255     0.0 No Holiday     0.4       0     0.0  Winter      33       0
## 8749     6.6 No Holiday     1.3       0     0.0  Autumn      35       0
## 4335    24.3 No Holiday     2.9       0     0.0  Spring      58       0
## 5610    37.6 No Holiday     2.1       0     0.0  Summer      33       0
##         col 875 col 876 col 877 col 878    col 879 col 880 col 881 col 882
## 4035 No Holiday    18.8      98     0.5 18/05/2018       2       2    18.8
## 8669 No Holiday     3.1      88     0.0 27/11/2018       4       4     3.1
## 1255 No Holiday     0.0      33     0.0 22/01/2018       6       6     0.0
## 8749 No Holiday     6.6      35     0.0 30/11/2018      12      12     6.6
## 4335 No Holiday    24.3      58     0.0 30/05/2018      14      14    24.3
## 5610 No Holiday    37.6      33     0.0 22/07/2018      17      17    37.6
##      col 883 col 884 col 885 col 886    col 887 col 888 col 889    col 890
## 4035      98     237     0.5     1.5 18/05/2018    18.4    0.00 No Holiday
## 8669      88     270     0.0     1.0 27/11/2018     1.2    0.00 No Holiday
## 1255      33    2000     0.0     0.4 22/01/2018   -14.3    0.00 No Holiday
## 8749      35    1409     0.0     1.3 30/11/2018    -7.8    1.70 No Holiday
## 4335      58    1211     0.0     2.9 30/05/2018    15.5    2.92 No Holiday
## 5610      33    1837     0.0     2.1 22/07/2018    18.5    1.82 No Holiday
##      col 891 col 892    col 893 col 894 col 895 col 896 col 897 col 898 col 899
## 4035     0.5      48 18/05/2018    18.4     1.5    0.00     1.5     237      98
## 8669     0.0      95 27/11/2018     1.2     1.0    0.00     1.0     270      88
## 1255     0.0     165 22/01/2018   -14.3     0.4    0.00     0.4    2000      33
## 8749     0.0     720 30/11/2018    -7.8     1.3    1.70     1.3    1409      35
## 4335     0.0    1119 30/05/2018    15.5     2.9    2.92     2.9    1211      58
## 5610     0.0     965 22/07/2018    18.5     2.1    1.82     2.1    1837      33
##         col 900    col 901 col 902 col 903    col 904 col 905    col 906
## 4035 18/05/2018 No Holiday     1.5      48 18/05/2018  Spring No Holiday
## 8669 27/11/2018 No Holiday     1.0      95 27/11/2018  Autumn No Holiday
## 1255 22/01/2018 No Holiday     0.4     165 22/01/2018  Winter No Holiday
## 8749 30/11/2018 No Holiday     1.3     720 30/11/2018  Autumn No Holiday
## 4335 30/05/2018 No Holiday     2.9    1119 30/05/2018  Spring No Holiday
## 5610 22/07/2018 No Holiday     2.1     965 22/07/2018  Summer No Holiday
##      col 907 col 908 col 909 col 910 col 911 col 912 col 913 col 914 col 915
## 4035    0.00      48    18.8  Spring     237       2     237     1.5  Spring
## 8669    0.00      95     3.1  Autumn     270       4     270     1.0  Autumn
## 1255    0.00     165     0.0  Winter    2000       6    2000     0.4  Winter
## 8749    1.70     720     6.6  Autumn    1409      12    1409     1.3  Autumn
## 4335    2.92    1119    24.3  Spring    1211      14    1211     2.9  Spring
## 5610    1.82     965    37.6  Summer    1837      17    1837     2.1  Summer
##         col 916 col 917 col 918 col 919 col 920 col 921 col 922 col 923 col 924
## 4035 No Holiday       2    0.00     0.5     Yes       0    18.4       0       0
## 8669 No Holiday       4    0.00     0.0     Yes       0     1.2       0       0
## 1255 No Holiday       6    0.00     0.0     Yes       0   -14.3       0       0
## 8749 No Holiday      12    1.70     0.0     Yes       0    -7.8       0       0
## 4335 No Holiday      14    2.92     0.0     Yes       0    15.5       0       0
## 5610 No Holiday      17    1.82     0.0     Yes       0    18.5       0       0
##      col 925 col 926 col 927 col 928 col 929    col 930 col 931 col 932 col 933
## 4035      98    18.4     0.5    0.00     237 18/05/2018    18.4      98    18.4
## 8669      88     1.2     0.0    0.00     270 27/11/2018     1.2      88     1.2
## 1255      33   -14.3     0.0    0.00    2000 22/01/2018   -14.3      33   -14.3
## 8749      35    -7.8     0.0    1.70    1409 30/11/2018    -7.8      35    -7.8
## 4335      58    15.5     0.0    2.92    1211 30/05/2018    15.5      58    15.5
## 5610      33    18.5     0.0    1.82    1837 22/07/2018    18.5      33    18.5
##      col 934 col 935 col 936    col 937 col 938 col 939 col 940 col 941 col 942
## 4035     237  Spring      48 18/05/2018    0.00       2    0.00     237       2
## 8669     270  Autumn      95 27/11/2018    0.00       4    0.00     270       4
## 1255    2000  Winter     165 22/01/2018    0.00       6    0.00    2000       6
## 8749    1409  Autumn     720 30/11/2018    1.70      12    1.70    1409      12
## 4335    1211  Spring    1119 30/05/2018    2.92      14    2.92    1211      14
## 5610    1837  Summer     965 22/07/2018    1.82      17    1.82    1837      17
##      col 943 col 944 col 945 col 946 col 947 col 948 col 949 col 950 col 951
## 4035       0     1.5      48  Spring    18.8       0    18.8     0.5      98
## 8669       0     1.0      95  Autumn     3.1       0     3.1     0.0      88
## 1255       0     0.4     165  Winter     0.0       0     0.0     0.0      33
## 8749       0     1.3     720  Autumn     6.6       0     6.6     0.0      35
## 4335       0     2.9    1119  Spring    24.3       0    24.3     0.0      58
## 5610       0     2.1     965  Summer    37.6       0    37.6     0.0      33
##      col 952    col 953    col 954 col 955 col 956 col 957 col 958    col 959
## 4035     1.5 18/05/2018 18/05/2018     Yes     1.5  Spring    0.00 18/05/2018
## 8669     1.0 27/11/2018 27/11/2018     Yes     1.0  Autumn    0.00 27/11/2018
## 1255     0.4 22/01/2018 22/01/2018     Yes     0.4  Winter    0.00 22/01/2018
## 8749     1.3 30/11/2018 30/11/2018     Yes     1.3  Autumn    1.70 30/11/2018
## 4335     2.9 30/05/2018 30/05/2018     Yes     2.9  Spring    2.92 30/05/2018
## 5610     2.1 22/07/2018 22/07/2018     Yes     2.1  Summer    1.82 22/07/2018
##      col 960 col 961 col 962 col 963 col 964 col 965 col 966 col 967 col 968
## 4035     Yes     0.5     Yes  Spring    18.4  Spring       0    0.00  Spring
## 8669     Yes     0.0     Yes  Autumn     1.2  Autumn       0    0.00  Autumn
## 1255     Yes     0.0     Yes  Winter   -14.3  Winter       0    0.00  Winter
## 8749     Yes     0.0     Yes  Autumn    -7.8  Autumn       0    1.70  Autumn
## 4335     Yes     0.0     Yes  Spring    15.5  Spring       0    2.92  Spring
## 5610     Yes     0.0     Yes  Summer    18.5  Summer       0    1.82  Summer
##      col 969 col 970 col 971 col 972 col 973 col 974 col 975 col 976 col 977
## 4035       0      98     1.5       0  Spring    18.4     1.5  Spring     0.5
## 8669       0      88     1.0       0  Autumn     1.2     1.0  Autumn     0.0
## 1255       0      33     0.4       0  Winter   -14.3     0.4  Winter     0.0
## 8749       0      35     1.3       0  Autumn    -7.8     1.3  Autumn     0.0
## 4335       0      58     2.9       0  Spring    15.5     2.9  Spring     0.0
## 5610       0      33     2.1       0  Summer    18.5     2.1  Summer     0.0
##         col 978 col 979 col 980 col 981 col 982 col 983 col 984 col 985 col 986
## 4035 No Holiday    0.00       0    18.8    18.4    18.4      98      48      48
## 8669 No Holiday    0.00       0     3.1     1.2     1.2      88      95      95
## 1255 No Holiday    0.00       0     0.0   -14.3   -14.3      33     165     165
## 8749 No Holiday    1.70       0     6.6    -7.8    -7.8      35     720     720
## 4335 No Holiday    2.92       0    24.3    15.5    15.5      58    1119    1119
## 5610 No Holiday    1.82       0    37.6    18.5    18.5      33     965     965
##      col 987 col 988 col 989 col 990 col 991 col 992 col 993 col 994 col 995
## 4035      48     Yes      48      98      48      48    0.00      98    18.4
## 8669      95     Yes      95      88      95      95    0.00      88     1.2
## 1255     165     Yes     165      33     165     165    0.00      33   -14.3
## 8749     720     Yes     720      35     720     720    1.70      35    -7.8
## 4335    1119     Yes    1119      58    1119    1119    2.92      58    15.5
## 5610     965     Yes     965      33     965     965    1.82      33    18.5
##      col 996 col 997 col 998 col 999 col 1000 col 1001 col 1002 col 1003
## 4035     Yes      98  Spring    18.4   Spring     18.8      Yes     0.00
## 8669     Yes      88  Autumn     1.2   Autumn      3.1      Yes     0.00
## 1255     Yes      33  Winter   -14.3   Winter      0.0      Yes     0.00
## 8749     Yes      35  Autumn    -7.8   Autumn      6.6      Yes     1.70
## 4335     Yes      58  Spring    15.5   Spring     24.3      Yes     2.92
## 5610     Yes      33  Summer    18.5   Summer     37.6      Yes     1.82
##      col 1004   col 1005 col 1006 col 1007 col 1008   col 1009 col 1010
## 4035      0.5 18/05/2018      237        2        0 18/05/2018       98
## 8669      0.0 27/11/2018      270        4        0 27/11/2018       88
## 1255      0.0 22/01/2018     2000        6        0 22/01/2018       33
## 8749      0.0 30/11/2018     1409       12        0 30/11/2018       35
## 4335      0.0 30/05/2018     1211       14        0 30/05/2018       58
## 5610      0.0 22/07/2018     1837       17        0 22/07/2018       33
##      col 1011 col 1012 col 1013 col 1014 col 1015 col 1016 col 1017 col 1018
## 4035       48        0     18.8      Yes        2       98   Spring        2
## 8669       95        0      3.1      Yes        4       88   Autumn        4
## 1255      165        0      0.0      Yes        6       33   Winter        6
## 8749      720        0      6.6      Yes       12       35   Autumn       12
## 4335     1119        0     24.3      Yes       14       58   Spring       14
## 5610      965        0     37.6      Yes       17       33   Summer       17
##      col 1019 col 1020 col 1021 col 1022 col 1023 col 1024   col 1025 col 1026
## 4035     0.00     18.8      Yes      1.5     18.8     18.4 18/05/2018        0
## 8669     0.00      3.1      Yes      1.0      3.1      1.2 27/11/2018        0
## 1255     0.00      0.0      Yes      0.4      0.0    -14.3 22/01/2018        0
## 8749     1.70      6.6      Yes      1.3      6.6     -7.8 30/11/2018        0
## 4335     2.92     24.3      Yes      2.9     24.3     15.5 30/05/2018        0
## 5610     1.82     37.6      Yes      2.1     37.6     18.5 22/07/2018        0
##      col 1027 col 1028   col 1029 col 1030 col 1031 col 1032 col 1033 col 1034
## 4035       98      0.5 No Holiday       98      Yes      Yes      0.5     18.8
## 8669       88      0.0 No Holiday       88      Yes      Yes      0.0      3.1
## 1255       33      0.0 No Holiday       33      Yes      Yes      0.0      0.0
## 8749       35      0.0 No Holiday       35      Yes      Yes      0.0      6.6
## 4335       58      0.0 No Holiday       58      Yes      Yes      0.0     24.3
## 5610       33      0.0 No Holiday       33      Yes      Yes      0.0     37.6
##      col 1035 col 1036 col 1037 col 1038 col 1039 col 1040 col 1041 col 1042
## 4035       48      Yes       98        2     0.00      0.5   Spring      237
## 8669       95      Yes       88        4     0.00      0.0   Autumn      270
## 1255      165      Yes       33        6     0.00      0.0   Winter     2000
## 8749      720      Yes       35       12     1.70      0.0   Autumn     1409
## 4335     1119      Yes       58       14     2.92      0.0   Spring     1211
## 5610      965      Yes       33       17     1.82      0.0   Summer     1837
##      col 1043 col 1044   col 1045 col 1046 col 1047 col 1048 col 1049 col 1050
## 4035        0      Yes 18/05/2018     18.4     18.8      237     0.00        0
## 8669        0      Yes 27/11/2018      1.2      3.1      270     0.00        0
## 1255        0      Yes 22/01/2018    -14.3      0.0     2000     0.00        0
## 8749        0      Yes 30/11/2018     -7.8      6.6     1409     1.70        0
## 4335        0      Yes 30/05/2018     15.5     24.3     1211     2.92        0
## 5610        0      Yes 22/07/2018     18.5     37.6     1837     1.82        0
##      col 1051 col 1052 col 1053 col 1054 col 1055 col 1056 col 1057 col 1058
## 4035       48       98        2      1.5      0.5   Spring       48     18.8
## 8669       95       88        4      1.0      0.0   Autumn       95      3.1
## 1255      165       33        6      0.4      0.0   Winter      165      0.0
## 8749      720       35       12      1.3      0.0   Autumn      720      6.6
## 4335     1119       58       14      2.9      0.0   Spring     1119     24.3
## 5610      965       33       17      2.1      0.0   Summer      965     37.6
##        col 1059 col 1060 col 1061 col 1062 col 1063 col 1064 col 1065 col 1066
## 4035 No Holiday     18.8      0.5     18.4       48     18.4      Yes       48
## 8669 No Holiday      3.1      0.0      1.2       95      1.2      Yes       95
## 1255 No Holiday      0.0      0.0    -14.3      165    -14.3      Yes      165
## 8749 No Holiday      6.6      0.0     -7.8      720     -7.8      Yes      720
## 4335 No Holiday     24.3      0.0     15.5     1119     15.5      Yes     1119
## 5610 No Holiday     37.6      0.0     18.5      965     18.5      Yes      965
##      col 1067   col 1068 col 1069 col 1070 col 1071 col 1072 col 1073 col 1074
## 4035       98 18/05/2018        2      0.5     18.8     18.4       48        2
## 8669       88 27/11/2018        4      0.0      3.1      1.2       95        4
## 1255       33 22/01/2018        6      0.0      0.0    -14.3      165        6
## 8749       35 30/11/2018       12      0.0      6.6     -7.8      720       12
## 4335       58 30/05/2018       14      0.0     24.3     15.5     1119       14
## 5610       33 22/07/2018       17      0.0     37.6     18.5      965       17
##      col 1075 col 1076 col 1077 col 1078   col 1079 col 1080 col 1081 col 1082
## 4035       48       48       98     18.8 18/05/2018     18.8        2     0.00
## 8669       95       95       88      3.1 27/11/2018      3.1        4     0.00
## 1255      165      165       33      0.0 22/01/2018      0.0        6     0.00
## 8749      720      720       35      6.6 30/11/2018      6.6       12     1.70
## 4335     1119     1119       58     24.3 30/05/2018     24.3       14     2.92
## 5610      965      965       33     37.6 22/07/2018     37.6       17     1.82
##      col 1083 col 1084 col 1085 col 1086 col 1087 col 1088 col 1089 col 1090
## 4035      1.5   Spring        0     18.8       98     18.4      1.5     18.8
## 8669      1.0   Autumn        0      3.1       88      1.2      1.0      3.1
## 1255      0.4   Winter        0      0.0       33    -14.3      0.4      0.0
## 8749      1.3   Autumn        0      6.6       35     -7.8      1.3      6.6
## 4335      2.9   Spring        0     24.3       58     15.5      2.9     24.3
## 5610      2.1   Summer        0     37.6       33     18.5      2.1     37.6
##      col 1091 col 1092 col 1093 col 1094   col 1095 col 1096 col 1097
## 4035       48       48     18.8      0.5 18/05/2018      1.5       48
## 8669       95       95      3.1      0.0 27/11/2018      1.0       95
## 1255      165      165      0.0      0.0 22/01/2018      0.4      165
## 8749      720      720      6.6      0.0 30/11/2018      1.3      720
## 4335     1119     1119     24.3      0.0 30/05/2018      2.9     1119
## 5610      965      965     37.6      0.0 22/07/2018      2.1      965
##        col 1098 col 1099 col 1100 col 1101 col 1102 col 1103   col 1104
## 4035 No Holiday      1.5      Yes        2      1.5      0.5 No Holiday
## 8669 No Holiday      1.0      Yes        4      1.0      0.0 No Holiday
## 1255 No Holiday      0.4      Yes        6      0.4      0.0 No Holiday
## 8749 No Holiday      1.3      Yes       12      1.3      0.0 No Holiday
## 4335 No Holiday      2.9      Yes       14      2.9      0.0 No Holiday
## 5610 No Holiday      2.1      Yes       17      2.1      0.0 No Holiday
##        col 1105   col 1106 col 1107   col 1108 col 1109 col 1110 col 1111
## 4035 No Holiday 18/05/2018      Yes No Holiday        0   Spring     18.4
## 8669 No Holiday 27/11/2018      Yes No Holiday        0   Autumn      1.2
## 1255 No Holiday 22/01/2018      Yes No Holiday        0   Winter    -14.3
## 8749 No Holiday 30/11/2018      Yes No Holiday        0   Autumn     -7.8
## 4335 No Holiday 30/05/2018      Yes No Holiday        0   Spring     15.5
## 5610 No Holiday 22/07/2018      Yes No Holiday        0   Summer     18.5
##        col 1112 col 1113 col 1114 col 1115 col 1116 col 1117 col 1118 col 1119
## 4035 18/05/2018        0      0.5        2      1.5      237        0      237
## 8669 27/11/2018        0      0.0        4      1.0      270        0      270
## 1255 22/01/2018        0      0.0        6      0.4     2000        0     2000
## 8749 30/11/2018        0      0.0       12      1.3     1409        0     1409
## 4335 30/05/2018        0      0.0       14      2.9     1211        0     1211
## 5610 22/07/2018        0      0.0       17      2.1     1837        0     1837
##      col 1120   col 1121 col 1122 col 1123 col 1124 col 1125 col 1126 col 1127
## 4035      Yes No Holiday        0       98       48      237     18.4        2
## 8669      Yes No Holiday        0       88       95      270      1.2        4
## 1255      Yes No Holiday        0       33      165     2000    -14.3        6
## 8749      Yes No Holiday        0       35      720     1409     -7.8       12
## 4335      Yes No Holiday        0       58     1119     1211     15.5       14
## 5610      Yes No Holiday        0       33      965     1837     18.5       17
##      col 1128 col 1129   col 1130 col 1131   col 1132 col 1133 col 1134
## 4035      Yes        0 No Holiday       48 No Holiday     18.4     18.4
## 8669      Yes        0 No Holiday       95 No Holiday      1.2      1.2
## 1255      Yes        0 No Holiday      165 No Holiday    -14.3    -14.3
## 8749      Yes        0 No Holiday      720 No Holiday     -7.8     -7.8
## 4335      Yes        0 No Holiday     1119 No Holiday     15.5     15.5
## 5610      Yes        0 No Holiday      965 No Holiday     18.5     18.5
##      col 1135 col 1136 col 1137   col 1138 col 1139 col 1140 col 1141
## 4035        2      1.5      0.5 No Holiday       48       98      Yes
## 8669        4      1.0      0.0 No Holiday       95       88      Yes
## 1255        6      0.4      0.0 No Holiday      165       33      Yes
## 8749       12      1.3      0.0 No Holiday      720       35      Yes
## 4335       14      2.9      0.0 No Holiday     1119       58      Yes
## 5610       17      2.1      0.0 No Holiday      965       33      Yes
##        col 1142 col 1143   col 1144 col 1145 col 1146 col 1147   col 1148
## 4035 18/05/2018      Yes 18/05/2018       98     18.8      Yes No Holiday
## 8669 27/11/2018      Yes 27/11/2018       88      3.1      Yes No Holiday
## 1255 22/01/2018      Yes 22/01/2018       33      0.0      Yes No Holiday
## 8749 30/11/2018      Yes 30/11/2018       35      6.6      Yes No Holiday
## 4335 30/05/2018      Yes 30/05/2018       58     24.3      Yes No Holiday
## 5610 22/07/2018      Yes 22/07/2018       33     37.6      Yes No Holiday
##      col 1149 col 1150 col 1151 col 1152   col 1153 col 1154   col 1155
## 4035       48      1.5     18.8     0.00 18/05/2018      1.5 No Holiday
## 8669       95      1.0      3.1     0.00 27/11/2018      1.0 No Holiday
## 1255      165      0.4      0.0     0.00 22/01/2018      0.4 No Holiday
## 8749      720      1.3      6.6     1.70 30/11/2018      1.3 No Holiday
## 4335     1119      2.9     24.3     2.92 30/05/2018      2.9 No Holiday
## 5610      965      2.1     37.6     1.82 22/07/2018      2.1 No Holiday
##      col 1156 col 1157 col 1158 col 1159 col 1160 col 1161 col 1162 col 1163
## 4035     0.00       98      1.5      237      Yes   Spring     18.8   Spring
## 8669     0.00       88      1.0      270      Yes   Autumn      3.1   Autumn
## 1255     0.00       33      0.4     2000      Yes   Winter      0.0   Winter
## 8749     1.70       35      1.3     1409      Yes   Autumn      6.6   Autumn
## 4335     2.92       58      2.9     1211      Yes   Spring     24.3   Spring
## 5610     1.82       33      2.1     1837      Yes   Summer     37.6   Summer
##      col 1164 col 1165 col 1166 col 1167 col 1168 col 1169 col 1170   col 1171
## 4035     18.4        2      Yes        2      237     18.8     18.8 18/05/2018
## 8669      1.2        4      Yes        4      270      3.1      3.1 27/11/2018
## 1255    -14.3        6      Yes        6     2000      0.0      0.0 22/01/2018
## 8749     -7.8       12      Yes       12     1409      6.6      6.6 30/11/2018
## 4335     15.5       14      Yes       14     1211     24.3     24.3 30/05/2018
## 5610     18.5       17      Yes       17     1837     37.6     37.6 22/07/2018
##      col 1172   col 1173 col 1174 col 1175 col 1176 col 1177   col 1178
## 4035      237 No Holiday     18.8        2     0.00      0.5 No Holiday
## 8669      270 No Holiday      3.1        4     0.00      0.0 No Holiday
## 1255     2000 No Holiday      0.0        6     0.00      0.0 No Holiday
## 8749     1409 No Holiday      6.6       12     1.70      0.0 No Holiday
## 4335     1211 No Holiday     24.3       14     2.92      0.0 No Holiday
## 5610     1837 No Holiday     37.6       17     1.82      0.0 No Holiday
##        col 1179 col 1180 col 1181 col 1182 col 1183   col 1184 col 1185
## 4035 No Holiday        0       98       98      237 No Holiday   Spring
## 8669 No Holiday        0       88       88      270 No Holiday   Autumn
## 1255 No Holiday        0       33       33     2000 No Holiday   Winter
## 8749 No Holiday        0       35       35     1409 No Holiday   Autumn
## 4335 No Holiday        0       58       58     1211 No Holiday   Spring
## 5610 No Holiday        0       33       33     1837 No Holiday   Summer
##      col 1186 col 1187 col 1188 col 1189   col 1190 col 1191 col 1192 col 1193
## 4035      Yes      Yes       48       48 No Holiday     0.00     18.8     18.4
## 8669      Yes      Yes       95       95 No Holiday     0.00      3.1      1.2
## 1255      Yes      Yes      165      165 No Holiday     0.00      0.0    -14.3
## 8749      Yes      Yes      720      720 No Holiday     1.70      6.6     -7.8
## 4335      Yes      Yes     1119     1119 No Holiday     2.92     24.3     15.5
## 5610      Yes      Yes      965      965 No Holiday     1.82     37.6     18.5
##      col 1194   col 1195 col 1196 col 1197 col 1198 col 1199 col 1200 col 1201
## 4035      Yes 18/05/2018       98      1.5     18.4        2       48      Yes
## 8669      Yes 27/11/2018       88      1.0      1.2        4       95      Yes
## 1255      Yes 22/01/2018       33      0.4    -14.3        6      165      Yes
## 8749      Yes 30/11/2018       35      1.3     -7.8       12      720      Yes
## 4335      Yes 30/05/2018       58      2.9     15.5       14     1119      Yes
## 5610      Yes 22/07/2018       33      2.1     18.5       17      965      Yes
##      col 1202 col 1203 col 1204 col 1205 col 1206 col 1207 col 1208   col 1209
## 4035      237      Yes        2   Spring       98      237       98 18/05/2018
## 8669      270      Yes        4   Autumn       88      270       88 27/11/2018
## 1255     2000      Yes        6   Winter       33     2000       33 22/01/2018
## 8749     1409      Yes       12   Autumn       35     1409       35 30/11/2018
## 4335     1211      Yes       14   Spring       58     1211       58 30/05/2018
## 5610     1837      Yes       17   Summer       33     1837       33 22/07/2018
##      col 1210 col 1211 col 1212 col 1213 col 1214 col 1215 col 1216   col 1217
## 4035      1.5      Yes   Spring        2     18.8        0      Yes 18/05/2018
## 8669      1.0      Yes   Autumn        4      3.1        0      Yes 27/11/2018
## 1255      0.4      Yes   Winter        6      0.0        0      Yes 22/01/2018
## 8749      1.3      Yes   Autumn       12      6.6        0      Yes 30/11/2018
## 4335      2.9      Yes   Spring       14     24.3        0      Yes 30/05/2018
## 5610      2.1      Yes   Summer       17     37.6        0      Yes 22/07/2018
##      col 1218 col 1219   col 1220 col 1221 col 1222 col 1223   col 1224
## 4035       48        2 No Holiday      Yes      Yes        0 18/05/2018
## 8669       95        4 No Holiday      Yes      Yes        0 27/11/2018
## 1255      165        6 No Holiday      Yes      Yes        0 22/01/2018
## 8749      720       12 No Holiday      Yes      Yes        0 30/11/2018
## 4335     1119       14 No Holiday      Yes      Yes        0 30/05/2018
## 5610      965       17 No Holiday      Yes      Yes        0 22/07/2018
##      col 1225 col 1226 col 1227 col 1228 col 1229 col 1230   col 1231 col 1232
## 4035       98      Yes   Spring        0       98      1.5 18/05/2018     18.8
## 8669       88      Yes   Autumn        0       88      1.0 27/11/2018      3.1
## 1255       33      Yes   Winter        0       33      0.4 22/01/2018      0.0
## 8749       35      Yes   Autumn        0       35      1.3 30/11/2018      6.6
## 4335       58      Yes   Spring        0       58      2.9 30/05/2018     24.3
## 5610       33      Yes   Summer        0       33      2.1 22/07/2018     37.6
##      col 1233 col 1234 col 1235   col 1236 col 1237 col 1238 col 1239 col 1240
## 4035       48      0.5      Yes No Holiday      1.5     18.4       98      237
## 8669       95      0.0      Yes No Holiday      1.0      1.2       88      270
## 1255      165      0.0      Yes No Holiday      0.4    -14.3       33     2000
## 8749      720      0.0      Yes No Holiday      1.3     -7.8       35     1409
## 4335     1119      0.0      Yes No Holiday      2.9     15.5       58     1211
## 5610      965      0.0      Yes No Holiday      2.1     18.5       33     1837
##        col 1241 col 1242 col 1243 col 1244 col 1245 col 1246 col 1247 col 1248
## 4035 No Holiday      1.5     0.00     0.00   Spring        0      237      Yes
## 8669 No Holiday      1.0     0.00     0.00   Autumn        0      270      Yes
## 1255 No Holiday      0.4     0.00     0.00   Winter        0     2000      Yes
## 8749 No Holiday      1.3     1.70     1.70   Autumn        0     1409      Yes
## 4335 No Holiday      2.9     2.92     2.92   Spring        0     1211      Yes
## 5610 No Holiday      2.1     1.82     1.82   Summer        0     1837      Yes
##      col 1249 col 1250 col 1251 col 1252   col 1253 col 1254   col 1255
## 4035       48      1.5       98      1.5 No Holiday   Spring No Holiday
## 8669       95      1.0       88      1.0 No Holiday   Autumn No Holiday
## 1255      165      0.4       33      0.4 No Holiday   Winter No Holiday
## 8749      720      1.3       35      1.3 No Holiday   Autumn No Holiday
## 4335     1119      2.9       58      2.9 No Holiday   Spring No Holiday
## 5610      965      2.1       33      2.1 No Holiday   Summer No Holiday
##        col 1256 col 1257 col 1258 col 1259   col 1260 col 1261 col 1262
## 4035 18/05/2018   Spring     18.8      1.5 18/05/2018      1.5      1.5
## 8669 27/11/2018   Autumn      3.1      1.0 27/11/2018      1.0      1.0
## 1255 22/01/2018   Winter      0.0      0.4 22/01/2018      0.4      0.4
## 8749 30/11/2018   Autumn      6.6      1.3 30/11/2018      1.3      1.3
## 4335 30/05/2018   Spring     24.3      2.9 30/05/2018      2.9      2.9
## 5610 22/07/2018   Summer     37.6      2.1 22/07/2018      2.1      2.1
##        col 1263 col 1264   col 1265 col 1266 col 1267 col 1268 col 1269
## 4035 18/05/2018     18.8 No Holiday       98       98        2      1.5
## 8669 27/11/2018      3.1 No Holiday       88       88        4      1.0
## 1255 22/01/2018      0.0 No Holiday       33       33        6      0.4
## 8749 30/11/2018      6.6 No Holiday       35       35       12      1.3
## 4335 30/05/2018     24.3 No Holiday       58       58       14      2.9
## 5610 22/07/2018     37.6 No Holiday       33       33       17      2.1
##      col 1270   col 1271 col 1272 col 1273 col 1274 col 1275 col 1276 col 1277
## 4035        0 No Holiday       48     18.4        0      237      Yes       98
## 8669        0 No Holiday       95      1.2        0      270      Yes       88
## 1255        0 No Holiday      165    -14.3        0     2000      Yes       33
## 8749        0 No Holiday      720     -7.8        0     1409      Yes       35
## 4335        0 No Holiday     1119     15.5        0     1211      Yes       58
## 5610        0 No Holiday      965     18.5        0     1837      Yes       33
##      col 1278 col 1279 col 1280 col 1281 col 1282 col 1283 col 1284 col 1285
## 4035      237        2     18.8      Yes      1.5       98        0       48
## 8669      270        4      3.1      Yes      1.0       88        0       95
## 1255     2000        6      0.0      Yes      0.4       33        0      165
## 8749     1409       12      6.6      Yes      1.3       35        0      720
## 4335     1211       14     24.3      Yes      2.9       58        0     1119
## 5610     1837       17     37.6      Yes      2.1       33        0      965
##      col 1286 col 1287 col 1288   col 1289   col 1290 col 1291 col 1292
## 4035     0.00     18.4      237 18/05/2018 No Holiday     18.4   Spring
## 8669     0.00      1.2      270 27/11/2018 No Holiday      1.2   Autumn
## 1255     0.00    -14.3     2000 22/01/2018 No Holiday    -14.3   Winter
## 8749     1.70     -7.8     1409 30/11/2018 No Holiday     -7.8   Autumn
## 4335     2.92     15.5     1211 30/05/2018 No Holiday     15.5   Spring
## 5610     1.82     18.5     1837 22/07/2018 No Holiday     18.5   Summer
##      col 1293 col 1294 col 1295 col 1296 col 1297 col 1298 col 1299 col 1300
## 4035        2     0.00      1.5      Yes       98   Spring       98      1.5
## 8669        4     0.00      1.0      Yes       88   Autumn       88      1.0
## 1255        6     0.00      0.4      Yes       33   Winter       33      0.4
## 8749       12     1.70      1.3      Yes       35   Autumn       35      1.3
## 4335       14     2.92      2.9      Yes       58   Spring       58      2.9
## 5610       17     1.82      2.1      Yes       33   Summer       33      2.1
##      col 1301 col 1302 col 1303 col 1304 col 1305 col 1306 col 1307 col 1308
## 4035      237      0.5   Spring       98      0.5     18.4      1.5   Spring
## 8669      270      0.0   Autumn       88      0.0      1.2      1.0   Autumn
## 1255     2000      0.0   Winter       33      0.0    -14.3      0.4   Winter
## 8749     1409      0.0   Autumn       35      0.0     -7.8      1.3   Autumn
## 4335     1211      0.0   Spring       58      0.0     15.5      2.9   Spring
## 5610     1837      0.0   Summer       33      0.0     18.5      2.1   Summer
##      col 1309 col 1310   col 1311   col 1312 col 1313 col 1314 col 1315
## 4035       48      Yes No Holiday No Holiday      Yes      1.5     18.8
## 8669       95      Yes No Holiday No Holiday      Yes      1.0      3.1
## 1255      165      Yes No Holiday No Holiday      Yes      0.4      0.0
## 8749      720      Yes No Holiday No Holiday      Yes      1.3      6.6
## 4335     1119      Yes No Holiday No Holiday      Yes      2.9     24.3
## 5610      965      Yes No Holiday No Holiday      Yes      2.1     37.6
##      col 1316 col 1317 col 1318 col 1319 col 1320 col 1321 col 1322 col 1323
## 4035       48      0.5     18.4        0     18.8       98      237       98
## 8669       95      0.0      1.2        0      3.1       88      270       88
## 1255      165      0.0    -14.3        0      0.0       33     2000       33
## 8749      720      0.0     -7.8        0      6.6       35     1409       35
## 4335     1119      0.0     15.5        0     24.3       58     1211       58
## 5610      965      0.0     18.5        0     37.6       33     1837       33
##      col 1324 col 1325 col 1326 col 1327 col 1328   col 1329 col 1330 col 1331
## 4035        0       98     0.00   Spring     0.00 18/05/2018        0     18.8
## 8669        0       88     0.00   Autumn     0.00 27/11/2018        0      3.1
## 1255        0       33     0.00   Winter     0.00 22/01/2018        0      0.0
## 8749        0       35     1.70   Autumn     1.70 30/11/2018        0      6.6
## 4335        0       58     2.92   Spring     2.92 30/05/2018        0     24.3
## 5610        0       33     1.82   Summer     1.82 22/07/2018        0     37.6
##      col 1332 col 1333 col 1334   col 1335 col 1336 col 1337   col 1338
## 4035     18.8     18.4     18.8 18/05/2018      237        2 No Holiday
## 8669      3.1      1.2      3.1 27/11/2018      270        4 No Holiday
## 1255      0.0    -14.3      0.0 22/01/2018     2000        6 No Holiday
## 8749      6.6     -7.8      6.6 30/11/2018     1409       12 No Holiday
## 4335     24.3     15.5     24.3 30/05/2018     1211       14 No Holiday
## 5610     37.6     18.5     37.6 22/07/2018     1837       17 No Holiday
##      col 1339 col 1340   col 1341 col 1342 col 1343 col 1344 col 1345 col 1346
## 4035   Spring     18.8 No Holiday   Spring   Spring     0.00      237      0.5
## 8669   Autumn      3.1 No Holiday   Autumn   Autumn     0.00      270      0.0
## 1255   Winter      0.0 No Holiday   Winter   Winter     0.00     2000      0.0
## 8749   Autumn      6.6 No Holiday   Autumn   Autumn     1.70     1409      0.0
## 4335   Spring     24.3 No Holiday   Spring   Spring     2.92     1211      0.0
## 5610   Summer     37.6 No Holiday   Summer   Summer     1.82     1837      0.0
##      col 1347 col 1348 col 1349 col 1350 col 1351 col 1352 col 1353 col 1354
## 4035        2     0.00     18.8      1.5       48      237      237   Spring
## 8669        4     0.00      3.1      1.0       95      270      270   Autumn
## 1255        6     0.00      0.0      0.4      165     2000     2000   Winter
## 8749       12     1.70      6.6      1.3      720     1409     1409   Autumn
## 4335       14     2.92     24.3      2.9     1119     1211     1211   Spring
## 5610       17     1.82     37.6      2.1      965     1837     1837   Summer
##      col 1355   col 1356 col 1357   col 1358 col 1359 col 1360 col 1361
## 4035      0.5 No Holiday      1.5 18/05/2018        2   Spring   Spring
## 8669      0.0 No Holiday      1.0 27/11/2018        4   Autumn   Autumn
## 1255      0.0 No Holiday      0.4 22/01/2018        6   Winter   Winter
## 8749      0.0 No Holiday      1.3 30/11/2018       12   Autumn   Autumn
## 4335      0.0 No Holiday      2.9 30/05/2018       14   Spring   Spring
## 5610      0.0 No Holiday      2.1 22/07/2018       17   Summer   Summer
##      col 1362 col 1363 col 1364 col 1365   col 1366 col 1367 col 1368 col 1369
## 4035     18.8      0.5      237      Yes 18/05/2018      0.5     18.8      1.5
## 8669      3.1      0.0      270      Yes 27/11/2018      0.0      3.1      1.0
## 1255      0.0      0.0     2000      Yes 22/01/2018      0.0      0.0      0.4
## 8749      6.6      0.0     1409      Yes 30/11/2018      0.0      6.6      1.3
## 4335     24.3      0.0     1211      Yes 30/05/2018      0.0     24.3      2.9
## 5610     37.6      0.0     1837      Yes 22/07/2018      0.0     37.6      2.1
##      col 1370 col 1371 col 1372   col 1373   col 1374 col 1375   col 1376
## 4035      1.5        0      237 18/05/2018 No Holiday     18.8 No Holiday
## 8669      1.0        0      270 27/11/2018 No Holiday      3.1 No Holiday
## 1255      0.4        0     2000 22/01/2018 No Holiday      0.0 No Holiday
## 8749      1.3        0     1409 30/11/2018 No Holiday      6.6 No Holiday
## 4335      2.9        0     1211 30/05/2018 No Holiday     24.3 No Holiday
## 5610      2.1        0     1837 22/07/2018 No Holiday     37.6 No Holiday
##        col 1377 col 1378 col 1379 col 1380 col 1381 col 1382   col 1383
## 4035 18/05/2018     18.4     0.00     0.00     0.00      Yes 18/05/2018
## 8669 27/11/2018      1.2     0.00     0.00     0.00      Yes 27/11/2018
## 1255 22/01/2018    -14.3     0.00     0.00     0.00      Yes 22/01/2018
## 8749 30/11/2018     -7.8     1.70     1.70     1.70      Yes 30/11/2018
## 4335 30/05/2018     15.5     2.92     2.92     2.92      Yes 30/05/2018
## 5610 22/07/2018     18.5     1.82     1.82     1.82      Yes 22/07/2018
##      col 1384 col 1385   col 1386 col 1387 col 1388 col 1389 col 1390
## 4035   Spring       98 No Holiday     0.00     18.4      0.5     18.4
## 8669   Autumn       88 No Holiday     0.00      1.2      0.0      1.2
## 1255   Winter       33 No Holiday     0.00    -14.3      0.0    -14.3
## 8749   Autumn       35 No Holiday     1.70     -7.8      0.0     -7.8
## 4335   Spring       58 No Holiday     2.92     15.5      0.0     15.5
## 5610   Summer       33 No Holiday     1.82     18.5      0.0     18.5
##        col 1391 col 1392 col 1393 col 1394 col 1395 col 1396 col 1397
## 4035 18/05/2018      0.5       48        0       48      1.5      Yes
## 8669 27/11/2018      0.0       95        0       95      1.0      Yes
## 1255 22/01/2018      0.0      165        0      165      0.4      Yes
## 8749 30/11/2018      0.0      720        0      720      1.3      Yes
## 4335 30/05/2018      0.0     1119        0     1119      2.9      Yes
## 5610 22/07/2018      0.0      965        0      965      2.1      Yes
##        col 1398 col 1399 col 1400 col 1401 col 1402 col 1403 col 1404 col 1405
## 4035 No Holiday      Yes      237   Spring       48      0.5        2        0
## 8669 No Holiday      Yes      270   Autumn       95      0.0        4        0
## 1255 No Holiday      Yes     2000   Winter      165      0.0        6        0
## 8749 No Holiday      Yes     1409   Autumn      720      0.0       12        0
## 4335 No Holiday      Yes     1211   Spring     1119      0.0       14        0
## 5610 No Holiday      Yes     1837   Summer      965      0.0       17        0
##      col 1406 col 1407 col 1408 col 1409 col 1410 col 1411 col 1412 col 1413
## 4035     18.8       98      1.5     18.4      237       48        0       48
## 8669      3.1       88      1.0      1.2      270       95        0       95
## 1255      0.0       33      0.4    -14.3     2000      165        0      165
## 8749      6.6       35      1.3     -7.8     1409      720        0      720
## 4335     24.3       58      2.9     15.5     1211     1119        0     1119
## 5610     37.6       33      2.1     18.5     1837      965        0      965
##      col 1414   col 1415 col 1416 col 1417   col 1418 col 1419 col 1420
## 4035       98 18/05/2018      Yes     0.00 18/05/2018     0.00        0
## 8669       88 27/11/2018      Yes     0.00 27/11/2018     0.00        0
## 1255       33 22/01/2018      Yes     0.00 22/01/2018     0.00        0
## 8749       35 30/11/2018      Yes     1.70 30/11/2018     1.70        0
## 4335       58 30/05/2018      Yes     2.92 30/05/2018     2.92        0
## 5610       33 22/07/2018      Yes     1.82 22/07/2018     1.82        0
##      col 1421 col 1422 col 1423 col 1424 col 1425 col 1426   col 1427 col 1428
## 4035   Spring        0     18.4     18.4       48   Spring No Holiday       48
## 8669   Autumn        0      1.2      1.2       95   Autumn No Holiday       95
## 1255   Winter        0    -14.3    -14.3      165   Winter No Holiday      165
## 8749   Autumn        0     -7.8     -7.8      720   Autumn No Holiday      720
## 4335   Spring        0     15.5     15.5     1119   Spring No Holiday     1119
## 5610   Summer        0     18.5     18.5      965   Summer No Holiday      965
##      col 1429 col 1430 col 1431 col 1432   col 1433 col 1434 col 1435 col 1436
## 4035      237        2        0      237 18/05/2018        0     0.00       98
## 8669      270        4        0      270 27/11/2018        0     0.00       88
## 1255     2000        6        0     2000 22/01/2018        0     0.00       33
## 8749     1409       12        0     1409 30/11/2018        0     1.70       35
## 4335     1211       14        0     1211 30/05/2018        0     2.92       58
## 5610     1837       17        0     1837 22/07/2018        0     1.82       33
##      col 1437   col 1438   col 1439 col 1440 col 1441 col 1442 col 1443
## 4035      Yes 18/05/2018 No Holiday       98   Spring   Spring     18.8
## 8669      Yes 27/11/2018 No Holiday       88   Autumn   Autumn      3.1
## 1255      Yes 22/01/2018 No Holiday       33   Winter   Winter      0.0
## 8749      Yes 30/11/2018 No Holiday       35   Autumn   Autumn      6.6
## 4335      Yes 30/05/2018 No Holiday       58   Spring   Spring     24.3
## 5610      Yes 22/07/2018 No Holiday       33   Summer   Summer     37.6
##      col 1444   col 1445 col 1446   col 1447 col 1448 col 1449 col 1450
## 4035      1.5 No Holiday     18.4 18/05/2018       48       98      237
## 8669      1.0 No Holiday      1.2 27/11/2018       95       88      270
## 1255      0.4 No Holiday    -14.3 22/01/2018      165       33     2000
## 8749      1.3 No Holiday     -7.8 30/11/2018      720       35     1409
## 4335      2.9 No Holiday     15.5 30/05/2018     1119       58     1211
## 5610      2.1 No Holiday     18.5 22/07/2018      965       33     1837
##      col 1451 col 1452   col 1453   col 1454 col 1455 col 1456 col 1457
## 4035      1.5     18.8 18/05/2018 No Holiday      1.5      Yes     18.4
## 8669      1.0      3.1 27/11/2018 No Holiday      1.0      Yes      1.2
## 1255      0.4      0.0 22/01/2018 No Holiday      0.4      Yes    -14.3
## 8749      1.3      6.6 30/11/2018 No Holiday      1.3      Yes     -7.8
## 4335      2.9     24.3 30/05/2018 No Holiday      2.9      Yes     15.5
## 5610      2.1     37.6 22/07/2018 No Holiday      2.1      Yes     18.5
##      col 1458 col 1459 col 1460 col 1461   col 1462 col 1463   col 1464
## 4035       48        0        0        2 No Holiday     18.4 18/05/2018
## 8669       95        0        0        4 No Holiday      1.2 27/11/2018
## 1255      165        0        0        6 No Holiday    -14.3 22/01/2018
## 8749      720        0        0       12 No Holiday     -7.8 30/11/2018
## 4335     1119        0        0       14 No Holiday     15.5 30/05/2018
## 5610      965        0        0       17 No Holiday     18.5 22/07/2018
##      col 1465 col 1466 col 1467 col 1468 col 1469 col 1470 col 1471 col 1472
## 4035     0.00       48        0       98   Spring     18.8        0        0
## 8669     0.00       95        0       88   Autumn      3.1        0        0
## 1255     0.00      165        0       33   Winter      0.0        0        0
## 8749     1.70      720        0       35   Autumn      6.6        0        0
## 4335     2.92     1119        0       58   Spring     24.3        0        0
## 5610     1.82      965        0       33   Summer     37.6        0        0
##      col 1473 col 1474 col 1475 col 1476 col 1477 col 1478 col 1479 col 1480
## 4035     18.4        0      Yes       48      1.5      0.5     0.00       48
## 8669      1.2        0      Yes       95      1.0      0.0     0.00       95
## 1255    -14.3        0      Yes      165      0.4      0.0     0.00      165
## 8749     -7.8        0      Yes      720      1.3      0.0     1.70      720
## 4335     15.5        0      Yes     1119      2.9      0.0     2.92     1119
## 5610     18.5        0      Yes      965      2.1      0.0     1.82      965
##      col 1481 col 1482 col 1483 col 1484 col 1485 col 1486 col 1487 col 1488
## 4035       98     0.00     18.4   Spring      0.5        0      237       98
## 8669       88     0.00      1.2   Autumn      0.0        0      270       88
## 1255       33     0.00    -14.3   Winter      0.0        0     2000       33
## 8749       35     1.70     -7.8   Autumn      0.0        0     1409       35
## 4335       58     2.92     15.5   Spring      0.0        0     1211       58
## 5610       33     1.82     18.5   Summer      0.0        0     1837       33
##      col 1489 col 1490 col 1491 col 1492 col 1493 col 1494 col 1495 col 1496
## 4035        0   Spring       98      Yes        0       98        2        0
## 8669        0   Autumn       88      Yes        0       88        4        0
## 1255        0   Winter       33      Yes        0       33        6        0
## 8749        0   Autumn       35      Yes        0       35       12        0
## 4335        0   Spring       58      Yes        0       58       14        0
## 5610        0   Summer       33      Yes        0       33       17        0
##      col 1497 col 1498 col 1499 col 1500 col 1501   col 1502   col 1503
## 4035     0.00     0.00     18.4        2       48 No Holiday 18/05/2018
## 8669     0.00     0.00      1.2        4       95 No Holiday 27/11/2018
## 1255     0.00     0.00    -14.3        6      165 No Holiday 22/01/2018
## 8749     1.70     1.70     -7.8       12      720 No Holiday 30/11/2018
## 4335     2.92     2.92     15.5       14     1119 No Holiday 30/05/2018
## 5610     1.82     1.82     18.5       17      965 No Holiday 22/07/2018
##        col 1504 col 1505 col 1506   col 1507 col 1508 col 1509   col 1510
## 4035 No Holiday        0       98 18/05/2018      1.5      1.5 No Holiday
## 8669 No Holiday        0       88 27/11/2018      1.0      1.0 No Holiday
## 1255 No Holiday        0       33 22/01/2018      0.4      0.4 No Holiday
## 8749 No Holiday        0       35 30/11/2018      1.3      1.3 No Holiday
## 4335 No Holiday        0       58 30/05/2018      2.9      2.9 No Holiday
## 5610 No Holiday        0       33 22/07/2018      2.1      2.1 No Holiday
##      col 1511 col 1512 col 1513 col 1514 col 1515 col 1516 col 1517 col 1518
## 4035     18.4      237      0.5       48       48      0.5   Spring   Spring
## 8669      1.2      270      0.0       95       95      0.0   Autumn   Autumn
## 1255    -14.3     2000      0.0      165      165      0.0   Winter   Winter
## 8749     -7.8     1409      0.0      720      720      0.0   Autumn   Autumn
## 4335     15.5     1211      0.0     1119     1119      0.0   Spring   Spring
## 5610     18.5     1837      0.0      965      965      0.0   Summer   Summer
##      col 1519 col 1520 col 1521 col 1522 col 1523 col 1524 col 1525   col 1526
## 4035        2       48     0.00      0.5     0.00        2      237 18/05/2018
## 8669        4       95     0.00      0.0     0.00        4      270 27/11/2018
## 1255        6      165     0.00      0.0     0.00        6     2000 22/01/2018
## 8749       12      720     1.70      0.0     1.70       12     1409 30/11/2018
## 4335       14     1119     2.92      0.0     2.92       14     1211 30/05/2018
## 5610       17      965     1.82      0.0     1.82       17     1837 22/07/2018
##      col 1527   col 1528 col 1529 col 1530   col 1531 col 1532 col 1533
## 4035      237 No Holiday   Spring       98 18/05/2018     18.4     18.4
## 8669      270 No Holiday   Autumn       88 27/11/2018      1.2      1.2
## 1255     2000 No Holiday   Winter       33 22/01/2018    -14.3    -14.3
## 8749     1409 No Holiday   Autumn       35 30/11/2018     -7.8     -7.8
## 4335     1211 No Holiday   Spring       58 30/05/2018     15.5     15.5
## 5610     1837 No Holiday   Summer       33 22/07/2018     18.5     18.5
##      col 1534 col 1535 col 1536 col 1537   col 1538   col 1539 col 1540
## 4035     18.4   Spring        2     18.8 18/05/2018 No Holiday     18.8
## 8669      1.2   Autumn        4      3.1 27/11/2018 No Holiday      3.1
## 1255    -14.3   Winter        6      0.0 22/01/2018 No Holiday      0.0
## 8749     -7.8   Autumn       12      6.6 30/11/2018 No Holiday      6.6
## 4335     15.5   Spring       14     24.3 30/05/2018 No Holiday     24.3
## 5610     18.5   Summer       17     37.6 22/07/2018 No Holiday     37.6
##      col 1541 col 1542 col 1543   col 1544 col 1545 col 1546 col 1547 col 1548
## 4035        2        0   Spring No Holiday      0.5        2        2     0.00
## 8669        4        0   Autumn No Holiday      0.0        4        4     0.00
## 1255        6        0   Winter No Holiday      0.0        6        6     0.00
## 8749       12        0   Autumn No Holiday      0.0       12       12     1.70
## 4335       14        0   Spring No Holiday      0.0       14       14     2.92
## 5610       17        0   Summer No Holiday      0.0       17       17     1.82
##      col 1549 col 1550 col 1551 col 1552   col 1553   col 1554 col 1555
## 4035       98      0.5     18.4   Spring No Holiday No Holiday      237
## 8669       88      0.0      1.2   Autumn No Holiday No Holiday      270
## 1255       33      0.0    -14.3   Winter No Holiday No Holiday     2000
## 8749       35      0.0     -7.8   Autumn No Holiday No Holiday     1409
## 4335       58      0.0     15.5   Spring No Holiday No Holiday     1211
## 5610       33      0.0     18.5   Summer No Holiday No Holiday     1837
##      col 1556 col 1557 col 1558 col 1559 col 1560 col 1561   col 1562 col 1563
## 4035      237      0.5      0.5      1.5      237      237 18/05/2018     0.00
## 8669      270      0.0      0.0      1.0      270      270 27/11/2018     0.00
## 1255     2000      0.0      0.0      0.4     2000     2000 22/01/2018     0.00
## 8749     1409      0.0      0.0      1.3     1409     1409 30/11/2018     1.70
## 4335     1211      0.0      0.0      2.9     1211     1211 30/05/2018     2.92
## 5610     1837      0.0      0.0      2.1     1837     1837 22/07/2018     1.82
##      col 1564 col 1565 col 1566   col 1567 col 1568 col 1569 col 1570 col 1571
## 4035        2     18.4     18.8 18/05/2018   Spring      1.5      237   Spring
## 8669        4      1.2      3.1 27/11/2018   Autumn      1.0      270   Autumn
## 1255        6    -14.3      0.0 22/01/2018   Winter      0.4     2000   Winter
## 8749       12     -7.8      6.6 30/11/2018   Autumn      1.3     1409   Autumn
## 4335       14     15.5     24.3 30/05/2018   Spring      2.9     1211   Spring
## 5610       17     18.5     37.6 22/07/2018   Summer      2.1     1837   Summer
##      col 1572 col 1573 col 1574 col 1575 col 1576   col 1577 col 1578 col 1579
## 4035     0.00        2       98      1.5      237 18/05/2018     18.4     18.4
## 8669     0.00        4       88      1.0      270 27/11/2018      1.2      1.2
## 1255     0.00        6       33      0.4     2000 22/01/2018    -14.3    -14.3
## 8749     1.70       12       35      1.3     1409 30/11/2018     -7.8     -7.8
## 4335     2.92       14       58      2.9     1211 30/05/2018     15.5     15.5
## 5610     1.82       17       33      2.1     1837 22/07/2018     18.5     18.5
##      col 1580 col 1581 col 1582 col 1583 col 1584 col 1585 col 1586 col 1587
## 4035   Spring      0.5      0.5      1.5     18.8     18.8      Yes        0
## 8669   Autumn      0.0      0.0      1.0      3.1      3.1      Yes        0
## 1255   Winter      0.0      0.0      0.4      0.0      0.0      Yes        0
## 8749   Autumn      0.0      0.0      1.3      6.6      6.6      Yes        0
## 4335   Spring      0.0      0.0      2.9     24.3     24.3      Yes        0
## 5610   Summer      0.0      0.0      2.1     37.6     37.6      Yes        0
##      col 1588 col 1589 col 1590 col 1591   col 1592 col 1593 col 1594 col 1595
## 4035       98        0     18.8     18.4 No Holiday        2      1.5       98
## 8669       88        0      3.1      1.2 No Holiday        4      1.0       88
## 1255       33        0      0.0    -14.3 No Holiday        6      0.4       33
## 8749       35        0      6.6     -7.8 No Holiday       12      1.3       35
## 4335       58        0     24.3     15.5 No Holiday       14      2.9       58
## 5610       33        0     37.6     18.5 No Holiday       17      2.1       33
##      col 1596   col 1597 col 1598 col 1599   col 1600 col 1601 col 1602
## 4035      1.5 No Holiday      237      237 No Holiday      Yes      0.5
## 8669      1.0 No Holiday      270      270 No Holiday      Yes      0.0
## 1255      0.4 No Holiday     2000     2000 No Holiday      Yes      0.0
## 8749      1.3 No Holiday     1409     1409 No Holiday      Yes      0.0
## 4335      2.9 No Holiday     1211     1211 No Holiday      Yes      0.0
## 5610      2.1 No Holiday     1837     1837 No Holiday      Yes      0.0
##      col 1603 col 1604 col 1605 col 1606   col 1607 col 1608 col 1609 col 1610
## 4035   Spring     18.4      0.5      237 No Holiday        2   Spring     18.8
## 8669   Autumn      1.2      0.0      270 No Holiday        4   Autumn      3.1
## 1255   Winter    -14.3      0.0     2000 No Holiday        6   Winter      0.0
## 8749   Autumn     -7.8      0.0     1409 No Holiday       12   Autumn      6.6
## 4335   Spring     15.5      0.0     1211 No Holiday       14   Spring     24.3
## 5610   Summer     18.5      0.0     1837 No Holiday       17   Summer     37.6
##      col 1611 col 1612 col 1613 col 1614 col 1615 col 1616 col 1617 col 1618
## 4035       48        0        0   Spring      0.5     18.4       98     18.4
## 8669       95        0        0   Autumn      0.0      1.2       88      1.2
## 1255      165        0        0   Winter      0.0    -14.3       33    -14.3
## 8749      720        0        0   Autumn      0.0     -7.8       35     -7.8
## 4335     1119        0        0   Spring      0.0     15.5       58     15.5
## 5610      965        0        0   Summer      0.0     18.5       33     18.5
##      col 1619 col 1620 col 1621   col 1622 col 1623 col 1624 col 1625
## 4035     18.8     18.4     0.00 18/05/2018      237       48   Spring
## 8669      3.1      1.2     0.00 27/11/2018      270       95   Autumn
## 1255      0.0    -14.3     0.00 22/01/2018     2000      165   Winter
## 8749      6.6     -7.8     1.70 30/11/2018     1409      720   Autumn
## 4335     24.3     15.5     2.92 30/05/2018     1211     1119   Spring
## 5610     37.6     18.5     1.82 22/07/2018     1837      965   Summer
##        col 1626 col 1627 col 1628 col 1629 col 1630 col 1631 col 1632 col 1633
## 4035 18/05/2018      Yes      237     18.8        0   Spring        2       98
## 8669 27/11/2018      Yes      270      3.1        0   Autumn        4       88
## 1255 22/01/2018      Yes     2000      0.0        0   Winter        6       33
## 8749 30/11/2018      Yes     1409      6.6        0   Autumn       12       35
## 4335 30/05/2018      Yes     1211     24.3        0   Spring       14       58
## 5610 22/07/2018      Yes     1837     37.6        0   Summer       17       33
##      col 1634 col 1635 col 1636   col 1637 col 1638 col 1639 col 1640 col 1641
## 4035      Yes      1.5        2 No Holiday     0.00     18.8       48        2
## 8669      Yes      1.0        4 No Holiday     0.00      3.1       95        4
## 1255      Yes      0.4        6 No Holiday     0.00      0.0      165        6
## 8749      Yes      1.3       12 No Holiday     1.70      6.6      720       12
## 4335      Yes      2.9       14 No Holiday     2.92     24.3     1119       14
## 5610      Yes      2.1       17 No Holiday     1.82     37.6      965       17
##      col 1642 col 1643 col 1644   col 1645 col 1646 col 1647 col 1648 col 1649
## 4035     0.00     18.8   Spring No Holiday       48        2   Spring      0.5
## 8669     0.00      3.1   Autumn No Holiday       95        4   Autumn      0.0
## 1255     0.00      0.0   Winter No Holiday      165        6   Winter      0.0
## 8749     1.70      6.6   Autumn No Holiday      720       12   Autumn      0.0
## 4335     2.92     24.3   Spring No Holiday     1119       14   Spring      0.0
## 5610     1.82     37.6   Summer No Holiday      965       17   Summer      0.0
##      col 1650 col 1651 col 1652 col 1653 col 1654 col 1655 col 1656 col 1657
## 4035      237       98     18.4   Spring      0.5     0.00   Spring      1.5
## 8669      270       88      1.2   Autumn      0.0     0.00   Autumn      1.0
## 1255     2000       33    -14.3   Winter      0.0     0.00   Winter      0.4
## 8749     1409       35     -7.8   Autumn      0.0     1.70   Autumn      1.3
## 4335     1211       58     15.5   Spring      0.0     2.92   Spring      2.9
## 5610     1837       33     18.5   Summer      0.0     1.82   Summer      2.1
##      col 1658 col 1659   col 1660 col 1661 col 1662 col 1663 col 1664 col 1665
## 4035      Yes   Spring 18/05/2018   Spring       98      0.5        2      Yes
## 8669      Yes   Autumn 27/11/2018   Autumn       88      0.0        4      Yes
## 1255      Yes   Winter 22/01/2018   Winter       33      0.0        6      Yes
## 8749      Yes   Autumn 30/11/2018   Autumn       35      0.0       12      Yes
## 4335      Yes   Spring 30/05/2018   Spring       58      0.0       14      Yes
## 5610      Yes   Summer 22/07/2018   Summer       33      0.0       17      Yes
##      col 1666 col 1667 col 1668 col 1669 col 1670 col 1671 col 1672 col 1673
## 4035      1.5        2     18.8     0.00   Spring      0.5     0.00     18.8
## 8669      1.0        4      3.1     0.00   Autumn      0.0     0.00      3.1
## 1255      0.4        6      0.0     0.00   Winter      0.0     0.00      0.0
## 8749      1.3       12      6.6     1.70   Autumn      0.0     1.70      6.6
## 4335      2.9       14     24.3     2.92   Spring      0.0     2.92     24.3
## 5610      2.1       17     37.6     1.82   Summer      0.0     1.82     37.6
##      col 1674 col 1675 col 1676   col 1677 col 1678 col 1679 col 1680 col 1681
## 4035   Spring      Yes        2 18/05/2018        2     18.8        2       98
## 8669   Autumn      Yes        4 27/11/2018        4      3.1        4       88
## 1255   Winter      Yes        6 22/01/2018        6      0.0        6       33
## 8749   Autumn      Yes       12 30/11/2018       12      6.6       12       35
## 4335   Spring      Yes       14 30/05/2018       14     24.3       14       58
## 5610   Summer      Yes       17 22/07/2018       17     37.6       17       33
##      col 1682 col 1683 col 1684 col 1685 col 1686 col 1687 col 1688 col 1689
## 4035        2      237   Spring       98      Yes      0.5      Yes        0
## 8669        4      270   Autumn       88      Yes      0.0      Yes        0
## 1255        6     2000   Winter       33      Yes      0.0      Yes        0
## 8749       12     1409   Autumn       35      Yes      0.0      Yes        0
## 4335       14     1211   Spring       58      Yes      0.0      Yes        0
## 5610       17     1837   Summer       33      Yes      0.0      Yes        0
##      col 1690   col 1691 col 1692 col 1693   col 1694 col 1695 col 1696
## 4035        0 18/05/2018      0.5       48 No Holiday     18.4        0
## 8669        0 27/11/2018      0.0       95 No Holiday      1.2        0
## 1255        0 22/01/2018      0.0      165 No Holiday    -14.3        0
## 8749        0 30/11/2018      0.0      720 No Holiday     -7.8        0
## 4335        0 30/05/2018      0.0     1119 No Holiday     15.5        0
## 5610        0 22/07/2018      0.0      965 No Holiday     18.5        0
##        col 1697 col 1698 col 1699 col 1700 col 1701 col 1702 col 1703
## 4035 No Holiday       48      Yes        0      0.5        2      237
## 8669 No Holiday       95      Yes        0      0.0        4      270
## 1255 No Holiday      165      Yes        0      0.0        6     2000
## 8749 No Holiday      720      Yes        0      0.0       12     1409
## 4335 No Holiday     1119      Yes        0      0.0       14     1211
## 5610 No Holiday      965      Yes        0      0.0       17     1837
##        col 1704 col 1705 col 1706 col 1707 col 1708 col 1709 col 1710
## 4035 18/05/2018     18.8   Spring     18.8     18.8     0.00        2
## 8669 27/11/2018      3.1   Autumn      3.1      3.1     0.00        4
## 1255 22/01/2018      0.0   Winter      0.0      0.0     0.00        6
## 8749 30/11/2018      6.6   Autumn      6.6      6.6     1.70       12
## 4335 30/05/2018     24.3   Spring     24.3     24.3     2.92       14
## 5610 22/07/2018     37.6   Summer     37.6     37.6     1.82       17
##        col 1711 col 1712 col 1713 col 1714 col 1715   col 1716 col 1717
## 4035 No Holiday        0     18.4       98       48 No Holiday      0.5
## 8669 No Holiday        0      1.2       88       95 No Holiday      0.0
## 1255 No Holiday        0    -14.3       33      165 No Holiday      0.0
## 8749 No Holiday        0     -7.8       35      720 No Holiday      0.0
## 4335 No Holiday        0     15.5       58     1119 No Holiday      0.0
## 5610 No Holiday        0     18.5       33      965 No Holiday      0.0
##        col 1718 col 1719 col 1720 col 1721 col 1722 col 1723 col 1724 col 1725
## 4035 18/05/2018      237       98      Yes      0.5      Yes      Yes      0.5
## 8669 27/11/2018      270       88      Yes      0.0      Yes      Yes      0.0
## 1255 22/01/2018     2000       33      Yes      0.0      Yes      Yes      0.0
## 8749 30/11/2018     1409       35      Yes      0.0      Yes      Yes      0.0
## 4335 30/05/2018     1211       58      Yes      0.0      Yes      Yes      0.0
## 5610 22/07/2018     1837       33      Yes      0.0      Yes      Yes      0.0
##      col 1726 col 1727 col 1728 col 1729 col 1730 col 1731 col 1732 col 1733
## 4035      0.5      Yes     0.00   Spring     18.4      Yes      237        2
## 8669      0.0      Yes     0.00   Autumn      1.2      Yes      270        4
## 1255      0.0      Yes     0.00   Winter    -14.3      Yes     2000        6
## 8749      0.0      Yes     1.70   Autumn     -7.8      Yes     1409       12
## 4335      0.0      Yes     2.92   Spring     15.5      Yes     1211       14
## 5610      0.0      Yes     1.82   Summer     18.5      Yes     1837       17
##      col 1734 col 1735 col 1736 col 1737 col 1738   col 1739 col 1740
## 4035      1.5      0.5      Yes       48      Yes 18/05/2018      Yes
## 8669      1.0      0.0      Yes       95      Yes 27/11/2018      Yes
## 1255      0.4      0.0      Yes      165      Yes 22/01/2018      Yes
## 8749      1.3      0.0      Yes      720      Yes 30/11/2018      Yes
## 4335      2.9      0.0      Yes     1119      Yes 30/05/2018      Yes
## 5610      2.1      0.0      Yes      965      Yes 22/07/2018      Yes
##        col 1741 col 1742 col 1743 col 1744 col 1745 col 1746   col 1747
## 4035 18/05/2018      0.5   Spring       48        0      Yes 18/05/2018
## 8669 27/11/2018      0.0   Autumn       95        0      Yes 27/11/2018
## 1255 22/01/2018      0.0   Winter      165        0      Yes 22/01/2018
## 8749 30/11/2018      0.0   Autumn      720        0      Yes 30/11/2018
## 4335 30/05/2018      0.0   Spring     1119        0      Yes 30/05/2018
## 5610 22/07/2018      0.0   Summer      965        0      Yes 22/07/2018
##      col 1748 col 1749 col 1750 col 1751 col 1752 col 1753   col 1754 col 1755
## 4035       98       48     18.8      1.5   Spring     18.8 18/05/2018      1.5
## 8669       88       95      3.1      1.0   Autumn      3.1 27/11/2018      1.0
## 1255       33      165      0.0      0.4   Winter      0.0 22/01/2018      0.4
## 8749       35      720      6.6      1.3   Autumn      6.6 30/11/2018      1.3
## 4335       58     1119     24.3      2.9   Spring     24.3 30/05/2018      2.9
## 5610       33      965     37.6      2.1   Summer     37.6 22/07/2018      2.1
##      col 1756 col 1757   col 1758 col 1759 col 1760 col 1761 col 1762
## 4035   Spring      237 No Holiday   Spring        2   Spring      0.5
## 8669   Autumn      270 No Holiday   Autumn        4   Autumn      0.0
## 1255   Winter     2000 No Holiday   Winter        6   Winter      0.0
## 8749   Autumn     1409 No Holiday   Autumn       12   Autumn      0.0
## 4335   Spring     1211 No Holiday   Spring       14   Spring      0.0
## 5610   Summer     1837 No Holiday   Summer       17   Summer      0.0
##        col 1763 col 1764 col 1765 col 1766 col 1767 col 1768 col 1769 col 1770
## 4035 18/05/2018     18.8   Spring        2      Yes       98      1.5       48
## 8669 27/11/2018      3.1   Autumn        4      Yes       88      1.0       95
## 1255 22/01/2018      0.0   Winter        6      Yes       33      0.4      165
## 8749 30/11/2018      6.6   Autumn       12      Yes       35      1.3      720
## 4335 30/05/2018     24.3   Spring       14      Yes       58      2.9     1119
## 5610 22/07/2018     37.6   Summer       17      Yes       33      2.1      965
##      col 1771 col 1772 col 1773 col 1774 col 1775   col 1776 col 1777 col 1778
## 4035     18.4       98      237     0.00      237 18/05/2018     18.4      Yes
## 8669      1.2       88      270     0.00      270 27/11/2018      1.2      Yes
## 1255    -14.3       33     2000     0.00     2000 22/01/2018    -14.3      Yes
## 8749     -7.8       35     1409     1.70     1409 30/11/2018     -7.8      Yes
## 4335     15.5       58     1211     2.92     1211 30/05/2018     15.5      Yes
## 5610     18.5       33     1837     1.82     1837 22/07/2018     18.5      Yes
##      col 1779 col 1780 col 1781 col 1782 col 1783 col 1784 col 1785 col 1786
## 4035      0.5     0.00       98     18.8     18.8       48        2       98
## 8669      0.0     0.00       88      3.1      3.1       95        4       88
## 1255      0.0     0.00       33      0.0      0.0      165        6       33
## 8749      0.0     1.70       35      6.6      6.6      720       12       35
## 4335      0.0     2.92       58     24.3     24.3     1119       14       58
## 5610      0.0     1.82       33     37.6     37.6      965       17       33
##      col 1787   col 1788 col 1789 col 1790 col 1791 col 1792 col 1793 col 1794
## 4035      237 No Holiday        0      Yes     18.4      1.5        2     18.4
## 8669      270 No Holiday        0      Yes      1.2      1.0        4      1.2
## 1255     2000 No Holiday        0      Yes    -14.3      0.4        6    -14.3
## 8749     1409 No Holiday        0      Yes     -7.8      1.3       12     -7.8
## 4335     1211 No Holiday        0      Yes     15.5      2.9       14     15.5
## 5610     1837 No Holiday        0      Yes     18.5      2.1       17     18.5
##      col 1795 col 1796   col 1797 col 1798 col 1799 col 1800 col 1801 col 1802
## 4035       48      237 18/05/2018      237     18.4      1.5        2     0.00
## 8669       95      270 27/11/2018      270      1.2      1.0        4     0.00
## 1255      165     2000 22/01/2018     2000    -14.3      0.4        6     0.00
## 8749      720     1409 30/11/2018     1409     -7.8      1.3       12     1.70
## 4335     1119     1211 30/05/2018     1211     15.5      2.9       14     2.92
## 5610      965     1837 22/07/2018     1837     18.5      2.1       17     1.82
##      col 1803 col 1804 col 1805 col 1806 col 1807 col 1808 col 1809 col 1810
## 4035        0      237        2     18.8      0.5       48     18.8      Yes
## 8669        0      270        4      3.1      0.0       95      3.1      Yes
## 1255        0     2000        6      0.0      0.0      165      0.0      Yes
## 8749        0     1409       12      6.6      0.0      720      6.6      Yes
## 4335        0     1211       14     24.3      0.0     1119     24.3      Yes
## 5610        0     1837       17     37.6      0.0      965     37.6      Yes
##      col 1811 col 1812 col 1813   col 1814 col 1815   col 1816 col 1817
## 4035      237       48      Yes No Holiday        0 18/05/2018       48
## 8669      270       95      Yes No Holiday        0 27/11/2018       95
## 1255     2000      165      Yes No Holiday        0 22/01/2018      165
## 8749     1409      720      Yes No Holiday        0 30/11/2018      720
## 4335     1211     1119      Yes No Holiday        0 30/05/2018     1119
## 5610     1837      965      Yes No Holiday        0 22/07/2018      965
##      col 1818 col 1819   col 1820 col 1821 col 1822 col 1823 col 1824 col 1825
## 4035        0      0.5 18/05/2018      0.5   Spring        0      0.5     18.8
## 8669        0      0.0 27/11/2018      0.0   Autumn        0      0.0      3.1
## 1255        0      0.0 22/01/2018      0.0   Winter        0      0.0      0.0
## 8749        0      0.0 30/11/2018      0.0   Autumn        0      0.0      6.6
## 4335        0      0.0 30/05/2018      0.0   Spring        0      0.0     24.3
## 5610        0      0.0 22/07/2018      0.0   Summer        0      0.0     37.6
##      col 1826 col 1827 col 1828 col 1829   col 1830 col 1831   col 1832
## 4035     18.8      1.5      0.5        2 No Holiday     0.00 18/05/2018
## 8669      3.1      1.0      0.0        4 No Holiday     0.00 27/11/2018
## 1255      0.0      0.4      0.0        6 No Holiday     0.00 22/01/2018
## 8749      6.6      1.3      0.0       12 No Holiday     1.70 30/11/2018
## 4335     24.3      2.9      0.0       14 No Holiday     2.92 30/05/2018
## 5610     37.6      2.1      0.0       17 No Holiday     1.82 22/07/2018
##      col 1833 col 1834 col 1835 col 1836 col 1837 col 1838 col 1839 col 1840
## 4035      Yes        2      1.5      1.5      237        0     0.00      237
## 8669      Yes        4      1.0      1.0      270        0     0.00      270
## 1255      Yes        6      0.4      0.4     2000        0     0.00     2000
## 8749      Yes       12      1.3      1.3     1409        0     1.70     1409
## 4335      Yes       14      2.9      2.9     1211        0     2.92     1211
## 5610      Yes       17      2.1      2.1     1837        0     1.82     1837
##      col 1841   col 1842 col 1843 col 1844 col 1845 col 1846 col 1847 col 1848
## 4035   Spring No Holiday   Spring      237      0.5      237      0.5        0
## 8669   Autumn No Holiday   Autumn      270      0.0      270      0.0        0
## 1255   Winter No Holiday   Winter     2000      0.0     2000      0.0        0
## 8749   Autumn No Holiday   Autumn     1409      0.0     1409      0.0        0
## 4335   Spring No Holiday   Spring     1211      0.0     1211      0.0        0
## 5610   Summer No Holiday   Summer     1837      0.0     1837      0.0        0
##        col 1849 col 1850 col 1851   col 1852 col 1853   col 1854 col 1855
## 4035 No Holiday      0.5      1.5 No Holiday     18.8 18/05/2018       48
## 8669 No Holiday      0.0      1.0 No Holiday      3.1 27/11/2018       95
## 1255 No Holiday      0.0      0.4 No Holiday      0.0 22/01/2018      165
## 8749 No Holiday      0.0      1.3 No Holiday      6.6 30/11/2018      720
## 4335 No Holiday      0.0      2.9 No Holiday     24.3 30/05/2018     1119
## 5610 No Holiday      0.0      2.1 No Holiday     37.6 22/07/2018      965
##        col 1856 col 1857 col 1858 col 1859 col 1860 col 1861 col 1862 col 1863
## 4035 No Holiday      1.5        0      Yes        0      237   Spring      0.5
## 8669 No Holiday      1.0        0      Yes        0      270   Autumn      0.0
## 1255 No Holiday      0.4        0      Yes        0     2000   Winter      0.0
## 8749 No Holiday      1.3        0      Yes        0     1409   Autumn      0.0
## 4335 No Holiday      2.9        0      Yes        0     1211   Spring      0.0
## 5610 No Holiday      2.1        0      Yes        0     1837   Summer      0.0
##      col 1864 col 1865 col 1866 col 1867   col 1868   col 1869 col 1870
## 4035   Spring        2       98     18.8 No Holiday 18/05/2018       98
## 8669   Autumn        4       88      3.1 No Holiday 27/11/2018       88
## 1255   Winter        6       33      0.0 No Holiday 22/01/2018       33
## 8749   Autumn       12       35      6.6 No Holiday 30/11/2018       35
## 4335   Spring       14       58     24.3 No Holiday 30/05/2018       58
## 5610   Summer       17       33     37.6 No Holiday 22/07/2018       33
##      col 1871 col 1872   col 1873 col 1874 col 1875   col 1876   col 1877
## 4035     18.8     18.8 No Holiday        2     18.4 18/05/2018 18/05/2018
## 8669      3.1      3.1 No Holiday        4      1.2 27/11/2018 27/11/2018
## 1255      0.0      0.0 No Holiday        6    -14.3 22/01/2018 22/01/2018
## 8749      6.6      6.6 No Holiday       12     -7.8 30/11/2018 30/11/2018
## 4335     24.3     24.3 No Holiday       14     15.5 30/05/2018 30/05/2018
## 5610     37.6     37.6 No Holiday       17     18.5 22/07/2018 22/07/2018
##      col 1878 col 1879 col 1880 col 1881 col 1882 col 1883 col 1884 col 1885
## 4035       48      Yes     18.4      Yes        2     0.00     18.4        0
## 8669       95      Yes      1.2      Yes        4     0.00      1.2        0
## 1255      165      Yes    -14.3      Yes        6     0.00    -14.3        0
## 8749      720      Yes     -7.8      Yes       12     1.70     -7.8        0
## 4335     1119      Yes     15.5      Yes       14     2.92     15.5        0
## 5610      965      Yes     18.5      Yes       17     1.82     18.5        0
##      col 1886 col 1887 col 1888 col 1889 col 1890 col 1891 col 1892 col 1893
## 4035   Spring     18.4      237       48      1.5   Spring   Spring      237
## 8669   Autumn      1.2      270       95      1.0   Autumn   Autumn      270
## 1255   Winter    -14.3     2000      165      0.4   Winter   Winter     2000
## 8749   Autumn     -7.8     1409      720      1.3   Autumn   Autumn     1409
## 4335   Spring     15.5     1211     1119      2.9   Spring   Spring     1211
## 5610   Summer     18.5     1837      965      2.1   Summer   Summer     1837
##      col 1894 col 1895 col 1896 col 1897 col 1898 col 1899   col 1900
## 4035      237   Spring       48        2     0.00      Yes 18/05/2018
## 8669      270   Autumn       95        4     0.00      Yes 27/11/2018
## 1255     2000   Winter      165        6     0.00      Yes 22/01/2018
## 8749     1409   Autumn      720       12     1.70      Yes 30/11/2018
## 4335     1211   Spring     1119       14     2.92      Yes 30/05/2018
## 5610     1837   Summer      965       17     1.82      Yes 22/07/2018
##        col 1901 col 1902 col 1903 col 1904   col 1905   col 1906 col 1907
## 4035 18/05/2018      0.5     0.00      237 18/05/2018 18/05/2018       48
## 8669 27/11/2018      0.0     0.00      270 27/11/2018 27/11/2018       95
## 1255 22/01/2018      0.0     0.00     2000 22/01/2018 22/01/2018      165
## 8749 30/11/2018      0.0     1.70     1409 30/11/2018 30/11/2018      720
## 4335 30/05/2018      0.0     2.92     1211 30/05/2018 30/05/2018     1119
## 5610 22/07/2018      0.0     1.82     1837 22/07/2018 22/07/2018      965
##      col 1908 col 1909   col 1910 col 1911   col 1912 col 1913 col 1914
## 4035     0.00     18.8 18/05/2018      Yes 18/05/2018      237     18.4
## 8669     0.00      3.1 27/11/2018      Yes 27/11/2018      270      1.2
## 1255     0.00      0.0 22/01/2018      Yes 22/01/2018     2000    -14.3
## 8749     1.70      6.6 30/11/2018      Yes 30/11/2018     1409     -7.8
## 4335     2.92     24.3 30/05/2018      Yes 30/05/2018     1211     15.5
## 5610     1.82     37.6 22/07/2018      Yes 22/07/2018     1837     18.5
##      col 1915 col 1916 col 1917 col 1918 col 1919   col 1920   col 1921
## 4035       48        2        2      237      1.5 No Holiday 18/05/2018
## 8669       95        4        4      270      1.0 No Holiday 27/11/2018
## 1255      165        6        6     2000      0.4 No Holiday 22/01/2018
## 8749      720       12       12     1409      1.3 No Holiday 30/11/2018
## 4335     1119       14       14     1211      2.9 No Holiday 30/05/2018
## 5610      965       17       17     1837      2.1 No Holiday 22/07/2018
##      col 1922 col 1923 col 1924 col 1925 col 1926   col 1927 col 1928 col 1929
## 4035     0.00      237      1.5     0.00   Spring 18/05/2018      0.5      0.5
## 8669     0.00      270      1.0     0.00   Autumn 27/11/2018      0.0      0.0
## 1255     0.00     2000      0.4     0.00   Winter 22/01/2018      0.0      0.0
## 8749     1.70     1409      1.3     1.70   Autumn 30/11/2018      0.0      0.0
## 4335     2.92     1211      2.9     2.92   Spring 30/05/2018      0.0      0.0
## 5610     1.82     1837      2.1     1.82   Summer 22/07/2018      0.0      0.0
##      col 1930 col 1931 col 1932 col 1933 col 1934 col 1935   col 1936 col 1937
## 4035   Spring      1.5     18.4   Spring      1.5      237 No Holiday        0
## 8669   Autumn      1.0      1.2   Autumn      1.0      270 No Holiday        0
## 1255   Winter      0.4    -14.3   Winter      0.4     2000 No Holiday        0
## 8749   Autumn      1.3     -7.8   Autumn      1.3     1409 No Holiday        0
## 4335   Spring      2.9     15.5   Spring      2.9     1211 No Holiday        0
## 5610   Summer      2.1     18.5   Summer      2.1     1837 No Holiday        0
##      col 1938 col 1939 col 1940 col 1941 col 1942 col 1943 col 1944 col 1945
## 4035      1.5      237      1.5     0.00     18.8      Yes        0       98
## 8669      1.0      270      1.0     0.00      3.1      Yes        0       88
## 1255      0.4     2000      0.4     0.00      0.0      Yes        0       33
## 8749      1.3     1409      1.3     1.70      6.6      Yes        0       35
## 4335      2.9     1211      2.9     2.92     24.3      Yes        0       58
## 5610      2.1     1837      2.1     1.82     37.6      Yes        0       33
##      col 1946 col 1947 col 1948 col 1949 col 1950 col 1951 col 1952 col 1953
## 4035      Yes        2        2        2      237      1.5       48      1.5
## 8669      Yes        4        4        4      270      1.0       95      1.0
## 1255      Yes        6        6        6     2000      0.4      165      0.4
## 8749      Yes       12       12       12     1409      1.3      720      1.3
## 4335      Yes       14       14       14     1211      2.9     1119      2.9
## 5610      Yes       17       17       17     1837      2.1      965      2.1
##      col 1954 col 1955 col 1956 col 1957 col 1958 col 1959 col 1960 col 1961
## 4035      1.5      0.5     18.4     0.00        2        0        0       48
## 8669      1.0      0.0      1.2     0.00        4        0        0       95
## 1255      0.4      0.0    -14.3     0.00        6        0        0      165
## 8749      1.3      0.0     -7.8     1.70       12        0        0      720
## 4335      2.9      0.0     15.5     2.92       14        0        0     1119
## 5610      2.1      0.0     18.5     1.82       17        0        0      965
##      col 1962 col 1963 col 1964 col 1965   col 1966 col 1967 col 1968 col 1969
## 4035        0     0.00        0        2 No Holiday       48     18.4   Spring
## 8669        0     0.00        0        4 No Holiday       95      1.2   Autumn
## 1255        0     0.00        0        6 No Holiday      165    -14.3   Winter
## 8749        0     1.70        0       12 No Holiday      720     -7.8   Autumn
## 4335        0     2.92        0       14 No Holiday     1119     15.5   Spring
## 5610        0     1.82        0       17 No Holiday      965     18.5   Summer
##      col 1970 col 1971 col 1972 col 1973 col 1974 col 1975 col 1976 col 1977
## 4035      237        0     0.00       98        0      237      1.5       48
## 8669      270        0     0.00       88        0      270      1.0       95
## 1255     2000        0     0.00       33        0     2000      0.4      165
## 8749     1409        0     1.70       35        0     1409      1.3      720
## 4335     1211        0     2.92       58        0     1211      2.9     1119
## 5610     1837        0     1.82       33        0     1837      2.1      965
##      col 1978 col 1979 col 1980   col 1981 col 1982 col 1983 col 1984 col 1985
## 4035        0        2       98 No Holiday      1.5     18.8     18.4   Spring
## 8669        0        4       88 No Holiday      1.0      3.1      1.2   Autumn
## 1255        0        6       33 No Holiday      0.4      0.0    -14.3   Winter
## 8749        0       12       35 No Holiday      1.3      6.6     -7.8   Autumn
## 4335        0       14       58 No Holiday      2.9     24.3     15.5   Spring
## 5610        0       17       33 No Holiday      2.1     37.6     18.5   Summer
##      col 1986   col 1987 col 1988 col 1989 col 1990 col 1991 col 1992 col 1993
## 4035      237 No Holiday        2      237      Yes      237       98      Yes
## 8669      270 No Holiday        4      270      Yes      270       88      Yes
## 1255     2000 No Holiday        6     2000      Yes     2000       33      Yes
## 8749     1409 No Holiday       12     1409      Yes     1409       35      Yes
## 4335     1211 No Holiday       14     1211      Yes     1211       58      Yes
## 5610     1837 No Holiday       17     1837      Yes     1837       33      Yes
##      col 1994 col 1995 col 1996 col 1997 col 1998   col 1999 col 2000 col 2001
## 4035       98        0     18.4      Yes        0 No Holiday   Spring      Yes
## 8669       88        0      1.2      Yes        0 No Holiday   Autumn      Yes
## 1255       33        0    -14.3      Yes        0 No Holiday   Winter      Yes
## 8749       35        0     -7.8      Yes        0 No Holiday   Autumn      Yes
## 4335       58        0     15.5      Yes        0 No Holiday   Spring      Yes
## 5610       33        0     18.5      Yes        0 No Holiday   Summer      Yes
##      col 2002 col 2003 col 2004 col 2005 col 2006 col 2007 col 2008 col 2009
## 4035       98      0.5     0.00       98      1.5   Spring      237       48
## 8669       88      0.0     0.00       88      1.0   Autumn      270       95
## 1255       33      0.0     0.00       33      0.4   Winter     2000      165
## 8749       35      0.0     1.70       35      1.3   Autumn     1409      720
## 4335       58      0.0     2.92       58      2.9   Spring     1211     1119
## 5610       33      0.0     1.82       33      2.1   Summer     1837      965
##      col 2010 col 2011   col 2012 col 2013 col 2014   col 2015 col 2016
## 4035        2      Yes 18/05/2018      Yes      1.5 No Holiday       48
## 8669        4      Yes 27/11/2018      Yes      1.0 No Holiday       95
## 1255        6      Yes 22/01/2018      Yes      0.4 No Holiday      165
## 8749       12      Yes 30/11/2018      Yes      1.3 No Holiday      720
## 4335       14      Yes 30/05/2018      Yes      2.9 No Holiday     1119
## 5610       17      Yes 22/07/2018      Yes      2.1 No Holiday      965
##      col 2017 col 2018 col 2019 col 2020 col 2021 col 2022 col 2023   col 2024
## 4035     18.4       98      1.5     18.8        2     0.00       48 No Holiday
## 8669      1.2       88      1.0      3.1        4     0.00       95 No Holiday
## 1255    -14.3       33      0.4      0.0        6     0.00      165 No Holiday
## 8749     -7.8       35      1.3      6.6       12     1.70      720 No Holiday
## 4335     15.5       58      2.9     24.3       14     2.92     1119 No Holiday
## 5610     18.5       33      2.1     37.6       17     1.82      965 No Holiday
##      col 2025 col 2026   col 2027   col 2028 col 2029 col 2030 col 2031
## 4035     0.00        2 18/05/2018 18/05/2018       98        2      Yes
## 8669     0.00        4 27/11/2018 27/11/2018       88        4      Yes
## 1255     0.00        6 22/01/2018 22/01/2018       33        6      Yes
## 8749     1.70       12 30/11/2018 30/11/2018       35       12      Yes
## 4335     2.92       14 30/05/2018 30/05/2018       58       14      Yes
## 5610     1.82       17 22/07/2018 22/07/2018       33       17      Yes
##      col 2032 col 2033 col 2034 col 2035 col 2036   col 2037 col 2038 col 2039
## 4035      Yes        2      1.5       98     0.00 No Holiday        0     0.00
## 8669      Yes        4      1.0       88     0.00 No Holiday        0     0.00
## 1255      Yes        6      0.4       33     0.00 No Holiday        0     0.00
## 8749      Yes       12      1.3       35     1.70 No Holiday        0     1.70
## 4335      Yes       14      2.9       58     2.92 No Holiday        0     2.92
## 5610      Yes       17      2.1       33     1.82 No Holiday        0     1.82
##      col 2040 col 2041 col 2042 col 2043 col 2044 col 2045 col 2046 col 2047
## 4035      237     0.00   Spring      Yes        0      Yes        0      1.5
## 8669      270     0.00   Autumn      Yes        0      Yes        0      1.0
## 1255     2000     0.00   Winter      Yes        0      Yes        0      0.4
## 8749     1409     1.70   Autumn      Yes        0      Yes        0      1.3
## 4335     1211     2.92   Spring      Yes        0      Yes        0      2.9
## 5610     1837     1.82   Summer      Yes        0      Yes        0      2.1
##      col 2048 col 2049 col 2050 col 2051 col 2052 col 2053 col 2054 col 2055
## 4035     18.4        0        2        2     18.8      Yes     18.4       48
## 8669      1.2        0        4        4      3.1      Yes      1.2       95
## 1255    -14.3        0        6        6      0.0      Yes    -14.3      165
## 8749     -7.8        0       12       12      6.6      Yes     -7.8      720
## 4335     15.5        0       14       14     24.3      Yes     15.5     1119
## 5610     18.5        0       17       17     37.6      Yes     18.5      965
##      col 2056 col 2057 col 2058 col 2059 col 2060 col 2061 col 2062   col 2063
## 4035        2      0.5        2       98       98   Spring   Spring No Holiday
## 8669        4      0.0        4       88       88   Autumn   Autumn No Holiday
## 1255        6      0.0        6       33       33   Winter   Winter No Holiday
## 8749       12      0.0       12       35       35   Autumn   Autumn No Holiday
## 4335       14      0.0       14       58       58   Spring   Spring No Holiday
## 5610       17      0.0       17       33       33   Summer   Summer No Holiday
##      col 2064 col 2065 col 2066 col 2067 col 2068 col 2069 col 2070 col 2071
## 4035     18.4     0.00       98      237   Spring      237   Spring     0.00
## 8669      1.2     0.00       88      270   Autumn      270   Autumn     0.00
## 1255    -14.3     0.00       33     2000   Winter     2000   Winter     0.00
## 8749     -7.8     1.70       35     1409   Autumn     1409   Autumn     1.70
## 4335     15.5     2.92       58     1211   Spring     1211   Spring     2.92
## 5610     18.5     1.82       33     1837   Summer     1837   Summer     1.82
##      col 2072 col 2073 col 2074 col 2075 col 2076 col 2077 col 2078 col 2079
## 4035      0.5      Yes      237     18.8        2   Spring        2        2
## 8669      0.0      Yes      270      3.1        4   Autumn        4        4
## 1255      0.0      Yes     2000      0.0        6   Winter        6        6
## 8749      0.0      Yes     1409      6.6       12   Autumn       12       12
## 4335      0.0      Yes     1211     24.3       14   Spring       14       14
## 5610      0.0      Yes     1837     37.6       17   Summer       17       17
##        col 2080   col 2081 col 2082 col 2083 col 2084 col 2085 col 2086
## 4035 No Holiday No Holiday       48      0.5       48       48     0.00
## 8669 No Holiday No Holiday       95      0.0       95       95     0.00
## 1255 No Holiday No Holiday      165      0.0      165      165     0.00
## 8749 No Holiday No Holiday      720      0.0      720      720     1.70
## 4335 No Holiday No Holiday     1119      0.0     1119     1119     2.92
## 5610 No Holiday No Holiday      965      0.0      965      965     1.82
##      col 2087   col 2088 col 2089 col 2090 col 2091   col 2092 col 2093
## 4035     0.00 No Holiday      237        2      237 No Holiday     0.00
## 8669     0.00 No Holiday      270        4      270 No Holiday     0.00
## 1255     0.00 No Holiday     2000        6     2000 No Holiday     0.00
## 8749     1.70 No Holiday     1409       12     1409 No Holiday     1.70
## 4335     2.92 No Holiday     1211       14     1211 No Holiday     2.92
## 5610     1.82 No Holiday     1837       17     1837 No Holiday     1.82
##        col 2094 col 2095   col 2096 col 2097 col 2098 col 2099 col 2100
## 4035 18/05/2018      1.5 18/05/2018   Spring   Spring       48     0.00
## 8669 27/11/2018      1.0 27/11/2018   Autumn   Autumn       95     0.00
## 1255 22/01/2018      0.4 22/01/2018   Winter   Winter      165     0.00
## 8749 30/11/2018      1.3 30/11/2018   Autumn   Autumn      720     1.70
## 4335 30/05/2018      2.9 30/05/2018   Spring   Spring     1119     2.92
## 5610 22/07/2018      2.1 22/07/2018   Summer   Summer      965     1.82
##      col 2101 col 2102   col 2103 col 2104 col 2105 col 2106 col 2107 col 2108
## 4035     18.4     18.4 18/05/2018     18.4      1.5      1.5      1.5      1.5
## 8669      1.2      1.2 27/11/2018      1.2      1.0      1.0      1.0      1.0
## 1255    -14.3    -14.3 22/01/2018    -14.3      0.4      0.4      0.4      0.4
## 8749     -7.8     -7.8 30/11/2018     -7.8      1.3      1.3      1.3      1.3
## 4335     15.5     15.5 30/05/2018     15.5      2.9      2.9      2.9      2.9
## 5610     18.5     18.5 22/07/2018     18.5      2.1      2.1      2.1      2.1
##      col 2109 col 2110 col 2111 col 2112   col 2113 col 2114 col 2115 col 2116
## 4035     18.4      Yes      Yes      Yes 18/05/2018        2      0.5   Spring
## 8669      1.2      Yes      Yes      Yes 27/11/2018        4      0.0   Autumn
## 1255    -14.3      Yes      Yes      Yes 22/01/2018        6      0.0   Winter
## 8749     -7.8      Yes      Yes      Yes 30/11/2018       12      0.0   Autumn
## 4335     15.5      Yes      Yes      Yes 30/05/2018       14      0.0   Spring
## 5610     18.5      Yes      Yes      Yes 22/07/2018       17      0.0   Summer
##      col 2117 col 2118 col 2119 col 2120 col 2121 col 2122 col 2123   col 2124
## 4035     18.8        2        2      237     0.00      1.5        0 18/05/2018
## 8669      3.1        4        4      270     0.00      1.0        0 27/11/2018
## 1255      0.0        6        6     2000     0.00      0.4        0 22/01/2018
## 8749      6.6       12       12     1409     1.70      1.3        0 30/11/2018
## 4335     24.3       14       14     1211     2.92      2.9        0 30/05/2018
## 5610     37.6       17       17     1837     1.82      2.1        0 22/07/2018
##      col 2125 col 2126 col 2127 col 2128 col 2129 col 2130 col 2131 col 2132
## 4035     0.00       98      1.5       98     18.8     0.00      Yes        2
## 8669     0.00       88      1.0       88      3.1     0.00      Yes        4
## 1255     0.00       33      0.4       33      0.0     0.00      Yes        6
## 8749     1.70       35      1.3       35      6.6     1.70      Yes       12
## 4335     2.92       58      2.9       58     24.3     2.92      Yes       14
## 5610     1.82       33      2.1       33     37.6     1.82      Yes       17
##      col 2133 col 2134 col 2135 col 2136   col 2137   col 2138 col 2139
## 4035     0.00       98       98     18.8 18/05/2018 No Holiday        2
## 8669     0.00       88       88      3.1 27/11/2018 No Holiday        4
## 1255     0.00       33       33      0.0 22/01/2018 No Holiday        6
## 8749     1.70       35       35      6.6 30/11/2018 No Holiday       12
## 4335     2.92       58       58     24.3 30/05/2018 No Holiday       14
## 5610     1.82       33       33     37.6 22/07/2018 No Holiday       17
##      col 2140   col 2141   col 2142 col 2143 col 2144 col 2145 col 2146
## 4035     18.4 No Holiday 18/05/2018      Yes      0.5        2      237
## 8669      1.2 No Holiday 27/11/2018      Yes      0.0        4      270
## 1255    -14.3 No Holiday 22/01/2018      Yes      0.0        6     2000
## 8749     -7.8 No Holiday 30/11/2018      Yes      0.0       12     1409
## 4335     15.5 No Holiday 30/05/2018      Yes      0.0       14     1211
## 5610     18.5 No Holiday 22/07/2018      Yes      0.0       17     1837
##      col 2147 col 2148 col 2149 col 2150   col 2151 col 2152 col 2153 col 2154
## 4035      0.5     0.00   Spring        2 18/05/2018     18.4       48        0
## 8669      0.0     0.00   Autumn        4 27/11/2018      1.2       95        0
## 1255      0.0     0.00   Winter        6 22/01/2018    -14.3      165        0
## 8749      0.0     1.70   Autumn       12 30/11/2018     -7.8      720        0
## 4335      0.0     2.92   Spring       14 30/05/2018     15.5     1119        0
## 5610      0.0     1.82   Summer       17 22/07/2018     18.5      965        0
##      col 2155 col 2156 col 2157 col 2158 col 2159 col 2160 col 2161 col 2162
## 4035     0.00   Spring     18.4      0.5        2      237   Spring        0
## 8669     0.00   Autumn      1.2      0.0        4      270   Autumn        0
## 1255     0.00   Winter    -14.3      0.0        6     2000   Winter        0
## 8749     1.70   Autumn     -7.8      0.0       12     1409   Autumn        0
## 4335     2.92   Spring     15.5      0.0       14     1211   Spring        0
## 5610     1.82   Summer     18.5      0.0       17     1837   Summer        0
##      col 2163 col 2164 col 2165 col 2166 col 2167   col 2168 col 2169 col 2170
## 4035       98       98      1.5      1.5      0.5 18/05/2018   Spring      237
## 8669       88       88      1.0      1.0      0.0 27/11/2018   Autumn      270
## 1255       33       33      0.4      0.4      0.0 22/01/2018   Winter     2000
## 8749       35       35      1.3      1.3      0.0 30/11/2018   Autumn     1409
## 4335       58       58      2.9      2.9      0.0 30/05/2018   Spring     1211
## 5610       33       33      2.1      2.1      0.0 22/07/2018   Summer     1837
##      col 2171   col 2172 col 2173 col 2174 col 2175 col 2176 col 2177 col 2178
## 4035      1.5 No Holiday      237      237      Yes      0.5      Yes      0.5
## 8669      1.0 No Holiday      270      270      Yes      0.0      Yes      0.0
## 1255      0.4 No Holiday     2000     2000      Yes      0.0      Yes      0.0
## 8749      1.3 No Holiday     1409     1409      Yes      0.0      Yes      0.0
## 4335      2.9 No Holiday     1211     1211      Yes      0.0      Yes      0.0
## 5610      2.1 No Holiday     1837     1837      Yes      0.0      Yes      0.0
##      col 2179 col 2180 col 2181 col 2182 col 2183   col 2184 col 2185 col 2186
## 4035      0.5     0.00        2        0        0 18/05/2018      237     0.00
## 8669      0.0     0.00        4        0        0 27/11/2018      270     0.00
## 1255      0.0     0.00        6        0        0 22/01/2018     2000     0.00
## 8749      0.0     1.70       12        0        0 30/11/2018     1409     1.70
## 4335      0.0     2.92       14        0        0 30/05/2018     1211     2.92
## 5610      0.0     1.82       17        0        0 22/07/2018     1837     1.82
##      col 2187 col 2188 col 2189 col 2190 col 2191 col 2192 col 2193 col 2194
## 4035     18.8        2      0.5       98     18.4     0.00        2     0.00
## 8669      3.1        4      0.0       88      1.2     0.00        4     0.00
## 1255      0.0        6      0.0       33    -14.3     0.00        6     0.00
## 8749      6.6       12      0.0       35     -7.8     1.70       12     1.70
## 4335     24.3       14      0.0       58     15.5     2.92       14     2.92
## 5610     37.6       17      0.0       33     18.5     1.82       17     1.82
##      col 2195 col 2196 col 2197 col 2198 col 2199   col 2200 col 2201
## 4035      0.5   Spring       48      Yes        0 18/05/2018      Yes
## 8669      0.0   Autumn       95      Yes        0 27/11/2018      Yes
## 1255      0.0   Winter      165      Yes        0 22/01/2018      Yes
## 8749      0.0   Autumn      720      Yes        0 30/11/2018      Yes
## 4335      0.0   Spring     1119      Yes        0 30/05/2018      Yes
## 5610      0.0   Summer      965      Yes        0 22/07/2018      Yes
##        col 2202 col 2203 col 2204   col 2205 col 2206 col 2207 col 2208
## 4035 18/05/2018        0        0 18/05/2018       98     18.8        2
## 8669 27/11/2018        0        0 27/11/2018       88      3.1        4
## 1255 22/01/2018        0        0 22/01/2018       33      0.0        6
## 8749 30/11/2018        0        0 30/11/2018       35      6.6       12
## 4335 30/05/2018        0        0 30/05/2018       58     24.3       14
## 5610 22/07/2018        0        0 22/07/2018       33     37.6       17
##      col 2209 col 2210 col 2211 col 2212 col 2213 col 2214 col 2215 col 2216
## 4035     18.8      Yes        0     18.4       48      1.5      237        2
## 8669      3.1      Yes        0      1.2       95      1.0      270        4
## 1255      0.0      Yes        0    -14.3      165      0.4     2000        6
## 8749      6.6      Yes        0     -7.8      720      1.3     1409       12
## 4335     24.3      Yes        0     15.5     1119      2.9     1211       14
## 5610     37.6      Yes        0     18.5      965      2.1     1837       17
##      col 2217 col 2218 col 2219   col 2220 col 2221 col 2222 col 2223
## 4035      237        2     0.00 No Holiday     18.8     18.4     18.8
## 8669      270        4     0.00 No Holiday      3.1      1.2      3.1
## 1255     2000        6     0.00 No Holiday      0.0    -14.3      0.0
## 8749     1409       12     1.70 No Holiday      6.6     -7.8      6.6
## 4335     1211       14     2.92 No Holiday     24.3     15.5     24.3
## 5610     1837       17     1.82 No Holiday     37.6     18.5     37.6
##        col 2224   col 2225 col 2226 col 2227 col 2228 col 2229 col 2230
## 4035 No Holiday No Holiday        0      Yes       48      237        0
## 8669 No Holiday No Holiday        0      Yes       95      270        0
## 1255 No Holiday No Holiday        0      Yes      165     2000        0
## 8749 No Holiday No Holiday        0      Yes      720     1409        0
## 4335 No Holiday No Holiday        0      Yes     1119     1211        0
## 5610 No Holiday No Holiday        0      Yes      965     1837        0
##        col 2231 col 2232 col 2233 col 2234 col 2235 col 2236 col 2237
## 4035 No Holiday      1.5      Yes        2      1.5      0.5      0.5
## 8669 No Holiday      1.0      Yes        4      1.0      0.0      0.0
## 1255 No Holiday      0.4      Yes        6      0.4      0.0      0.0
## 8749 No Holiday      1.3      Yes       12      1.3      0.0      0.0
## 4335 No Holiday      2.9      Yes       14      2.9      0.0      0.0
## 5610 No Holiday      2.1      Yes       17      2.1      0.0      0.0
##        col 2238 col 2239 col 2240 col 2241 col 2242   col 2243 col 2244
## 4035 No Holiday        2      Yes      0.5     18.4 No Holiday      1.5
## 8669 No Holiday        4      Yes      0.0      1.2 No Holiday      1.0
## 1255 No Holiday        6      Yes      0.0    -14.3 No Holiday      0.4
## 8749 No Holiday       12      Yes      0.0     -7.8 No Holiday      1.3
## 4335 No Holiday       14      Yes      0.0     15.5 No Holiday      2.9
## 5610 No Holiday       17      Yes      0.0     18.5 No Holiday      2.1
##        col 2245 col 2246 col 2247 col 2248 col 2249 col 2250   col 2251
## 4035 18/05/2018       98     0.00     18.8       98     18.8 No Holiday
## 8669 27/11/2018       88     0.00      3.1       88      3.1 No Holiday
## 1255 22/01/2018       33     0.00      0.0       33      0.0 No Holiday
## 8749 30/11/2018       35     1.70      6.6       35      6.6 No Holiday
## 4335 30/05/2018       58     2.92     24.3       58     24.3 No Holiday
## 5610 22/07/2018       33     1.82     37.6       33     37.6 No Holiday
##        col 2252 col 2253   col 2254 col 2255   col 2256 col 2257 col 2258
## 4035 No Holiday      1.5 No Holiday      1.5 No Holiday        2        0
## 8669 No Holiday      1.0 No Holiday      1.0 No Holiday        4        0
## 1255 No Holiday      0.4 No Holiday      0.4 No Holiday        6        0
## 8749 No Holiday      1.3 No Holiday      1.3 No Holiday       12        0
## 4335 No Holiday      2.9 No Holiday      2.9 No Holiday       14        0
## 5610 No Holiday      2.1 No Holiday      2.1 No Holiday       17        0
##      col 2259 col 2260 col 2261   col 2262 col 2263 col 2264 col 2265 col 2266
## 4035        2     18.8     18.4 18/05/2018      Yes      Yes     18.4      237
## 8669        4      3.1      1.2 27/11/2018      Yes      Yes      1.2      270
## 1255        6      0.0    -14.3 22/01/2018      Yes      Yes    -14.3     2000
## 8749       12      6.6     -7.8 30/11/2018      Yes      Yes     -7.8     1409
## 4335       14     24.3     15.5 30/05/2018      Yes      Yes     15.5     1211
## 5610       17     37.6     18.5 22/07/2018      Yes      Yes     18.5     1837
##      col 2267 col 2268 col 2269 col 2270   col 2271   col 2272 col 2273
## 4035        2      0.5       48       98 18/05/2018 18/05/2018      Yes
## 8669        4      0.0       95       88 27/11/2018 27/11/2018      Yes
## 1255        6      0.0      165       33 22/01/2018 22/01/2018      Yes
## 8749       12      0.0      720       35 30/11/2018 30/11/2018      Yes
## 4335       14      0.0     1119       58 30/05/2018 30/05/2018      Yes
## 5610       17      0.0      965       33 22/07/2018 22/07/2018      Yes
##        col 2274 col 2275 col 2276 col 2277 col 2278 col 2279 col 2280 col 2281
## 4035 18/05/2018       48      237     0.00     0.00      1.5       98   Spring
## 8669 27/11/2018       95      270     0.00     0.00      1.0       88   Autumn
## 1255 22/01/2018      165     2000     0.00     0.00      0.4       33   Winter
## 8749 30/11/2018      720     1409     1.70     1.70      1.3       35   Autumn
## 4335 30/05/2018     1119     1211     2.92     2.92      2.9       58   Spring
## 5610 22/07/2018      965     1837     1.82     1.82      2.1       33   Summer
##      col 2282 col 2283 col 2284 col 2285 col 2286   col 2287 col 2288 col 2289
## 4035       98       48   Spring      Yes     0.00 No Holiday      0.5        2
## 8669       88       95   Autumn      Yes     0.00 No Holiday      0.0        4
## 1255       33      165   Winter      Yes     0.00 No Holiday      0.0        6
## 8749       35      720   Autumn      Yes     1.70 No Holiday      0.0       12
## 4335       58     1119   Spring      Yes     2.92 No Holiday      0.0       14
## 5610       33      965   Summer      Yes     1.82 No Holiday      0.0       17
##        col 2290 col 2291 col 2292 col 2293   col 2294 col 2295 col 2296
## 4035 18/05/2018   Spring      0.5      1.5 No Holiday      0.5        2
## 8669 27/11/2018   Autumn      0.0      1.0 No Holiday      0.0        4
## 1255 22/01/2018   Winter      0.0      0.4 No Holiday      0.0        6
## 8749 30/11/2018   Autumn      0.0      1.3 No Holiday      0.0       12
## 4335 30/05/2018   Spring      0.0      2.9 No Holiday      0.0       14
## 5610 22/07/2018   Summer      0.0      2.1 No Holiday      0.0       17
##      col 2297 col 2298 col 2299 col 2300 col 2301 col 2302 col 2303 col 2304
## 4035     18.4     18.8     0.00   Spring   Spring     0.00      237       48
## 8669      1.2      3.1     0.00   Autumn   Autumn     0.00      270       95
## 1255    -14.3      0.0     0.00   Winter   Winter     0.00     2000      165
## 8749     -7.8      6.6     1.70   Autumn   Autumn     1.70     1409      720
## 4335     15.5     24.3     2.92   Spring   Spring     2.92     1211     1119
## 5610     18.5     37.6     1.82   Summer   Summer     1.82     1837      965
##      col 2305 col 2306 col 2307 col 2308 col 2309   col 2310 col 2311
## 4035     18.8        2     0.00      0.5   Spring No Holiday     18.4
## 8669      3.1        4     0.00      0.0   Autumn No Holiday      1.2
## 1255      0.0        6     0.00      0.0   Winter No Holiday    -14.3
## 8749      6.6       12     1.70      0.0   Autumn No Holiday     -7.8
## 4335     24.3       14     2.92      0.0   Spring No Holiday     15.5
## 5610     37.6       17     1.82      0.0   Summer No Holiday     18.5
##        col 2312 col 2313 col 2314 col 2315 col 2316 col 2317   col 2318
## 4035 No Holiday      0.5     0.00     0.00      Yes      237 18/05/2018
## 8669 No Holiday      0.0     0.00     0.00      Yes      270 27/11/2018
## 1255 No Holiday      0.0     0.00     0.00      Yes     2000 22/01/2018
## 8749 No Holiday      0.0     1.70     1.70      Yes     1409 30/11/2018
## 4335 No Holiday      0.0     2.92     2.92      Yes     1211 30/05/2018
## 5610 No Holiday      0.0     1.82     1.82      Yes     1837 22/07/2018
##      col 2319 col 2320   col 2321 col 2322 col 2323   col 2324 col 2325
## 4035     0.00        0 18/05/2018      Yes      237 18/05/2018      237
## 8669     0.00        0 27/11/2018      Yes      270 27/11/2018      270
## 1255     0.00        0 22/01/2018      Yes     2000 22/01/2018     2000
## 8749     1.70        0 30/11/2018      Yes     1409 30/11/2018     1409
## 4335     2.92        0 30/05/2018      Yes     1211 30/05/2018     1211
## 5610     1.82        0 22/07/2018      Yes     1837 22/07/2018     1837
##      col 2326 col 2327   col 2328 col 2329 col 2330 col 2331 col 2332 col 2333
## 4035      1.5        2 18/05/2018        0       48     18.4     18.4   Spring
## 8669      1.0        4 27/11/2018        0       95      1.2      1.2   Autumn
## 1255      0.4        6 22/01/2018        0      165    -14.3    -14.3   Winter
## 8749      1.3       12 30/11/2018        0      720     -7.8     -7.8   Autumn
## 4335      2.9       14 30/05/2018        0     1119     15.5     15.5   Spring
## 5610      2.1       17 22/07/2018        0      965     18.5     18.5   Summer
##      col 2334 col 2335 col 2336 col 2337 col 2338 col 2339 col 2340 col 2341
## 4035      0.5      1.5        0        0      0.5      237   Spring      0.5
## 8669      0.0      1.0        0        0      0.0      270   Autumn      0.0
## 1255      0.0      0.4        0        0      0.0     2000   Winter      0.0
## 8749      0.0      1.3        0        0      0.0     1409   Autumn      0.0
## 4335      0.0      2.9        0        0      0.0     1211   Spring      0.0
## 5610      0.0      2.1        0        0      0.0     1837   Summer      0.0
##      col 2342 col 2343 col 2344 col 2345 col 2346 col 2347   col 2348 col 2349
## 4035      Yes     18.8       48     18.8     18.8      1.5 18/05/2018       48
## 8669      Yes      3.1       95      3.1      3.1      1.0 27/11/2018       95
## 1255      Yes      0.0      165      0.0      0.0      0.4 22/01/2018      165
## 8749      Yes      6.6      720      6.6      6.6      1.3 30/11/2018      720
## 4335      Yes     24.3     1119     24.3     24.3      2.9 30/05/2018     1119
## 5610      Yes     37.6      965     37.6     37.6      2.1 22/07/2018      965
##      col 2350 col 2351 col 2352   col 2353 col 2354   col 2355 col 2356
## 4035      0.5     18.8     18.4 No Holiday     18.4 18/05/2018        2
## 8669      0.0      3.1      1.2 No Holiday      1.2 27/11/2018        4
## 1255      0.0      0.0    -14.3 No Holiday    -14.3 22/01/2018        6
## 8749      0.0      6.6     -7.8 No Holiday     -7.8 30/11/2018       12
## 4335      0.0     24.3     15.5 No Holiday     15.5 30/05/2018       14
## 5610      0.0     37.6     18.5 No Holiday     18.5 22/07/2018       17
##      col 2357 col 2358 col 2359 col 2360 col 2361 col 2362 col 2363   col 2364
## 4035      237        0      Yes      Yes     0.00      0.5        2 18/05/2018
## 8669      270        0      Yes      Yes     0.00      0.0        4 27/11/2018
## 1255     2000        0      Yes      Yes     0.00      0.0        6 22/01/2018
## 8749     1409        0      Yes      Yes     1.70      0.0       12 30/11/2018
## 4335     1211        0      Yes      Yes     2.92      0.0       14 30/05/2018
## 5610     1837        0      Yes      Yes     1.82      0.0       17 22/07/2018
##      col 2365 col 2366 col 2367 col 2368 col 2369 col 2370 col 2371 col 2372
## 4035        0      237      Yes        0       98       98      237   Spring
## 8669        0      270      Yes        0       88       88      270   Autumn
## 1255        0     2000      Yes        0       33       33     2000   Winter
## 8749        0     1409      Yes        0       35       35     1409   Autumn
## 4335        0     1211      Yes        0       58       58     1211   Spring
## 5610        0     1837      Yes        0       33       33     1837   Summer
##      col 2373 col 2374 col 2375 col 2376 col 2377 col 2378 col 2379 col 2380
## 4035        2      Yes      1.5      1.5        2      0.5   Spring     0.00
## 8669        4      Yes      1.0      1.0        4      0.0   Autumn     0.00
## 1255        6      Yes      0.4      0.4        6      0.0   Winter     0.00
## 8749       12      Yes      1.3      1.3       12      0.0   Autumn     1.70
## 4335       14      Yes      2.9      2.9       14      0.0   Spring     2.92
## 5610       17      Yes      2.1      2.1       17      0.0   Summer     1.82
##      col 2381 col 2382 col 2383 col 2384 col 2385 col 2386 col 2387 col 2388
## 4035     0.00     18.8      1.5        2       48      237     0.00      0.5
## 8669     0.00      3.1      1.0        4       95      270     0.00      0.0
## 1255     0.00      0.0      0.4        6      165     2000     0.00      0.0
## 8749     1.70      6.6      1.3       12      720     1409     1.70      0.0
## 4335     2.92     24.3      2.9       14     1119     1211     2.92      0.0
## 5610     1.82     37.6      2.1       17      965     1837     1.82      0.0
##      col 2389 col 2390   col 2391 col 2392 col 2393 col 2394 col 2395 col 2396
## 4035        2        0 18/05/2018       48       48        2   Spring      Yes
## 8669        4        0 27/11/2018       95       95        4   Autumn      Yes
## 1255        6        0 22/01/2018      165      165        6   Winter      Yes
## 8749       12        0 30/11/2018      720      720       12   Autumn      Yes
## 4335       14        0 30/05/2018     1119     1119       14   Spring      Yes
## 5610       17        0 22/07/2018      965      965       17   Summer      Yes
##        col 2397 col 2398 col 2399 col 2400 col 2401 col 2402 col 2403 col 2404
## 4035 18/05/2018     0.00       48      0.5        0      237        2     18.4
## 8669 27/11/2018     0.00       95      0.0        0      270        4      1.2
## 1255 22/01/2018     0.00      165      0.0        0     2000        6    -14.3
## 8749 30/11/2018     1.70      720      0.0        0     1409       12     -7.8
## 4335 30/05/2018     2.92     1119      0.0        0     1211       14     15.5
## 5610 22/07/2018     1.82      965      0.0        0     1837       17     18.5
##      col 2405 col 2406   col 2407 col 2408   col 2409 col 2410 col 2411
## 4035       48       98 18/05/2018      Yes No Holiday      1.5   Spring
## 8669       95       88 27/11/2018      Yes No Holiday      1.0   Autumn
## 1255      165       33 22/01/2018      Yes No Holiday      0.4   Winter
## 8749      720       35 30/11/2018      Yes No Holiday      1.3   Autumn
## 4335     1119       58 30/05/2018      Yes No Holiday      2.9   Spring
## 5610      965       33 22/07/2018      Yes No Holiday      2.1   Summer
##      col 2412 col 2413   col 2414 col 2415   col 2416   col 2417   col 2418
## 4035     0.00     18.4 No Holiday      1.5 No Holiday No Holiday 18/05/2018
## 8669     0.00      1.2 No Holiday      1.0 No Holiday No Holiday 27/11/2018
## 1255     0.00    -14.3 No Holiday      0.4 No Holiday No Holiday 22/01/2018
## 8749     1.70     -7.8 No Holiday      1.3 No Holiday No Holiday 30/11/2018
## 4335     2.92     15.5 No Holiday      2.9 No Holiday No Holiday 30/05/2018
## 5610     1.82     18.5 No Holiday      2.1 No Holiday No Holiday 22/07/2018
##      col 2419 col 2420 col 2421 col 2422 col 2423 col 2424 col 2425 col 2426
## 4035     18.8      0.5      1.5      0.5      Yes      237        2       98
## 8669      3.1      0.0      1.0      0.0      Yes      270        4       88
## 1255      0.0      0.0      0.4      0.0      Yes     2000        6       33
## 8749      6.6      0.0      1.3      0.0      Yes     1409       12       35
## 4335     24.3      0.0      2.9      0.0      Yes     1211       14       58
## 5610     37.6      0.0      2.1      0.0      Yes     1837       17       33
##      col 2427 col 2428 col 2429 col 2430   col 2431 col 2432 col 2433 col 2434
## 4035        0       98     0.00   Spring No Holiday        0     0.00       48
## 8669        0       88     0.00   Autumn No Holiday        0     0.00       95
## 1255        0       33     0.00   Winter No Holiday        0     0.00      165
## 8749        0       35     1.70   Autumn No Holiday        0     1.70      720
## 4335        0       58     2.92   Spring No Holiday        0     2.92     1119
## 5610        0       33     1.82   Summer No Holiday        0     1.82      965
##      col 2435 col 2436 col 2437 col 2438 col 2439 col 2440 col 2441 col 2442
## 4035      0.5        0     18.4       48      1.5     18.4      237       98
## 8669      0.0        0      1.2       95      1.0      1.2      270       88
## 1255      0.0        0    -14.3      165      0.4    -14.3     2000       33
## 8749      0.0        0     -7.8      720      1.3     -7.8     1409       35
## 4335      0.0        0     15.5     1119      2.9     15.5     1211       58
## 5610      0.0        0     18.5      965      2.1     18.5     1837       33
##      col 2443 col 2444 col 2445 col 2446 col 2447   col 2448   col 2449
## 4035     18.4     18.4        2     18.8      0.5 No Holiday No Holiday
## 8669      1.2      1.2        4      3.1      0.0 No Holiday No Holiday
## 1255    -14.3    -14.3        6      0.0      0.0 No Holiday No Holiday
## 8749     -7.8     -7.8       12      6.6      0.0 No Holiday No Holiday
## 4335     15.5     15.5       14     24.3      0.0 No Holiday No Holiday
## 5610     18.5     18.5       17     37.6      0.0 No Holiday No Holiday
##      col 2450 col 2451 col 2452   col 2453 col 2454 col 2455 col 2456 col 2457
## 4035        2       48     18.8 18/05/2018      Yes      Yes      0.5   Spring
## 8669        4       95      3.1 27/11/2018      Yes      Yes      0.0   Autumn
## 1255        6      165      0.0 22/01/2018      Yes      Yes      0.0   Winter
## 8749       12      720      6.6 30/11/2018      Yes      Yes      0.0   Autumn
## 4335       14     1119     24.3 30/05/2018      Yes      Yes      0.0   Spring
## 5610       17      965     37.6 22/07/2018      Yes      Yes      0.0   Summer
##      col 2458 col 2459 col 2460 col 2461 col 2462 col 2463 col 2464 col 2465
## 4035      237        2     18.8      1.5      0.5      1.5     0.00      1.5
## 8669      270        4      3.1      1.0      0.0      1.0     0.00      1.0
## 1255     2000        6      0.0      0.4      0.0      0.4     0.00      0.4
## 8749     1409       12      6.6      1.3      0.0      1.3     1.70      1.3
## 4335     1211       14     24.3      2.9      0.0      2.9     2.92      2.9
## 5610     1837       17     37.6      2.1      0.0      2.1     1.82      2.1
##      col 2466 col 2467   col 2468   col 2469 col 2470 col 2471 col 2472
## 4035      Yes   Spring 18/05/2018 18/05/2018      0.5     0.00      1.5
## 8669      Yes   Autumn 27/11/2018 27/11/2018      0.0     0.00      1.0
## 1255      Yes   Winter 22/01/2018 22/01/2018      0.0     0.00      0.4
## 8749      Yes   Autumn 30/11/2018 30/11/2018      0.0     1.70      1.3
## 4335      Yes   Spring 30/05/2018 30/05/2018      0.0     2.92      2.9
## 5610      Yes   Summer 22/07/2018 22/07/2018      0.0     1.82      2.1
##      col 2473 col 2474 col 2475   col 2476 col 2477 col 2478 col 2479 col 2480
## 4035      Yes       48        0 No Holiday      Yes   Spring     18.4     18.8
## 8669      Yes       95        0 No Holiday      Yes   Autumn      1.2      3.1
## 1255      Yes      165        0 No Holiday      Yes   Winter    -14.3      0.0
## 8749      Yes      720        0 No Holiday      Yes   Autumn     -7.8      6.6
## 4335      Yes     1119        0 No Holiday      Yes   Spring     15.5     24.3
## 5610      Yes      965        0 No Holiday      Yes   Summer     18.5     37.6
##      col 2481 col 2482 col 2483 col 2484 col 2485 col 2486   col 2487 col 2488
## 4035        0     18.8     18.8      0.5      Yes       98 18/05/2018      Yes
## 8669        0      3.1      3.1      0.0      Yes       88 27/11/2018      Yes
## 1255        0      0.0      0.0      0.0      Yes       33 22/01/2018      Yes
## 8749        0      6.6      6.6      0.0      Yes       35 30/11/2018      Yes
## 4335        0     24.3     24.3      0.0      Yes       58 30/05/2018      Yes
## 5610        0     37.6     37.6      0.0      Yes       33 22/07/2018      Yes
##      col 2489 col 2490 col 2491 col 2492 col 2493   col 2494   col 2495
## 4035   Spring      Yes     18.4   Spring      237 18/05/2018 No Holiday
## 8669   Autumn      Yes      1.2   Autumn      270 27/11/2018 No Holiday
## 1255   Winter      Yes    -14.3   Winter     2000 22/01/2018 No Holiday
## 8749   Autumn      Yes     -7.8   Autumn     1409 30/11/2018 No Holiday
## 4335   Spring      Yes     15.5   Spring     1211 30/05/2018 No Holiday
## 5610   Summer      Yes     18.5   Summer     1837 22/07/2018 No Holiday
##      col 2496 col 2497 col 2498 col 2499 col 2500 col 2501 col 2502 col 2503
## 4035     18.8      0.5        0   Spring        0   Spring        2      0.5
## 8669      3.1      0.0        0   Autumn        0   Autumn        4      0.0
## 1255      0.0      0.0        0   Winter        0   Winter        6      0.0
## 8749      6.6      0.0        0   Autumn        0   Autumn       12      0.0
## 4335     24.3      0.0        0   Spring        0   Spring       14      0.0
## 5610     37.6      0.0        0   Summer        0   Summer       17      0.0
##      col 2504 col 2505   col 2506 col 2507 col 2508 col 2509 col 2510 col 2511
## 4035   Spring      1.5 No Holiday      0.5        2      1.5     18.8     18.4
## 8669   Autumn      1.0 No Holiday      0.0        4      1.0      3.1      1.2
## 1255   Winter      0.4 No Holiday      0.0        6      0.4      0.0    -14.3
## 8749   Autumn      1.3 No Holiday      0.0       12      1.3      6.6     -7.8
## 4335   Spring      2.9 No Holiday      0.0       14      2.9     24.3     15.5
## 5610   Summer      2.1 No Holiday      0.0       17      2.1     37.6     18.5
##      col 2512 col 2513 col 2514 col 2515   col 2516 col 2517 col 2518
## 4035        0       48        2     0.00 18/05/2018      0.5      1.5
## 8669        0       95        4     0.00 27/11/2018      0.0      1.0
## 1255        0      165        6     0.00 22/01/2018      0.0      0.4
## 8749        0      720       12     1.70 30/11/2018      0.0      1.3
## 4335        0     1119       14     2.92 30/05/2018      0.0      2.9
## 5610        0      965       17     1.82 22/07/2018      0.0      2.1
##        col 2519 col 2520 col 2521   col 2522 col 2523 col 2524 col 2525
## 4035 No Holiday        0   Spring 18/05/2018      1.5     0.00     0.00
## 8669 No Holiday        0   Autumn 27/11/2018      1.0     0.00     0.00
## 1255 No Holiday        0   Winter 22/01/2018      0.4     0.00     0.00
## 8749 No Holiday        0   Autumn 30/11/2018      1.3     1.70     1.70
## 4335 No Holiday        0   Spring 30/05/2018      2.9     2.92     2.92
## 5610 No Holiday        0   Summer 22/07/2018      2.1     1.82     1.82
##      col 2526 col 2527 col 2528   col 2529 col 2530 col 2531 col 2532 col 2533
## 4035        0        0     0.00 No Holiday        2      1.5      1.5      0.5
## 8669        0        0     0.00 No Holiday        4      1.0      1.0      0.0
## 1255        0        0     0.00 No Holiday        6      0.4      0.4      0.0
## 8749        0        0     1.70 No Holiday       12      1.3      1.3      0.0
## 4335        0        0     2.92 No Holiday       14      2.9      2.9      0.0
## 5610        0        0     1.82 No Holiday       17      2.1      2.1      0.0
##      col 2534 col 2535 col 2536 col 2537   col 2538 col 2539 col 2540 col 2541
## 4035        2      237       48       48 No Holiday      0.5      1.5      Yes
## 8669        4      270       95       95 No Holiday      0.0      1.0      Yes
## 1255        6     2000      165      165 No Holiday      0.0      0.4      Yes
## 8749       12     1409      720      720 No Holiday      0.0      1.3      Yes
## 4335       14     1211     1119     1119 No Holiday      0.0      2.9      Yes
## 5610       17     1837      965      965 No Holiday      0.0      2.1      Yes
##        col 2542 col 2543 col 2544 col 2545   col 2546 col 2547   col 2548
## 4035 No Holiday   Spring     18.8      237 18/05/2018      0.5 18/05/2018
## 8669 No Holiday   Autumn      3.1      270 27/11/2018      0.0 27/11/2018
## 1255 No Holiday   Winter      0.0     2000 22/01/2018      0.0 22/01/2018
## 8749 No Holiday   Autumn      6.6     1409 30/11/2018      0.0 30/11/2018
## 4335 No Holiday   Spring     24.3     1211 30/05/2018      0.0 30/05/2018
## 5610 No Holiday   Summer     37.6     1837 22/07/2018      0.0 22/07/2018
##      col 2549 col 2550 col 2551 col 2552 col 2553 col 2554   col 2555 col 2556
## 4035     18.8        2       48        2        0     18.4 18/05/2018   Spring
## 8669      3.1        4       95        4        0      1.2 27/11/2018   Autumn
## 1255      0.0        6      165        6        0    -14.3 22/01/2018   Winter
## 8749      6.6       12      720       12        0     -7.8 30/11/2018   Autumn
## 4335     24.3       14     1119       14        0     15.5 30/05/2018   Spring
## 5610     37.6       17      965       17        0     18.5 22/07/2018   Summer
##        col 2557 col 2558 col 2559 col 2560 col 2561 col 2562 col 2563 col 2564
## 4035 No Holiday        2       48      1.5      1.5      1.5     18.4      Yes
## 8669 No Holiday        4       95      1.0      1.0      1.0      1.2      Yes
## 1255 No Holiday        6      165      0.4      0.4      0.4    -14.3      Yes
## 8749 No Holiday       12      720      1.3      1.3      1.3     -7.8      Yes
## 4335 No Holiday       14     1119      2.9      2.9      2.9     15.5      Yes
## 5610 No Holiday       17      965      2.1      2.1      2.1     18.5      Yes
##      col 2565 col 2566   col 2567 col 2568 col 2569   col 2570 col 2571
## 4035        2     18.4 No Holiday     18.8   Spring No Holiday     0.00
## 8669        4      1.2 No Holiday      3.1   Autumn No Holiday     0.00
## 1255        6    -14.3 No Holiday      0.0   Winter No Holiday     0.00
## 8749       12     -7.8 No Holiday      6.6   Autumn No Holiday     1.70
## 4335       14     15.5 No Holiday     24.3   Spring No Holiday     2.92
## 5610       17     18.5 No Holiday     37.6   Summer No Holiday     1.82
##      col 2572   col 2573 col 2574 col 2575 col 2576 col 2577 col 2578 col 2579
## 4035      237 18/05/2018     0.00      1.5      Yes      237     18.8     18.8
## 8669      270 27/11/2018     0.00      1.0      Yes      270      3.1      3.1
## 1255     2000 22/01/2018     0.00      0.4      Yes     2000      0.0      0.0
## 8749     1409 30/11/2018     1.70      1.3      Yes     1409      6.6      6.6
## 4335     1211 30/05/2018     2.92      2.9      Yes     1211     24.3     24.3
## 5610     1837 22/07/2018     1.82      2.1      Yes     1837     37.6     37.6
##      col 2580   col 2581 col 2582 col 2583 col 2584   col 2585 col 2586
## 4035     18.4 No Holiday     18.8     0.00   Spring No Holiday     18.4
## 8669      1.2 No Holiday      3.1     0.00   Autumn No Holiday      1.2
## 1255    -14.3 No Holiday      0.0     0.00   Winter No Holiday    -14.3
## 8749     -7.8 No Holiday      6.6     1.70   Autumn No Holiday     -7.8
## 4335     15.5 No Holiday     24.3     2.92   Spring No Holiday     15.5
## 5610     18.5 No Holiday     37.6     1.82   Summer No Holiday     18.5
##        col 2587 col 2588 col 2589 col 2590 col 2591   col 2592 col 2593
## 4035 No Holiday     18.8     0.00      1.5      Yes 18/05/2018       98
## 8669 No Holiday      3.1     0.00      1.0      Yes 27/11/2018       88
## 1255 No Holiday      0.0     0.00      0.4      Yes 22/01/2018       33
## 8749 No Holiday      6.6     1.70      1.3      Yes 30/11/2018       35
## 4335 No Holiday     24.3     2.92      2.9      Yes 30/05/2018       58
## 5610 No Holiday     37.6     1.82      2.1      Yes 22/07/2018       33
##      col 2594 col 2595   col 2596 col 2597 col 2598 col 2599 col 2600 col 2601
## 4035        2      1.5 18/05/2018      Yes      1.5       48      Yes   Spring
## 8669        4      1.0 27/11/2018      Yes      1.0       95      Yes   Autumn
## 1255        6      0.4 22/01/2018      Yes      0.4      165      Yes   Winter
## 8749       12      1.3 30/11/2018      Yes      1.3      720      Yes   Autumn
## 4335       14      2.9 30/05/2018      Yes      2.9     1119      Yes   Spring
## 5610       17      2.1 22/07/2018      Yes      2.1      965      Yes   Summer
##      col 2602 col 2603 col 2604 col 2605 col 2606 col 2607 col 2608   col 2609
## 4035       98     18.4     18.8      Yes      Yes   Spring      0.5 No Holiday
## 8669       88      1.2      3.1      Yes      Yes   Autumn      0.0 No Holiday
## 1255       33    -14.3      0.0      Yes      Yes   Winter      0.0 No Holiday
## 8749       35     -7.8      6.6      Yes      Yes   Autumn      0.0 No Holiday
## 4335       58     15.5     24.3      Yes      Yes   Spring      0.0 No Holiday
## 5610       33     18.5     37.6      Yes      Yes   Summer      0.0 No Holiday
##      col 2610 col 2611 col 2612 col 2613 col 2614 col 2615 col 2616 col 2617
## 4035       48   Spring      1.5       48        0      0.5      1.5     0.00
## 8669       95   Autumn      1.0       95        0      0.0      1.0     0.00
## 1255      165   Winter      0.4      165        0      0.0      0.4     0.00
## 8749      720   Autumn      1.3      720        0      0.0      1.3     1.70
## 4335     1119   Spring      2.9     1119        0      0.0      2.9     2.92
## 5610      965   Summer      2.1      965        0      0.0      2.1     1.82
##      col 2618 col 2619 col 2620 col 2621 col 2622 col 2623 col 2624   col 2625
## 4035     0.00      0.5     18.4       98        2      0.5     0.00 18/05/2018
## 8669     0.00      0.0      1.2       88        4      0.0     0.00 27/11/2018
## 1255     0.00      0.0    -14.3       33        6      0.0     0.00 22/01/2018
## 8749     1.70      0.0     -7.8       35       12      0.0     1.70 30/11/2018
## 4335     2.92      0.0     15.5       58       14      0.0     2.92 30/05/2018
## 5610     1.82      0.0     18.5       33       17      0.0     1.82 22/07/2018
##      col 2626 col 2627 col 2628 col 2629   col 2630 col 2631 col 2632 col 2633
## 4035      0.5       98     18.8      237 No Holiday     18.4     18.4      Yes
## 8669      0.0       88      3.1      270 No Holiday      1.2      1.2      Yes
## 1255      0.0       33      0.0     2000 No Holiday    -14.3    -14.3      Yes
## 8749      0.0       35      6.6     1409 No Holiday     -7.8     -7.8      Yes
## 4335      0.0       58     24.3     1211 No Holiday     15.5     15.5      Yes
## 5610      0.0       33     37.6     1837 No Holiday     18.5     18.5      Yes
##      col 2634 col 2635 col 2636 col 2637 col 2638 col 2639 col 2640 col 2641
## 4035        2     18.4   Spring      237     18.8     18.4       98     18.8
## 8669        4      1.2   Autumn      270      3.1      1.2       88      3.1
## 1255        6    -14.3   Winter     2000      0.0    -14.3       33      0.0
## 8749       12     -7.8   Autumn     1409      6.6     -7.8       35      6.6
## 4335       14     15.5   Spring     1211     24.3     15.5       58     24.3
## 5610       17     18.5   Summer     1837     37.6     18.5       33     37.6
##      col 2642   col 2643 col 2644   col 2645   col 2646 col 2647   col 2648
## 4035   Spring No Holiday   Spring No Holiday No Holiday       98 No Holiday
## 8669   Autumn No Holiday   Autumn No Holiday No Holiday       88 No Holiday
## 1255   Winter No Holiday   Winter No Holiday No Holiday       33 No Holiday
## 8749   Autumn No Holiday   Autumn No Holiday No Holiday       35 No Holiday
## 4335   Spring No Holiday   Spring No Holiday No Holiday       58 No Holiday
## 5610   Summer No Holiday   Summer No Holiday No Holiday       33 No Holiday
##      col 2649   col 2650 col 2651 col 2652 col 2653 col 2654 col 2655
## 4035   Spring 18/05/2018     18.4     0.00      0.5     18.8      1.5
## 8669   Autumn 27/11/2018      1.2     0.00      0.0      3.1      1.0
## 1255   Winter 22/01/2018    -14.3     0.00      0.0      0.0      0.4
## 8749   Autumn 30/11/2018     -7.8     1.70      0.0      6.6      1.3
## 4335   Spring 30/05/2018     15.5     2.92      0.0     24.3      2.9
## 5610   Summer 22/07/2018     18.5     1.82      0.0     37.6      2.1
##        col 2656 col 2657 col 2658 col 2659   col 2660 col 2661 col 2662
## 4035 No Holiday     18.4     0.00      1.5 18/05/2018      0.5      1.5
## 8669 No Holiday      1.2     0.00      1.0 27/11/2018      0.0      1.0
## 1255 No Holiday    -14.3     0.00      0.4 22/01/2018      0.0      0.4
## 8749 No Holiday     -7.8     1.70      1.3 30/11/2018      0.0      1.3
## 4335 No Holiday     15.5     2.92      2.9 30/05/2018      0.0      2.9
## 5610 No Holiday     18.5     1.82      2.1 22/07/2018      0.0      2.1
##      col 2663 col 2664 col 2665 col 2666   col 2667 col 2668 col 2669 col 2670
## 4035      237      0.5      0.5      237 18/05/2018   Spring     18.4        0
## 8669      270      0.0      0.0      270 27/11/2018   Autumn      1.2        0
## 1255     2000      0.0      0.0     2000 22/01/2018   Winter    -14.3        0
## 8749     1409      0.0      0.0     1409 30/11/2018   Autumn     -7.8        0
## 4335     1211      0.0      0.0     1211 30/05/2018   Spring     15.5        0
## 5610     1837      0.0      0.0     1837 22/07/2018   Summer     18.5        0
##      col 2671 col 2672 col 2673 col 2674 col 2675 col 2676 col 2677 col 2678
## 4035   Spring        2      0.5       48      Yes     18.8   Spring     18.8
## 8669   Autumn        4      0.0       95      Yes      3.1   Autumn      3.1
## 1255   Winter        6      0.0      165      Yes      0.0   Winter      0.0
## 8749   Autumn       12      0.0      720      Yes      6.6   Autumn      6.6
## 4335   Spring       14      0.0     1119      Yes     24.3   Spring     24.3
## 5610   Summer       17      0.0      965      Yes     37.6   Summer     37.6
##      col 2679 col 2680 col 2681 col 2682 col 2683 col 2684 col 2685 col 2686
## 4035      Yes      1.5        0       48        0      1.5      0.5       98
## 8669      Yes      1.0        0       95        0      1.0      0.0       88
## 1255      Yes      0.4        0      165        0      0.4      0.0       33
## 8749      Yes      1.3        0      720        0      1.3      0.0       35
## 4335      Yes      2.9        0     1119        0      2.9      0.0       58
## 5610      Yes      2.1        0      965        0      2.1      0.0       33
##      col 2687 col 2688 col 2689   col 2690 col 2691 col 2692 col 2693 col 2694
## 4035      Yes   Spring     0.00 18/05/2018      Yes      237     18.8       48
## 8669      Yes   Autumn     0.00 27/11/2018      Yes      270      3.1       95
## 1255      Yes   Winter     0.00 22/01/2018      Yes     2000      0.0      165
## 8749      Yes   Autumn     1.70 30/11/2018      Yes     1409      6.6      720
## 4335      Yes   Spring     2.92 30/05/2018      Yes     1211     24.3     1119
## 5610      Yes   Summer     1.82 22/07/2018      Yes     1837     37.6      965
##      col 2695   col 2696 col 2697 col 2698 col 2699 col 2700 col 2701 col 2702
## 4035        2 No Holiday      1.5     18.4     0.00       48     0.00     18.8
## 8669        4 No Holiday      1.0      1.2     0.00       95     0.00      3.1
## 1255        6 No Holiday      0.4    -14.3     0.00      165     0.00      0.0
## 8749       12 No Holiday      1.3     -7.8     1.70      720     1.70      6.6
## 4335       14 No Holiday      2.9     15.5     2.92     1119     2.92     24.3
## 5610       17 No Holiday      2.1     18.5     1.82      965     1.82     37.6
##      col 2703 col 2704   col 2705 col 2706 col 2707   col 2708 col 2709
## 4035        2        0 No Holiday      237      0.5 No Holiday       48
## 8669        4        0 No Holiday      270      0.0 No Holiday       95
## 1255        6        0 No Holiday     2000      0.0 No Holiday      165
## 8749       12        0 No Holiday     1409      0.0 No Holiday      720
## 4335       14        0 No Holiday     1211      0.0 No Holiday     1119
## 5610       17        0 No Holiday     1837      0.0 No Holiday      965
##        col 2710   col 2711   col 2712 col 2713 col 2714 col 2715 col 2716
## 4035 18/05/2018 No Holiday 18/05/2018     18.4   Spring      237     0.00
## 8669 27/11/2018 No Holiday 27/11/2018      1.2   Autumn      270     0.00
## 1255 22/01/2018 No Holiday 22/01/2018    -14.3   Winter     2000     0.00
## 8749 30/11/2018 No Holiday 30/11/2018     -7.8   Autumn     1409     1.70
## 4335 30/05/2018 No Holiday 30/05/2018     15.5   Spring     1211     2.92
## 5610 22/07/2018 No Holiday 22/07/2018     18.5   Summer     1837     1.82
##      col 2717 col 2718 col 2719 col 2720 col 2721 col 2722 col 2723 col 2724
## 4035     18.8      1.5     0.00   Spring      237     18.4     18.4        2
## 8669      3.1      1.0     0.00   Autumn      270      1.2      1.2        4
## 1255      0.0      0.4     0.00   Winter     2000    -14.3    -14.3        6
## 8749      6.6      1.3     1.70   Autumn     1409     -7.8     -7.8       12
## 4335     24.3      2.9     2.92   Spring     1211     15.5     15.5       14
## 5610     37.6      2.1     1.82   Summer     1837     18.5     18.5       17
##      col 2725 col 2726   col 2727 col 2728 col 2729   col 2730 col 2731
## 4035        2      Yes No Holiday   Spring     18.8 18/05/2018     18.8
## 8669        4      Yes No Holiday   Autumn      3.1 27/11/2018      3.1
## 1255        6      Yes No Holiday   Winter      0.0 22/01/2018      0.0
## 8749       12      Yes No Holiday   Autumn      6.6 30/11/2018      6.6
## 4335       14      Yes No Holiday   Spring     24.3 30/05/2018     24.3
## 5610       17      Yes No Holiday   Summer     37.6 22/07/2018     37.6
##      col 2732 col 2733 col 2734 col 2735 col 2736   col 2737 col 2738
## 4035     18.4     0.00   Spring     18.4      0.5 18/05/2018      237
## 8669      1.2     0.00   Autumn      1.2      0.0 27/11/2018      270
## 1255    -14.3     0.00   Winter    -14.3      0.0 22/01/2018     2000
## 8749     -7.8     1.70   Autumn     -7.8      0.0 30/11/2018     1409
## 4335     15.5     2.92   Spring     15.5      0.0 30/05/2018     1211
## 5610     18.5     1.82   Summer     18.5      0.0 22/07/2018     1837
##        col 2739 col 2740   col 2741 col 2742 col 2743 col 2744 col 2745
## 4035 18/05/2018        0 No Holiday      0.5     18.8        0        0
## 8669 27/11/2018        0 No Holiday      0.0      3.1        0        0
## 1255 22/01/2018        0 No Holiday      0.0      0.0        0        0
## 8749 30/11/2018        0 No Holiday      0.0      6.6        0        0
## 4335 30/05/2018        0 No Holiday      0.0     24.3        0        0
## 5610 22/07/2018        0 No Holiday      0.0     37.6        0        0
##      col 2746 col 2747 col 2748 col 2749 col 2750 col 2751   col 2752 col 2753
## 4035     0.00     0.00     18.4      0.5        2      Yes No Holiday     18.4
## 8669     0.00     0.00      1.2      0.0        4      Yes No Holiday      1.2
## 1255     0.00     0.00    -14.3      0.0        6      Yes No Holiday    -14.3
## 8749     1.70     1.70     -7.8      0.0       12      Yes No Holiday     -7.8
## 4335     2.92     2.92     15.5      0.0       14      Yes No Holiday     15.5
## 5610     1.82     1.82     18.5      0.0       17      Yes No Holiday     18.5
##      col 2754 col 2755 col 2756 col 2757 col 2758 col 2759   col 2760 col 2761
## 4035      1.5      1.5       98        0       98      237 18/05/2018       98
## 8669      1.0      1.0       88        0       88      270 27/11/2018       88
## 1255      0.4      0.4       33        0       33     2000 22/01/2018       33
## 8749      1.3      1.3       35        0       35     1409 30/11/2018       35
## 4335      2.9      2.9       58        0       58     1211 30/05/2018       58
## 5610      2.1      2.1       33        0       33     1837 22/07/2018       33
##      col 2762 col 2763 col 2764 col 2765 col 2766 col 2767 col 2768 col 2769
## 4035      0.5      0.5     0.00     0.00      237     18.8       48      1.5
## 8669      0.0      0.0     0.00     0.00      270      3.1       95      1.0
## 1255      0.0      0.0     0.00     0.00     2000      0.0      165      0.4
## 8749      0.0      0.0     1.70     1.70     1409      6.6      720      1.3
## 4335      0.0      0.0     2.92     2.92     1211     24.3     1119      2.9
## 5610      0.0      0.0     1.82     1.82     1837     37.6      965      2.1
##        col 2770 col 2771 col 2772   col 2773 col 2774 col 2775 col 2776
## 4035 18/05/2018   Spring       48 18/05/2018     18.8        2        0
## 8669 27/11/2018   Autumn       95 27/11/2018      3.1        4        0
## 1255 22/01/2018   Winter      165 22/01/2018      0.0        6        0
## 8749 30/11/2018   Autumn      720 30/11/2018      6.6       12        0
## 4335 30/05/2018   Spring     1119 30/05/2018     24.3       14        0
## 5610 22/07/2018   Summer      965 22/07/2018     37.6       17        0
##      col 2777   col 2778 col 2779 col 2780 col 2781 col 2782 col 2783 col 2784
## 4035     18.8 No Holiday     18.8     0.00     18.4      1.5        0       98
## 8669      3.1 No Holiday      3.1     0.00      1.2      1.0        0       88
## 1255      0.0 No Holiday      0.0     0.00    -14.3      0.4        0       33
## 8749      6.6 No Holiday      6.6     1.70     -7.8      1.3        0       35
## 4335     24.3 No Holiday     24.3     2.92     15.5      2.9        0       58
## 5610     37.6 No Holiday     37.6     1.82     18.5      2.1        0       33
##      col 2785 col 2786 col 2787 col 2788 col 2789 col 2790 col 2791 col 2792
## 4035      0.5     0.00     18.8      0.5      237        0       48        0
## 8669      0.0     0.00      3.1      0.0      270        0       95        0
## 1255      0.0     0.00      0.0      0.0     2000        0      165        0
## 8749      0.0     1.70      6.6      0.0     1409        0      720        0
## 4335      0.0     2.92     24.3      0.0     1211        0     1119        0
## 5610      0.0     1.82     37.6      0.0     1837        0      965        0
##      col 2793 col 2794 col 2795 col 2796 col 2797 col 2798 col 2799 col 2800
## 4035     0.00      237      Yes   Spring      0.5     18.4      237      0.5
## 8669     0.00      270      Yes   Autumn      0.0      1.2      270      0.0
## 1255     0.00     2000      Yes   Winter      0.0    -14.3     2000      0.0
## 8749     1.70     1409      Yes   Autumn      0.0     -7.8     1409      0.0
## 4335     2.92     1211      Yes   Spring      0.0     15.5     1211      0.0
## 5610     1.82     1837      Yes   Summer      0.0     18.5     1837      0.0
##      col 2801 col 2802 col 2803   col 2804 col 2805 col 2806 col 2807 col 2808
## 4035      Yes      237       98 No Holiday     18.4      Yes     18.8        0
## 8669      Yes      270       88 No Holiday      1.2      Yes      3.1        0
## 1255      Yes     2000       33 No Holiday    -14.3      Yes      0.0        0
## 8749      Yes     1409       35 No Holiday     -7.8      Yes      6.6        0
## 4335      Yes     1211       58 No Holiday     15.5      Yes     24.3        0
## 5610      Yes     1837       33 No Holiday     18.5      Yes     37.6        0
##      col 2809 col 2810 col 2811   col 2812 col 2813 col 2814 col 2815 col 2816
## 4035        2      0.5        0 18/05/2018      237      0.5       48      Yes
## 8669        4      0.0        0 27/11/2018      270      0.0       95      Yes
## 1255        6      0.0        0 22/01/2018     2000      0.0      165      Yes
## 8749       12      0.0        0 30/11/2018     1409      0.0      720      Yes
## 4335       14      0.0        0 30/05/2018     1211      0.0     1119      Yes
## 5610       17      0.0        0 22/07/2018     1837      0.0      965      Yes
##      col 2817 col 2818 col 2819 col 2820   col 2821 col 2822 col 2823 col 2824
## 4035       48      237      237      0.5 18/05/2018     18.4   Spring      237
## 8669       95      270      270      0.0 27/11/2018      1.2   Autumn      270
## 1255      165     2000     2000      0.0 22/01/2018    -14.3   Winter     2000
## 8749      720     1409     1409      0.0 30/11/2018     -7.8   Autumn     1409
## 4335     1119     1211     1211      0.0 30/05/2018     15.5   Spring     1211
## 5610      965     1837     1837      0.0 22/07/2018     18.5   Summer     1837
##        col 2825 col 2826 col 2827 col 2828 col 2829   col 2830 col 2831
## 4035 No Holiday       98       48     0.00     18.8 18/05/2018       98
## 8669 No Holiday       88       95     0.00      3.1 27/11/2018       88
## 1255 No Holiday       33      165     0.00      0.0 22/01/2018       33
## 8749 No Holiday       35      720     1.70      6.6 30/11/2018       35
## 4335 No Holiday       58     1119     2.92     24.3 30/05/2018       58
## 5610 No Holiday       33      965     1.82     37.6 22/07/2018       33
##      col 2832 col 2833 col 2834 col 2835 col 2836   col 2837 col 2838 col 2839
## 4035     18.4       48      0.5     0.00       48 18/05/2018       48      Yes
## 8669      1.2       95      0.0     0.00       95 27/11/2018       95      Yes
## 1255    -14.3      165      0.0     0.00      165 22/01/2018      165      Yes
## 8749     -7.8      720      0.0     1.70      720 30/11/2018      720      Yes
## 4335     15.5     1119      0.0     2.92     1119 30/05/2018     1119      Yes
## 5610     18.5      965      0.0     1.82      965 22/07/2018      965      Yes
##      col 2840 col 2841 col 2842   col 2843 col 2844 col 2845 col 2846 col 2847
## 4035     0.00        2       48 18/05/2018        2       98     18.4       48
## 8669     0.00        4       95 27/11/2018        4       88      1.2       95
## 1255     0.00        6      165 22/01/2018        6       33    -14.3      165
## 8749     1.70       12      720 30/11/2018       12       35     -7.8      720
## 4335     2.92       14     1119 30/05/2018       14       58     15.5     1119
## 5610     1.82       17      965 22/07/2018       17       33     18.5      965
##      col 2848 col 2849 col 2850 col 2851 col 2852   col 2853 col 2854 col 2855
## 4035      1.5      237        2     18.8      Yes 18/05/2018     0.00        0
## 8669      1.0      270        4      3.1      Yes 27/11/2018     0.00        0
## 1255      0.4     2000        6      0.0      Yes 22/01/2018     0.00        0
## 8749      1.3     1409       12      6.6      Yes 30/11/2018     1.70        0
## 4335      2.9     1211       14     24.3      Yes 30/05/2018     2.92        0
## 5610      2.1     1837       17     37.6      Yes 22/07/2018     1.82        0
##      col 2856 col 2857   col 2858 col 2859 col 2860 col 2861 col 2862 col 2863
## 4035     18.4     0.00 No Holiday      237        0     18.4      237        2
## 8669      1.2     0.00 No Holiday      270        0      1.2      270        4
## 1255    -14.3     0.00 No Holiday     2000        0    -14.3     2000        6
## 8749     -7.8     1.70 No Holiday     1409        0     -7.8     1409       12
## 4335     15.5     2.92 No Holiday     1211        0     15.5     1211       14
## 5610     18.5     1.82 No Holiday     1837        0     18.5     1837       17
##      col 2864   col 2865   col 2866 col 2867 col 2868 col 2869 col 2870
## 4035     18.8 No Holiday No Holiday      0.5   Spring        2      1.5
## 8669      3.1 No Holiday No Holiday      0.0   Autumn        4      1.0
## 1255      0.0 No Holiday No Holiday      0.0   Winter        6      0.4
## 8749      6.6 No Holiday No Holiday      0.0   Autumn       12      1.3
## 4335     24.3 No Holiday No Holiday      0.0   Spring       14      2.9
## 5610     37.6 No Holiday No Holiday      0.0   Summer       17      2.1
##      col 2871 col 2872 col 2873 col 2874 col 2875 col 2876 col 2877 col 2878
## 4035       48        2   Spring      0.5        2        2        0        2
## 8669       95        4   Autumn      0.0        4        4        0        4
## 1255      165        6   Winter      0.0        6        6        0        6
## 8749      720       12   Autumn      0.0       12       12        0       12
## 4335     1119       14   Spring      0.0       14       14        0       14
## 5610      965       17   Summer      0.0       17       17        0       17
##      col 2879 col 2880 col 2881 col 2882 col 2883   col 2884 col 2885 col 2886
## 4035     18.4      Yes      Yes      1.5   Spring No Holiday      1.5      Yes
## 8669      1.2      Yes      Yes      1.0   Autumn No Holiday      1.0      Yes
## 1255    -14.3      Yes      Yes      0.4   Winter No Holiday      0.4      Yes
## 8749     -7.8      Yes      Yes      1.3   Autumn No Holiday      1.3      Yes
## 4335     15.5      Yes      Yes      2.9   Spring No Holiday      2.9      Yes
## 5610     18.5      Yes      Yes      2.1   Summer No Holiday      2.1      Yes
##      col 2887 col 2888 col 2889 col 2890 col 2891 col 2892 col 2893   col 2894
## 4035     18.4     18.8        0     18.4        0        2      Yes 18/05/2018
## 8669      1.2      3.1        0      1.2        0        4      Yes 27/11/2018
## 1255    -14.3      0.0        0    -14.3        0        6      Yes 22/01/2018
## 8749     -7.8      6.6        0     -7.8        0       12      Yes 30/11/2018
## 4335     15.5     24.3        0     15.5        0       14      Yes 30/05/2018
## 5610     18.5     37.6        0     18.5        0       17      Yes 22/07/2018
##      col 2895 col 2896 col 2897 col 2898 col 2899 col 2900 col 2901 col 2902
## 4035       48   Spring       98      0.5       98      1.5   Spring     0.00
## 8669       95   Autumn       88      0.0       88      1.0   Autumn     0.00
## 1255      165   Winter       33      0.0       33      0.4   Winter     0.00
## 8749      720   Autumn       35      0.0       35      1.3   Autumn     1.70
## 4335     1119   Spring       58      0.0       58      2.9   Spring     2.92
## 5610      965   Summer       33      0.0       33      2.1   Summer     1.82
##      col 2903 col 2904 col 2905 col 2906 col 2907 col 2908 col 2909   col 2910
## 4035       48        0     18.8        2        2        0     18.4 18/05/2018
## 8669       95        0      3.1        4        4        0      1.2 27/11/2018
## 1255      165        0      0.0        6        6        0    -14.3 22/01/2018
## 8749      720        0      6.6       12       12        0     -7.8 30/11/2018
## 4335     1119        0     24.3       14       14        0     15.5 30/05/2018
## 5610      965        0     37.6       17       17        0     18.5 22/07/2018
##      col 2911 col 2912 col 2913   col 2914 col 2915   col 2916 col 2917
## 4035      1.5        2      Yes No Holiday      Yes No Holiday     18.4
## 8669      1.0        4      Yes No Holiday      Yes No Holiday      1.2
## 1255      0.4        6      Yes No Holiday      Yes No Holiday    -14.3
## 8749      1.3       12      Yes No Holiday      Yes No Holiday     -7.8
## 4335      2.9       14      Yes No Holiday      Yes No Holiday     15.5
## 5610      2.1       17      Yes No Holiday      Yes No Holiday     18.5
##      col 2918 col 2919 col 2920 col 2921 col 2922 col 2923 col 2924 col 2925
## 4035      1.5      1.5        0      1.5   Spring   Spring        2       98
## 8669      1.0      1.0        0      1.0   Autumn   Autumn        4       88
## 1255      0.4      0.4        0      0.4   Winter   Winter        6       33
## 8749      1.3      1.3        0      1.3   Autumn   Autumn       12       35
## 4335      2.9      2.9        0      2.9   Spring   Spring       14       58
## 5610      2.1      2.1        0      2.1   Summer   Summer       17       33
##      col 2926 col 2927 col 2928 col 2929 col 2930   col 2931 col 2932 col 2933
## 4035      0.5     18.8       98       98     18.4 18/05/2018     18.8     18.4
## 8669      0.0      3.1       88       88      1.2 27/11/2018      3.1      1.2
## 1255      0.0      0.0       33       33    -14.3 22/01/2018      0.0    -14.3
## 8749      0.0      6.6       35       35     -7.8 30/11/2018      6.6     -7.8
## 4335      0.0     24.3       58       58     15.5 30/05/2018     24.3     15.5
## 5610      0.0     37.6       33       33     18.5 22/07/2018     37.6     18.5
##      col 2934   col 2935 col 2936 col 2937 col 2938 col 2939 col 2940
## 4035      1.5 18/05/2018     18.4     18.8      237     18.8      237
## 8669      1.0 27/11/2018      1.2      3.1      270      3.1      270
## 1255      0.4 22/01/2018    -14.3      0.0     2000      0.0     2000
## 8749      1.3 30/11/2018     -7.8      6.6     1409      6.6     1409
## 4335      2.9 30/05/2018     15.5     24.3     1211     24.3     1211
## 5610      2.1 22/07/2018     18.5     37.6     1837     37.6     1837
##        col 2941 col 2942 col 2943 col 2944   col 2945   col 2946 col 2947
## 4035 No Holiday      237        2        0 No Holiday 18/05/2018        2
## 8669 No Holiday      270        4        0 No Holiday 27/11/2018        4
## 1255 No Holiday     2000        6        0 No Holiday 22/01/2018        6
## 8749 No Holiday     1409       12        0 No Holiday 30/11/2018       12
## 4335 No Holiday     1211       14        0 No Holiday 30/05/2018       14
## 5610 No Holiday     1837       17        0 No Holiday 22/07/2018       17
##      col 2948 col 2949 col 2950 col 2951   col 2952 col 2953 col 2954 col 2955
## 4035        0       48     18.4      237 18/05/2018      0.5        0   Spring
## 8669        0       95      1.2      270 27/11/2018      0.0        0   Autumn
## 1255        0      165    -14.3     2000 22/01/2018      0.0        0   Winter
## 8749        0      720     -7.8     1409 30/11/2018      0.0        0   Autumn
## 4335        0     1119     15.5     1211 30/05/2018      0.0        0   Spring
## 5610        0      965     18.5     1837 22/07/2018      0.0        0   Summer
##      col 2956 col 2957 col 2958 col 2959 col 2960 col 2961 col 2962 col 2963
## 4035     18.8       98      Yes     18.4      237      237        2        2
## 8669      3.1       88      Yes      1.2      270      270        4        4
## 1255      0.0       33      Yes    -14.3     2000     2000        6        6
## 8749      6.6       35      Yes     -7.8     1409     1409       12       12
## 4335     24.3       58      Yes     15.5     1211     1211       14       14
## 5610     37.6       33      Yes     18.5     1837     1837       17       17
##      col 2964 col 2965 col 2966   col 2967   col 2968 col 2969 col 2970
## 4035      0.5        2       48 18/05/2018 No Holiday        0       98
## 8669      0.0        4       95 27/11/2018 No Holiday        0       88
## 1255      0.0        6      165 22/01/2018 No Holiday        0       33
## 8749      0.0       12      720 30/11/2018 No Holiday        0       35
## 4335      0.0       14     1119 30/05/2018 No Holiday        0       58
## 5610      0.0       17      965 22/07/2018 No Holiday        0       33
##      col 2971 col 2972 col 2973 col 2974 col 2975 col 2976   col 2977 col 2978
## 4035        0       48     0.00       48     18.4     18.8 No Holiday      0.5
## 8669        0       95     0.00       95      1.2      3.1 No Holiday      0.0
## 1255        0      165     0.00      165    -14.3      0.0 No Holiday      0.0
## 8749        0      720     1.70      720     -7.8      6.6 No Holiday      0.0
## 4335        0     1119     2.92     1119     15.5     24.3 No Holiday      0.0
## 5610        0      965     1.82      965     18.5     37.6 No Holiday      0.0
##      col 2979 col 2980 col 2981 col 2982 col 2983 col 2984 col 2985 col 2986
## 4035      237      1.5     18.8        2        0   Spring       48      Yes
## 8669      270      1.0      3.1        4        0   Autumn       95      Yes
## 1255     2000      0.4      0.0        6        0   Winter      165      Yes
## 8749     1409      1.3      6.6       12        0   Autumn      720      Yes
## 4335     1211      2.9     24.3       14        0   Spring     1119      Yes
## 5610     1837      2.1     37.6       17        0   Summer      965      Yes
##      col 2987 col 2988   col 2989 col 2990 col 2991 col 2992 col 2993 col 2994
## 4035      1.5        0 No Holiday     18.4      1.5      1.5      1.5      0.5
## 8669      1.0        0 No Holiday      1.2      1.0      1.0      1.0      0.0
## 1255      0.4        0 No Holiday    -14.3      0.4      0.4      0.4      0.0
## 8749      1.3        0 No Holiday     -7.8      1.3      1.3      1.3      0.0
## 4335      2.9        0 No Holiday     15.5      2.9      2.9      2.9      0.0
## 5610      2.1        0 No Holiday     18.5      2.1      2.1      2.1      0.0
##      col 2995   col 2996   col 2997 col 2998 col 2999   col 3000   col 3001
## 4035        2 No Holiday 18/05/2018      0.5       48 No Holiday No Holiday
## 8669        4 No Holiday 27/11/2018      0.0       95 No Holiday No Holiday
## 1255        6 No Holiday 22/01/2018      0.0      165 No Holiday No Holiday
## 8749       12 No Holiday 30/11/2018      0.0      720 No Holiday No Holiday
## 4335       14 No Holiday 30/05/2018      0.0     1119 No Holiday No Holiday
## 5610       17 No Holiday 22/07/2018      0.0      965 No Holiday No Holiday
##        col 3002 col 3003 col 3004 col 3005 col 3006 col 3007 col 3008 col 3009
## 4035 No Holiday     0.00       48     18.8       48     18.8      237       98
## 8669 No Holiday     0.00       95      3.1       95      3.1      270       88
## 1255 No Holiday     0.00      165      0.0      165      0.0     2000       33
## 8749 No Holiday     1.70      720      6.6      720      6.6     1409       35
## 4335 No Holiday     2.92     1119     24.3     1119     24.3     1211       58
## 5610 No Holiday     1.82      965     37.6      965     37.6     1837       33
##      col 3010 col 3011 col 3012 col 3013 col 3014 col 3015 col 3016 col 3017
## 4035      0.5        0      237     18.8       98      Yes        2        2
## 8669      0.0        0      270      3.1       88      Yes        4        4
## 1255      0.0        0     2000      0.0       33      Yes        6        6
## 8749      0.0        0     1409      6.6       35      Yes       12       12
## 4335      0.0        0     1211     24.3       58      Yes       14       14
## 5610      0.0        0     1837     37.6       33      Yes       17       17
##      col 3018 col 3019 col 3020 col 3021   col 3022 col 3023 col 3024
## 4035        2        0       48       98 18/05/2018     0.00      1.5
## 8669        4        0       95       88 27/11/2018     0.00      1.0
## 1255        6        0      165       33 22/01/2018     0.00      0.4
## 8749       12        0      720       35 30/11/2018     1.70      1.3
## 4335       14        0     1119       58 30/05/2018     2.92      2.9
## 5610       17        0      965       33 22/07/2018     1.82      2.1
##        col 3025 col 3026 col 3027 col 3028 col 3029 col 3030 col 3031 col 3032
## 4035 No Holiday      1.5       48     0.00       48   Spring      1.5       48
## 8669 No Holiday      1.0       95     0.00       95   Autumn      1.0       95
## 1255 No Holiday      0.4      165     0.00      165   Winter      0.4      165
## 8749 No Holiday      1.3      720     1.70      720   Autumn      1.3      720
## 4335 No Holiday      2.9     1119     2.92     1119   Spring      2.9     1119
## 5610 No Holiday      2.1      965     1.82      965   Summer      2.1      965
##      col 3033 col 3034 col 3035 col 3036 col 3037 col 3038 col 3039 col 3040
## 4035      Yes   Spring        2        0        2        2        0       48
## 8669      Yes   Autumn        4        0        4        4        0       95
## 1255      Yes   Winter        6        0        6        6        0      165
## 8749      Yes   Autumn       12        0       12       12        0      720
## 4335      Yes   Spring       14        0       14       14        0     1119
## 5610      Yes   Summer       17        0       17       17        0      965
##      col 3041 col 3042 col 3043 col 3044 col 3045 col 3046 col 3047 col 3048
## 4035     0.00      0.5     0.00       98      0.5      237      0.5       98
## 8669     0.00      0.0     0.00       88      0.0      270      0.0       88
## 1255     0.00      0.0     0.00       33      0.0     2000      0.0       33
## 8749     1.70      0.0     1.70       35      0.0     1409      0.0       35
## 4335     2.92      0.0     2.92       58      0.0     1211      0.0       58
## 5610     1.82      0.0     1.82       33      0.0     1837      0.0       33
##      col 3049   col 3050 col 3051 col 3052 col 3053 col 3054 col 3055 col 3056
## 4035     0.00 18/05/2018      237       98       98     18.4        0        2
## 8669     0.00 27/11/2018      270       88       88      1.2        0        4
## 1255     0.00 22/01/2018     2000       33       33    -14.3        0        6
## 8749     1.70 30/11/2018     1409       35       35     -7.8        0       12
## 4335     2.92 30/05/2018     1211       58       58     15.5        0       14
## 5610     1.82 22/07/2018     1837       33       33     18.5        0       17
##      col 3057 col 3058 col 3059 col 3060 col 3061 col 3062 col 3063   col 3064
## 4035   Spring      0.5      0.5      0.5        0       98     0.00 No Holiday
## 8669   Autumn      0.0      0.0      0.0        0       88     0.00 No Holiday
## 1255   Winter      0.0      0.0      0.0        0       33     0.00 No Holiday
## 8749   Autumn      0.0      0.0      0.0        0       35     1.70 No Holiday
## 4335   Spring      0.0      0.0      0.0        0       58     2.92 No Holiday
## 5610   Summer      0.0      0.0      0.0        0       33     1.82 No Holiday
##      col 3065 col 3066 col 3067 col 3068 col 3069   col 3070 col 3071
## 4035     0.00   Spring        2      1.5      Yes No Holiday      1.5
## 8669     0.00   Autumn        4      1.0      Yes No Holiday      1.0
## 1255     0.00   Winter        6      0.4      Yes No Holiday      0.4
## 8749     1.70   Autumn       12      1.3      Yes No Holiday      1.3
## 4335     2.92   Spring       14      2.9      Yes No Holiday      2.9
## 5610     1.82   Summer       17      2.1      Yes No Holiday      2.1
##        col 3072 col 3073 col 3074 col 3075 col 3076 col 3077 col 3078 col 3079
## 4035 18/05/2018        0      Yes      237      237      1.5        2       98
## 8669 27/11/2018        0      Yes      270      270      1.0        4       88
## 1255 22/01/2018        0      Yes     2000     2000      0.4        6       33
## 8749 30/11/2018        0      Yes     1409     1409      1.3       12       35
## 4335 30/05/2018        0      Yes     1211     1211      2.9       14       58
## 5610 22/07/2018        0      Yes     1837     1837      2.1       17       33
##      col 3080   col 3081 col 3082   col 3083 col 3084 col 3085 col 3086
## 4035      1.5 No Holiday      237 18/05/2018       98      1.5   Spring
## 8669      1.0 No Holiday      270 27/11/2018       88      1.0   Autumn
## 1255      0.4 No Holiday     2000 22/01/2018       33      0.4   Winter
## 8749      1.3 No Holiday     1409 30/11/2018       35      1.3   Autumn
## 4335      2.9 No Holiday     1211 30/05/2018       58      2.9   Spring
## 5610      2.1 No Holiday     1837 22/07/2018       33      2.1   Summer
##      col 3087 col 3088 col 3089 col 3090 col 3091 col 3092   col 3093 col 3094
## 4035     0.00     18.8        0     18.8      1.5       98 18/05/2018      1.5
## 8669     0.00      3.1        0      3.1      1.0       88 27/11/2018      1.0
## 1255     0.00      0.0        0      0.0      0.4       33 22/01/2018      0.4
## 8749     1.70      6.6        0      6.6      1.3       35 30/11/2018      1.3
## 4335     2.92     24.3        0     24.3      2.9       58 30/05/2018      2.9
## 5610     1.82     37.6        0     37.6      2.1       33 22/07/2018      2.1
##      col 3095 col 3096 col 3097   col 3098 col 3099 col 3100 col 3101 col 3102
## 4035      0.5       98       48 18/05/2018      Yes     18.4      Yes      Yes
## 8669      0.0       88       95 27/11/2018      Yes      1.2      Yes      Yes
## 1255      0.0       33      165 22/01/2018      Yes    -14.3      Yes      Yes
## 8749      0.0       35      720 30/11/2018      Yes     -7.8      Yes      Yes
## 4335      0.0       58     1119 30/05/2018      Yes     15.5      Yes      Yes
## 5610      0.0       33      965 22/07/2018      Yes     18.5      Yes      Yes
##      col 3103 col 3104 col 3105 col 3106 col 3107 col 3108 col 3109 col 3110
## 4035       48        2      0.5       48        2       48        0       98
## 8669       95        4      0.0       95        4       95        0       88
## 1255      165        6      0.0      165        6      165        0       33
## 8749      720       12      0.0      720       12      720        0       35
## 4335     1119       14      0.0     1119       14     1119        0       58
## 5610      965       17      0.0      965       17      965        0       33
##      col 3111 col 3112 col 3113 col 3114 col 3115 col 3116 col 3117 col 3118
## 4035        0      1.5      0.5      0.5      237     0.00     18.8       48
## 8669        0      1.0      0.0      0.0      270     0.00      3.1       95
## 1255        0      0.4      0.0      0.0     2000     0.00      0.0      165
## 8749        0      1.3      0.0      0.0     1409     1.70      6.6      720
## 4335        0      2.9      0.0      0.0     1211     2.92     24.3     1119
## 5610        0      2.1      0.0      0.0     1837     1.82     37.6      965
##      col 3119 col 3120 col 3121 col 3122 col 3123 col 3124   col 3125
## 4035      0.5      0.5     0.00     0.00     18.8     0.00 No Holiday
## 8669      0.0      0.0     0.00     0.00      3.1     0.00 No Holiday
## 1255      0.0      0.0     0.00     0.00      0.0     0.00 No Holiday
## 8749      0.0      0.0     1.70     1.70      6.6     1.70 No Holiday
## 4335      0.0      0.0     2.92     2.92     24.3     2.92 No Holiday
## 5610      0.0      0.0     1.82     1.82     37.6     1.82 No Holiday
##        col 3126 col 3127 col 3128 col 3129 col 3130 col 3131 col 3132 col 3133
## 4035 18/05/2018        2      Yes       48       48       98      237      0.5
## 8669 27/11/2018        4      Yes       95       95       88      270      0.0
## 1255 22/01/2018        6      Yes      165      165       33     2000      0.0
## 8749 30/11/2018       12      Yes      720      720       35     1409      0.0
## 4335 30/05/2018       14      Yes     1119     1119       58     1211      0.0
## 5610 22/07/2018       17      Yes      965      965       33     1837      0.0
##        col 3134 col 3135 col 3136 col 3137 col 3138 col 3139 col 3140 col 3141
## 4035 No Holiday       48        2      1.5      0.5     18.4       98     18.8
## 8669 No Holiday       95        4      1.0      0.0      1.2       88      3.1
## 1255 No Holiday      165        6      0.4      0.0    -14.3       33      0.0
## 8749 No Holiday      720       12      1.3      0.0     -7.8       35      6.6
## 4335 No Holiday     1119       14      2.9      0.0     15.5       58     24.3
## 5610 No Holiday      965       17      2.1      0.0     18.5       33     37.6
##      col 3142 col 3143 col 3144 col 3145 col 3146   col 3147 col 3148 col 3149
## 4035   Spring        2      237        2     0.00 18/05/2018      Yes     18.4
## 8669   Autumn        4      270        4     0.00 27/11/2018      Yes      1.2
## 1255   Winter        6     2000        6     0.00 22/01/2018      Yes    -14.3
## 8749   Autumn       12     1409       12     1.70 30/11/2018      Yes     -7.8
## 4335   Spring       14     1211       14     2.92 30/05/2018      Yes     15.5
## 5610   Summer       17     1837       17     1.82 22/07/2018      Yes     18.5
##      col 3150 col 3151 col 3152 col 3153 col 3154 col 3155 col 3156 col 3157
## 4035       98   Spring        2      Yes        0     0.00   Spring      1.5
## 8669       88   Autumn        4      Yes        0     0.00   Autumn      1.0
## 1255       33   Winter        6      Yes        0     0.00   Winter      0.4
## 8749       35   Autumn       12      Yes        0     1.70   Autumn      1.3
## 4335       58   Spring       14      Yes        0     2.92   Spring      2.9
## 5610       33   Summer       17      Yes        0     1.82   Summer      2.1
##        col 3158 col 3159 col 3160 col 3161 col 3162 col 3163 col 3164 col 3165
## 4035 No Holiday   Spring     0.00   Spring        0     18.8     0.00       98
## 8669 No Holiday   Autumn     0.00   Autumn        0      3.1     0.00       88
## 1255 No Holiday   Winter     0.00   Winter        0      0.0     0.00       33
## 8749 No Holiday   Autumn     1.70   Autumn        0      6.6     1.70       35
## 4335 No Holiday   Spring     2.92   Spring        0     24.3     2.92       58
## 5610 No Holiday   Summer     1.82   Summer        0     37.6     1.82       33
##      col 3166 col 3167 col 3168 col 3169 col 3170 col 3171 col 3172 col 3173
## 4035     18.4     0.00      1.5      1.5        2      Yes        0   Spring
## 8669      1.2     0.00      1.0      1.0        4      Yes        0   Autumn
## 1255    -14.3     0.00      0.4      0.4        6      Yes        0   Winter
## 8749     -7.8     1.70      1.3      1.3       12      Yes        0   Autumn
## 4335     15.5     2.92      2.9      2.9       14      Yes        0   Spring
## 5610     18.5     1.82      2.1      2.1       17      Yes        0   Summer
##      col 3174 col 3175 col 3176 col 3177   col 3178 col 3179 col 3180 col 3181
## 4035     18.4       48      Yes     18.4 18/05/2018      237   Spring     0.00
## 8669      1.2       95      Yes      1.2 27/11/2018      270   Autumn     0.00
## 1255    -14.3      165      Yes    -14.3 22/01/2018     2000   Winter     0.00
## 8749     -7.8      720      Yes     -7.8 30/11/2018     1409   Autumn     1.70
## 4335     15.5     1119      Yes     15.5 30/05/2018     1211   Spring     2.92
## 5610     18.5      965      Yes     18.5 22/07/2018     1837   Summer     1.82
##      col 3182 col 3183 col 3184 col 3185 col 3186 col 3187 col 3188 col 3189
## 4035      237      0.5        0      1.5     0.00        2      0.5      0.5
## 8669      270      0.0        0      1.0     0.00        4      0.0      0.0
## 1255     2000      0.0        0      0.4     0.00        6      0.0      0.0
## 8749     1409      0.0        0      1.3     1.70       12      0.0      0.0
## 4335     1211      0.0        0      2.9     2.92       14      0.0      0.0
## 5610     1837      0.0        0      2.1     1.82       17      0.0      0.0
##        col 3190 col 3191 col 3192 col 3193 col 3194 col 3195 col 3196 col 3197
## 4035 18/05/2018      1.5     18.8       48      237     18.4      Yes      Yes
## 8669 27/11/2018      1.0      3.1       95      270      1.2      Yes      Yes
## 1255 22/01/2018      0.4      0.0      165     2000    -14.3      Yes      Yes
## 8749 30/11/2018      1.3      6.6      720     1409     -7.8      Yes      Yes
## 4335 30/05/2018      2.9     24.3     1119     1211     15.5      Yes      Yes
## 5610 22/07/2018      2.1     37.6      965     1837     18.5      Yes      Yes
##      col 3198 col 3199 col 3200 col 3201   col 3202 col 3203 col 3204 col 3205
## 4035       48     18.4     0.00      0.5 No Holiday        2       48      1.5
## 8669       95      1.2     0.00      0.0 No Holiday        4       95      1.0
## 1255      165    -14.3     0.00      0.0 No Holiday        6      165      0.4
## 8749      720     -7.8     1.70      0.0 No Holiday       12      720      1.3
## 4335     1119     15.5     2.92      0.0 No Holiday       14     1119      2.9
## 5610      965     18.5     1.82      0.0 No Holiday       17      965      2.1
##      col 3206 col 3207 col 3208 col 3209   col 3210 col 3211   col 3212
## 4035        2      1.5       48        0 18/05/2018        0 18/05/2018
## 8669        4      1.0       95        0 27/11/2018        0 27/11/2018
## 1255        6      0.4      165        0 22/01/2018        0 22/01/2018
## 8749       12      1.3      720        0 30/11/2018        0 30/11/2018
## 4335       14      2.9     1119        0 30/05/2018        0 30/05/2018
## 5610       17      2.1      965        0 22/07/2018        0 22/07/2018
##      col 3213 col 3214 col 3215 col 3216 col 3217 col 3218   col 3219 col 3220
## 4035     18.4     18.8        0      237     0.00      237 No Holiday       48
## 8669      1.2      3.1        0      270     0.00      270 No Holiday       95
## 1255    -14.3      0.0        0     2000     0.00     2000 No Holiday      165
## 8749     -7.8      6.6        0     1409     1.70     1409 No Holiday      720
## 4335     15.5     24.3        0     1211     2.92     1211 No Holiday     1119
## 5610     18.5     37.6        0     1837     1.82     1837 No Holiday      965
##      col 3221 col 3222 col 3223 col 3224 col 3225 col 3226 col 3227 col 3228
## 4035       48      0.5        2     18.8     0.00     18.8       98      1.5
## 8669       95      0.0        4      3.1     0.00      3.1       88      1.0
## 1255      165      0.0        6      0.0     0.00      0.0       33      0.4
## 8749      720      0.0       12      6.6     1.70      6.6       35      1.3
## 4335     1119      0.0       14     24.3     2.92     24.3       58      2.9
## 5610      965      0.0       17     37.6     1.82     37.6       33      2.1
##      col 3229 col 3230 col 3231 col 3232 col 3233 col 3234 col 3235   col 3236
## 4035      237      0.5      0.5        2        0     18.4      237 No Holiday
## 8669      270      0.0      0.0        4        0      1.2      270 No Holiday
## 1255     2000      0.0      0.0        6        0    -14.3     2000 No Holiday
## 8749     1409      0.0      0.0       12        0     -7.8     1409 No Holiday
## 4335     1211      0.0      0.0       14        0     15.5     1211 No Holiday
## 5610     1837      0.0      0.0       17        0     18.5     1837 No Holiday
##      col 3237 col 3238 col 3239 col 3240   col 3241 col 3242 col 3243
## 4035      Yes      Yes     18.4       48 No Holiday        2      0.5
## 8669      Yes      Yes      1.2       95 No Holiday        4      0.0
## 1255      Yes      Yes    -14.3      165 No Holiday        6      0.0
## 8749      Yes      Yes     -7.8      720 No Holiday       12      0.0
## 4335      Yes      Yes     15.5     1119 No Holiday       14      0.0
## 5610      Yes      Yes     18.5      965 No Holiday       17      0.0
##        col 3244 col 3245 col 3246 col 3247   col 3248 col 3249 col 3250
## 4035 No Holiday   Spring     18.8      Yes No Holiday      1.5        0
## 8669 No Holiday   Autumn      3.1      Yes No Holiday      1.0        0
## 1255 No Holiday   Winter      0.0      Yes No Holiday      0.4        0
## 8749 No Holiday   Autumn      6.6      Yes No Holiday      1.3        0
## 4335 No Holiday   Spring     24.3      Yes No Holiday      2.9        0
## 5610 No Holiday   Summer     37.6      Yes No Holiday      2.1        0
##      col 3251 col 3252 col 3253 col 3254   col 3255 col 3256 col 3257 col 3258
## 4035      1.5   Spring      Yes   Spring No Holiday        2      Yes        0
## 8669      1.0   Autumn      Yes   Autumn No Holiday        4      Yes        0
## 1255      0.4   Winter      Yes   Winter No Holiday        6      Yes        0
## 8749      1.3   Autumn      Yes   Autumn No Holiday       12      Yes        0
## 4335      2.9   Spring      Yes   Spring No Holiday       14      Yes        0
## 5610      2.1   Summer      Yes   Summer No Holiday       17      Yes        0
##      col 3259 col 3260   col 3261 col 3262 col 3263 col 3264 col 3265 col 3266
## 4035      0.5      237 No Holiday     18.4      237   Spring        2      1.5
## 8669      0.0      270 No Holiday      1.2      270   Autumn        4      1.0
## 1255      0.0     2000 No Holiday    -14.3     2000   Winter        6      0.4
## 8749      0.0     1409 No Holiday     -7.8     1409   Autumn       12      1.3
## 4335      0.0     1211 No Holiday     15.5     1211   Spring       14      2.9
## 5610      0.0     1837 No Holiday     18.5     1837   Summer       17      2.1
##      col 3267 col 3268 col 3269 col 3270 col 3271 col 3272   col 3273 col 3274
## 4035       98     18.8        0       48   Spring        2 No Holiday       48
## 8669       88      3.1        0       95   Autumn        4 No Holiday       95
## 1255       33      0.0        0      165   Winter        6 No Holiday      165
## 8749       35      6.6        0      720   Autumn       12 No Holiday      720
## 4335       58     24.3        0     1119   Spring       14 No Holiday     1119
## 5610       33     37.6        0      965   Summer       17 No Holiday      965
##      col 3275   col 3276   col 3277 col 3278 col 3279 col 3280 col 3281
## 4035       98 18/05/2018 No Holiday      0.5      237        2     0.00
## 8669       88 27/11/2018 No Holiday      0.0      270        4     0.00
## 1255       33 22/01/2018 No Holiday      0.0     2000        6     0.00
## 8749       35 30/11/2018 No Holiday      0.0     1409       12     1.70
## 4335       58 30/05/2018 No Holiday      0.0     1211       14     2.92
## 5610       33 22/07/2018 No Holiday      0.0     1837       17     1.82
##        col 3282 col 3283 col 3284 col 3285 col 3286 col 3287 col 3288
## 4035 No Holiday      Yes        0      Yes     18.4       48   Spring
## 8669 No Holiday      Yes        0      Yes      1.2       95   Autumn
## 1255 No Holiday      Yes        0      Yes    -14.3      165   Winter
## 8749 No Holiday      Yes        0      Yes     -7.8      720   Autumn
## 4335 No Holiday      Yes        0      Yes     15.5     1119   Spring
## 5610 No Holiday      Yes        0      Yes     18.5      965   Summer
##        col 3289 col 3290 col 3291 col 3292 col 3293   col 3294 col 3295
## 4035 18/05/2018       98     0.00     18.4   Spring No Holiday        2
## 8669 27/11/2018       88     0.00      1.2   Autumn No Holiday        4
## 1255 22/01/2018       33     0.00    -14.3   Winter No Holiday        6
## 8749 30/11/2018       35     1.70     -7.8   Autumn No Holiday       12
## 4335 30/05/2018       58     2.92     15.5   Spring No Holiday       14
## 5610 22/07/2018       33     1.82     18.5   Summer No Holiday       17
##      col 3296 col 3297 col 3298 col 3299 col 3300 col 3301 col 3302   col 3303
## 4035   Spring       48      Yes   Spring        0      1.5        0 18/05/2018
## 8669   Autumn       95      Yes   Autumn        0      1.0        0 27/11/2018
## 1255   Winter      165      Yes   Winter        0      0.4        0 22/01/2018
## 8749   Autumn      720      Yes   Autumn        0      1.3        0 30/11/2018
## 4335   Spring     1119      Yes   Spring        0      2.9        0 30/05/2018
## 5610   Summer      965      Yes   Summer        0      2.1        0 22/07/2018
##      col 3304 col 3305 col 3306 col 3307 col 3308 col 3309 col 3310 col 3311
## 4035     18.8     18.4     18.4       98     18.8      Yes     18.4     0.00
## 8669      3.1      1.2      1.2       88      3.1      Yes      1.2     0.00
## 1255      0.0    -14.3    -14.3       33      0.0      Yes    -14.3     0.00
## 8749      6.6     -7.8     -7.8       35      6.6      Yes     -7.8     1.70
## 4335     24.3     15.5     15.5       58     24.3      Yes     15.5     2.92
## 5610     37.6     18.5     18.5       33     37.6      Yes     18.5     1.82
##      col 3312 col 3313 col 3314 col 3315 col 3316 col 3317 col 3318 col 3319
## 4035     18.4     18.8       98     18.4       48        2      237      1.5
## 8669      1.2      3.1       88      1.2       95        4      270      1.0
## 1255    -14.3      0.0       33    -14.3      165        6     2000      0.4
## 8749     -7.8      6.6       35     -7.8      720       12     1409      1.3
## 4335     15.5     24.3       58     15.5     1119       14     1211      2.9
## 5610     18.5     37.6       33     18.5      965       17     1837      2.1
##      col 3320   col 3321 col 3322 col 3323   col 3324 col 3325 col 3326
## 4035       98 18/05/2018   Spring       98 18/05/2018        0     18.8
## 8669       88 27/11/2018   Autumn       88 27/11/2018        0      3.1
## 1255       33 22/01/2018   Winter       33 22/01/2018        0      0.0
## 8749       35 30/11/2018   Autumn       35 30/11/2018        0      6.6
## 4335       58 30/05/2018   Spring       58 30/05/2018        0     24.3
## 5610       33 22/07/2018   Summer       33 22/07/2018        0     37.6
##      col 3327 col 3328 col 3329 col 3330 col 3331 col 3332 col 3333 col 3334
## 4035      1.5     18.4      237      Yes       98      1.5       48       48
## 8669      1.0      1.2      270      Yes       88      1.0       95       95
## 1255      0.4    -14.3     2000      Yes       33      0.4      165      165
## 8749      1.3     -7.8     1409      Yes       35      1.3      720      720
## 4335      2.9     15.5     1211      Yes       58      2.9     1119     1119
## 5610      2.1     18.5     1837      Yes       33      2.1      965      965
##        col 3335   col 3336 col 3337 col 3338 col 3339 col 3340 col 3341
## 4035 18/05/2018 No Holiday      0.5     18.4      237        2   Spring
## 8669 27/11/2018 No Holiday      0.0      1.2      270        4   Autumn
## 1255 22/01/2018 No Holiday      0.0    -14.3     2000        6   Winter
## 8749 30/11/2018 No Holiday      0.0     -7.8     1409       12   Autumn
## 4335 30/05/2018 No Holiday      0.0     15.5     1211       14   Spring
## 5610 22/07/2018 No Holiday      0.0     18.5     1837       17   Summer
##      col 3342 col 3343 col 3344 col 3345   col 3346 col 3347 col 3348 col 3349
## 4035   Spring        0      237      237 18/05/2018     18.8      1.5      Yes
## 8669   Autumn        0      270      270 27/11/2018      3.1      1.0      Yes
## 1255   Winter        0     2000     2000 22/01/2018      0.0      0.4      Yes
## 8749   Autumn        0     1409     1409 30/11/2018      6.6      1.3      Yes
## 4335   Spring        0     1211     1211 30/05/2018     24.3      2.9      Yes
## 5610   Summer        0     1837     1837 22/07/2018     37.6      2.1      Yes
##      col 3350 col 3351   col 3352 col 3353 col 3354 col 3355 col 3356 col 3357
## 4035     0.00      0.5 18/05/2018      Yes      Yes     18.8        2        2
## 8669     0.00      0.0 27/11/2018      Yes      Yes      3.1        4        4
## 1255     0.00      0.0 22/01/2018      Yes      Yes      0.0        6        6
## 8749     1.70      0.0 30/11/2018      Yes      Yes      6.6       12       12
## 4335     2.92      0.0 30/05/2018      Yes      Yes     24.3       14       14
## 5610     1.82      0.0 22/07/2018      Yes      Yes     37.6       17       17
##      col 3358 col 3359 col 3360   col 3361 col 3362 col 3363 col 3364 col 3365
## 4035      Yes        2        0 18/05/2018       48     0.00        2      Yes
## 8669      Yes        4        0 27/11/2018       95     0.00        4      Yes
## 1255      Yes        6        0 22/01/2018      165     0.00        6      Yes
## 8749      Yes       12        0 30/11/2018      720     1.70       12      Yes
## 4335      Yes       14        0 30/05/2018     1119     2.92       14      Yes
## 5610      Yes       17        0 22/07/2018      965     1.82       17      Yes
##      col 3366 col 3367 col 3368 col 3369 col 3370   col 3371 col 3372 col 3373
## 4035     18.4     18.4       98        0        2 No Holiday        2       98
## 8669      1.2      1.2       88        0        4 No Holiday        4       88
## 1255    -14.3    -14.3       33        0        6 No Holiday        6       33
## 8749     -7.8     -7.8       35        0       12 No Holiday       12       35
## 4335     15.5     15.5       58        0       14 No Holiday       14       58
## 5610     18.5     18.5       33        0       17 No Holiday       17       33
##        col 3374 col 3375 col 3376 col 3377 col 3378 col 3379 col 3380 col 3381
## 4035 No Holiday      237     18.4      237      Yes      0.5      1.5     18.8
## 8669 No Holiday      270      1.2      270      Yes      0.0      1.0      3.1
## 1255 No Holiday     2000    -14.3     2000      Yes      0.0      0.4      0.0
## 8749 No Holiday     1409     -7.8     1409      Yes      0.0      1.3      6.6
## 4335 No Holiday     1211     15.5     1211      Yes      0.0      2.9     24.3
## 5610 No Holiday     1837     18.5     1837      Yes      0.0      2.1     37.6
##      col 3382   col 3383 col 3384   col 3385 col 3386 col 3387 col 3388
## 4035      Yes 18/05/2018      237 18/05/2018      Yes   Spring      1.5
## 8669      Yes 27/11/2018      270 27/11/2018      Yes   Autumn      1.0
## 1255      Yes 22/01/2018     2000 22/01/2018      Yes   Winter      0.4
## 8749      Yes 30/11/2018     1409 30/11/2018      Yes   Autumn      1.3
## 4335      Yes 30/05/2018     1211 30/05/2018      Yes   Spring      2.9
## 5610      Yes 22/07/2018     1837 22/07/2018      Yes   Summer      2.1
##      col 3389   col 3390 col 3391 col 3392   col 3393 col 3394 col 3395
## 4035      Yes 18/05/2018      0.5       98 No Holiday      Yes        2
## 8669      Yes 27/11/2018      0.0       88 No Holiday      Yes        4
## 1255      Yes 22/01/2018      0.0       33 No Holiday      Yes        6
## 8749      Yes 30/11/2018      0.0       35 No Holiday      Yes       12
## 4335      Yes 30/05/2018      0.0       58 No Holiday      Yes       14
## 5610      Yes 22/07/2018      0.0       33 No Holiday      Yes       17
##      col 3396 col 3397 col 3398 col 3399 col 3400   col 3401   col 3402
## 4035       48        0       98        2      Yes No Holiday 18/05/2018
## 8669       95        0       88        4      Yes No Holiday 27/11/2018
## 1255      165        0       33        6      Yes No Holiday 22/01/2018
## 8749      720        0       35       12      Yes No Holiday 30/11/2018
## 4335     1119        0       58       14      Yes No Holiday 30/05/2018
## 5610      965        0       33       17      Yes No Holiday 22/07/2018
##        col 3403 col 3404 col 3405 col 3406 col 3407 col 3408 col 3409 col 3410
## 4035 18/05/2018      Yes        2   Spring     18.4   Spring       48     18.4
## 8669 27/11/2018      Yes        4   Autumn      1.2   Autumn       95      1.2
## 1255 22/01/2018      Yes        6   Winter    -14.3   Winter      165    -14.3
## 8749 30/11/2018      Yes       12   Autumn     -7.8   Autumn      720     -7.8
## 4335 30/05/2018      Yes       14   Spring     15.5   Spring     1119     15.5
## 5610 22/07/2018      Yes       17   Summer     18.5   Summer      965     18.5
##      col 3411 col 3412 col 3413 col 3414 col 3415 col 3416 col 3417 col 3418
## 4035     0.00       48      0.5     18.4       48        2     0.00      0.5
## 8669     0.00       95      0.0      1.2       95        4     0.00      0.0
## 1255     0.00      165      0.0    -14.3      165        6     0.00      0.0
## 8749     1.70      720      0.0     -7.8      720       12     1.70      0.0
## 4335     2.92     1119      0.0     15.5     1119       14     2.92      0.0
## 5610     1.82      965      0.0     18.5      965       17     1.82      0.0
##      col 3419 col 3420 col 3421 col 3422 col 3423   col 3424 col 3425 col 3426
## 4035       98      Yes       48       48       98 No Holiday      1.5     0.00
## 8669       88      Yes       95       95       88 No Holiday      1.0     0.00
## 1255       33      Yes      165      165       33 No Holiday      0.4     0.00
## 8749       35      Yes      720      720       35 No Holiday      1.3     1.70
## 4335       58      Yes     1119     1119       58 No Holiday      2.9     2.92
## 5610       33      Yes      965      965       33 No Holiday      2.1     1.82
##      col 3427 col 3428 col 3429   col 3430   col 3431 col 3432 col 3433
## 4035      237      0.5       48 18/05/2018 18/05/2018      1.5     18.4
## 8669      270      0.0       95 27/11/2018 27/11/2018      1.0      1.2
## 1255     2000      0.0      165 22/01/2018 22/01/2018      0.4    -14.3
## 8749     1409      0.0      720 30/11/2018 30/11/2018      1.3     -7.8
## 4335     1211      0.0     1119 30/05/2018 30/05/2018      2.9     15.5
## 5610     1837      0.0      965 22/07/2018 22/07/2018      2.1     18.5
##      col 3434 col 3435 col 3436 col 3437 col 3438 col 3439 col 3440   col 3441
## 4035     0.00       98      1.5       48      Yes        0       48 18/05/2018
## 8669     0.00       88      1.0       95      Yes        0       95 27/11/2018
## 1255     0.00       33      0.4      165      Yes        0      165 22/01/2018
## 8749     1.70       35      1.3      720      Yes        0      720 30/11/2018
## 4335     2.92       58      2.9     1119      Yes        0     1119 30/05/2018
## 5610     1.82       33      2.1      965      Yes        0      965 22/07/2018
##      col 3442 col 3443   col 3444 col 3445 col 3446 col 3447 col 3448 col 3449
## 4035     18.8      1.5 No Holiday        0      0.5        0      0.5      1.5
## 8669      3.1      1.0 No Holiday        0      0.0        0      0.0      1.0
## 1255      0.0      0.4 No Holiday        0      0.0        0      0.0      0.4
## 8749      6.6      1.3 No Holiday        0      0.0        0      0.0      1.3
## 4335     24.3      2.9 No Holiday        0      0.0        0      0.0      2.9
## 5610     37.6      2.1 No Holiday        0      0.0        0      0.0      2.1
##      col 3450 col 3451 col 3452 col 3453 col 3454 col 3455   col 3456 col 3457
## 4035      0.5      237      1.5      1.5     0.00        0 No Holiday      0.5
## 8669      0.0      270      1.0      1.0     0.00        0 No Holiday      0.0
## 1255      0.0     2000      0.4      0.4     0.00        0 No Holiday      0.0
## 8749      0.0     1409      1.3      1.3     1.70        0 No Holiday      0.0
## 4335      0.0     1211      2.9      2.9     2.92        0 No Holiday      0.0
## 5610      0.0     1837      2.1      2.1     1.82        0 No Holiday      0.0
##      col 3458 col 3459 col 3460 col 3461 col 3462 col 3463 col 3464 col 3465
## 4035      0.5       48     0.00        2      0.5      237     18.8     0.00
## 8669      0.0       95     0.00        4      0.0      270      3.1     0.00
## 1255      0.0      165     0.00        6      0.0     2000      0.0     0.00
## 8749      0.0      720     1.70       12      0.0     1409      6.6     1.70
## 4335      0.0     1119     2.92       14      0.0     1211     24.3     2.92
## 5610      0.0      965     1.82       17      0.0     1837     37.6     1.82
##      col 3466 col 3467   col 3468 col 3469 col 3470 col 3471 col 3472 col 3473
## 4035        0        0 18/05/2018       98      Yes     18.4     18.8     18.4
## 8669        0        0 27/11/2018       88      Yes      1.2      3.1      1.2
## 1255        0        0 22/01/2018       33      Yes    -14.3      0.0    -14.3
## 8749        0        0 30/11/2018       35      Yes     -7.8      6.6     -7.8
## 4335        0        0 30/05/2018       58      Yes     15.5     24.3     15.5
## 5610        0        0 22/07/2018       33      Yes     18.5     37.6     18.5
##      col 3474   col 3475 col 3476   col 3477 col 3478 col 3479 col 3480
## 4035      1.5 No Holiday      Yes 18/05/2018       48      1.5      0.5
## 8669      1.0 No Holiday      Yes 27/11/2018       95      1.0      0.0
## 1255      0.4 No Holiday      Yes 22/01/2018      165      0.4      0.0
## 8749      1.3 No Holiday      Yes 30/11/2018      720      1.3      0.0
## 4335      2.9 No Holiday      Yes 30/05/2018     1119      2.9      0.0
## 5610      2.1 No Holiday      Yes 22/07/2018      965      2.1      0.0
##        col 3481 col 3482 col 3483 col 3484 col 3485 col 3486 col 3487
## 4035 18/05/2018     18.4      Yes     18.4      0.5       98       98
## 8669 27/11/2018      1.2      Yes      1.2      0.0       88       88
## 1255 22/01/2018    -14.3      Yes    -14.3      0.0       33       33
## 8749 30/11/2018     -7.8      Yes     -7.8      0.0       35       35
## 4335 30/05/2018     15.5      Yes     15.5      0.0       58       58
## 5610 22/07/2018     18.5      Yes     18.5      0.0       33       33
##        col 3488   col 3489 col 3490 col 3491 col 3492 col 3493   col 3494
## 4035 No Holiday 18/05/2018       98      0.5     18.4        0 No Holiday
## 8669 No Holiday 27/11/2018       88      0.0      1.2        0 No Holiday
## 1255 No Holiday 22/01/2018       33      0.0    -14.3        0 No Holiday
## 8749 No Holiday 30/11/2018       35      0.0     -7.8        0 No Holiday
## 4335 No Holiday 30/05/2018       58      0.0     15.5        0 No Holiday
## 5610 No Holiday 22/07/2018       33      0.0     18.5        0 No Holiday
##      col 3495 col 3496 col 3497 col 3498 col 3499 col 3500 col 3501 col 3502
## 4035      0.5      Yes     18.8     18.8      0.5      237     18.8      0.5
## 8669      0.0      Yes      3.1      3.1      0.0      270      3.1      0.0
## 1255      0.0      Yes      0.0      0.0      0.0     2000      0.0      0.0
## 8749      0.0      Yes      6.6      6.6      0.0     1409      6.6      0.0
## 4335      0.0      Yes     24.3     24.3      0.0     1211     24.3      0.0
## 5610      0.0      Yes     37.6     37.6      0.0     1837     37.6      0.0
##      col 3503 col 3504 col 3505 col 3506 col 3507 col 3508 col 3509 col 3510
## 4035      237      1.5      237        2     18.4      1.5       48      237
## 8669      270      1.0      270        4      1.2      1.0       95      270
## 1255     2000      0.4     2000        6    -14.3      0.4      165     2000
## 8749     1409      1.3     1409       12     -7.8      1.3      720     1409
## 4335     1211      2.9     1211       14     15.5      2.9     1119     1211
## 5610     1837      2.1     1837       17     18.5      2.1      965     1837
##      col 3511 col 3512 col 3513 col 3514 col 3515 col 3516 col 3517 col 3518
## 4035      237     0.00        0      Yes     18.4       98      Yes     0.00
## 8669      270     0.00        0      Yes      1.2       88      Yes     0.00
## 1255     2000     0.00        0      Yes    -14.3       33      Yes     0.00
## 8749     1409     1.70        0      Yes     -7.8       35      Yes     1.70
## 4335     1211     2.92        0      Yes     15.5       58      Yes     2.92
## 5610     1837     1.82        0      Yes     18.5       33      Yes     1.82
##      col 3519 col 3520   col 3521 col 3522   col 3523 col 3524 col 3525
## 4035     0.00        2 No Holiday     18.8 No Holiday      Yes       98
## 8669     0.00        4 No Holiday      3.1 No Holiday      Yes       88
## 1255     0.00        6 No Holiday      0.0 No Holiday      Yes       33
## 8749     1.70       12 No Holiday      6.6 No Holiday      Yes       35
## 4335     2.92       14 No Holiday     24.3 No Holiday      Yes       58
## 5610     1.82       17 No Holiday     37.6 No Holiday      Yes       33
##      col 3526 col 3527 col 3528 col 3529 col 3530 col 3531 col 3532 col 3533
## 4035       48        0      0.5     0.00      237      237   Spring      Yes
## 8669       95        0      0.0     0.00      270      270   Autumn      Yes
## 1255      165        0      0.0     0.00     2000     2000   Winter      Yes
## 8749      720        0      0.0     1.70     1409     1409   Autumn      Yes
## 4335     1119        0      0.0     2.92     1211     1211   Spring      Yes
## 5610      965        0      0.0     1.82     1837     1837   Summer      Yes
##      col 3534 col 3535 col 3536   col 3537 col 3538   col 3539 col 3540
## 4035      237        0        0 No Holiday   Spring No Holiday      0.5
## 8669      270        0        0 No Holiday   Autumn No Holiday      0.0
## 1255     2000        0        0 No Holiday   Winter No Holiday      0.0
## 8749     1409        0        0 No Holiday   Autumn No Holiday      0.0
## 4335     1211        0        0 No Holiday   Spring No Holiday      0.0
## 5610     1837        0        0 No Holiday   Summer No Holiday      0.0
##      col 3541 col 3542 col 3543   col 3544   col 3545   col 3546 col 3547
## 4035     18.8       48      1.5 No Holiday 18/05/2018 No Holiday       48
## 8669      3.1       95      1.0 No Holiday 27/11/2018 No Holiday       95
## 1255      0.0      165      0.4 No Holiday 22/01/2018 No Holiday      165
## 8749      6.6      720      1.3 No Holiday 30/11/2018 No Holiday      720
## 4335     24.3     1119      2.9 No Holiday 30/05/2018 No Holiday     1119
## 5610     37.6      965      2.1 No Holiday 22/07/2018 No Holiday      965
##        col 3548 col 3549 col 3550 col 3551 col 3552   col 3553 col 3554
## 4035 No Holiday   Spring       48   Spring      237 18/05/2018       98
## 8669 No Holiday   Autumn       95   Autumn      270 27/11/2018       88
## 1255 No Holiday   Winter      165   Winter     2000 22/01/2018       33
## 8749 No Holiday   Autumn      720   Autumn     1409 30/11/2018       35
## 4335 No Holiday   Spring     1119   Spring     1211 30/05/2018       58
## 5610 No Holiday   Summer      965   Summer     1837 22/07/2018       33
##      col 3555 col 3556 col 3557 col 3558 col 3559 col 3560 col 3561 col 3562
## 4035        0      237       98      1.5     0.00      0.5      Yes      1.5
## 8669        0      270       88      1.0     0.00      0.0      Yes      1.0
## 1255        0     2000       33      0.4     0.00      0.0      Yes      0.4
## 8749        0     1409       35      1.3     1.70      0.0      Yes      1.3
## 4335        0     1211       58      2.9     2.92      0.0      Yes      2.9
## 5610        0     1837       33      2.1     1.82      0.0      Yes      2.1
##      col 3563 col 3564 col 3565 col 3566   col 3567   col 3568 col 3569
## 4035      237   Spring      237        0 18/05/2018 18/05/2018        0
## 8669      270   Autumn      270        0 27/11/2018 27/11/2018        0
## 1255     2000   Winter     2000        0 22/01/2018 22/01/2018        0
## 8749     1409   Autumn     1409        0 30/11/2018 30/11/2018        0
## 4335     1211   Spring     1211        0 30/05/2018 30/05/2018        0
## 5610     1837   Summer     1837        0 22/07/2018 22/07/2018        0
##      col 3570 col 3571 col 3572   col 3573   col 3574 col 3575 col 3576
## 4035      Yes   Spring       98 No Holiday 18/05/2018        2     0.00
## 8669      Yes   Autumn       88 No Holiday 27/11/2018        4     0.00
## 1255      Yes   Winter       33 No Holiday 22/01/2018        6     0.00
## 8749      Yes   Autumn       35 No Holiday 30/11/2018       12     1.70
## 4335      Yes   Spring       58 No Holiday 30/05/2018       14     2.92
## 5610      Yes   Summer       33 No Holiday 22/07/2018       17     1.82
##      col 3577 col 3578 col 3579 col 3580 col 3581 col 3582 col 3583 col 3584
## 4035     18.8     18.8       48   Spring     18.4     18.4      0.5      1.5
## 8669      3.1      3.1       95   Autumn      1.2      1.2      0.0      1.0
## 1255      0.0      0.0      165   Winter    -14.3    -14.3      0.0      0.4
## 8749      6.6      6.6      720   Autumn     -7.8     -7.8      0.0      1.3
## 4335     24.3     24.3     1119   Spring     15.5     15.5      0.0      2.9
## 5610     37.6     37.6      965   Summer     18.5     18.5      0.0      2.1
##      col 3585 col 3586 col 3587   col 3588 col 3589 col 3590 col 3591 col 3592
## 4035       98      1.5        0 No Holiday      Yes     18.8       48     18.8
## 8669       88      1.0        0 No Holiday      Yes      3.1       95      3.1
## 1255       33      0.4        0 No Holiday      Yes      0.0      165      0.0
## 8749       35      1.3        0 No Holiday      Yes      6.6      720      6.6
## 4335       58      2.9        0 No Holiday      Yes     24.3     1119     24.3
## 5610       33      2.1        0 No Holiday      Yes     37.6      965     37.6
##      col 3593   col 3594 col 3595 col 3596   col 3597 col 3598 col 3599
## 4035      Yes 18/05/2018      Yes      1.5 18/05/2018       98      237
## 8669      Yes 27/11/2018      Yes      1.0 27/11/2018       88      270
## 1255      Yes 22/01/2018      Yes      0.4 22/01/2018       33     2000
## 8749      Yes 30/11/2018      Yes      1.3 30/11/2018       35     1409
## 4335      Yes 30/05/2018      Yes      2.9 30/05/2018       58     1211
## 5610      Yes 22/07/2018      Yes      2.1 22/07/2018       33     1837
##      col 3600   col 3601 col 3602   col 3603   col 3604 col 3605 col 3606
## 4035       98 18/05/2018     18.4 No Holiday 18/05/2018      237        0
## 8669       88 27/11/2018      1.2 No Holiday 27/11/2018      270        0
## 1255       33 22/01/2018    -14.3 No Holiday 22/01/2018     2000        0
## 8749       35 30/11/2018     -7.8 No Holiday 30/11/2018     1409        0
## 4335       58 30/05/2018     15.5 No Holiday 30/05/2018     1211        0
## 5610       33 22/07/2018     18.5 No Holiday 22/07/2018     1837        0
##      col 3607 col 3608 col 3609 col 3610   col 3611 col 3612 col 3613
## 4035        2     18.8        2      1.5 18/05/2018       48      0.5
## 8669        4      3.1        4      1.0 27/11/2018       95      0.0
## 1255        6      0.0        6      0.4 22/01/2018      165      0.0
## 8749       12      6.6       12      1.3 30/11/2018      720      0.0
## 4335       14     24.3       14      2.9 30/05/2018     1119      0.0
## 5610       17     37.6       17      2.1 22/07/2018      965      0.0
##        col 3614 col 3615 col 3616 col 3617 col 3618   col 3619   col 3620
## 4035 18/05/2018      237     0.00       48        2 No Holiday No Holiday
## 8669 27/11/2018      270     0.00       95        4 No Holiday No Holiday
## 1255 22/01/2018     2000     0.00      165        6 No Holiday No Holiday
## 8749 30/11/2018     1409     1.70      720       12 No Holiday No Holiday
## 4335 30/05/2018     1211     2.92     1119       14 No Holiday No Holiday
## 5610 22/07/2018     1837     1.82      965       17 No Holiday No Holiday
##      col 3621 col 3622 col 3623   col 3624 col 3625 col 3626   col 3627
## 4035     18.8      Yes       48 18/05/2018     18.4        0 18/05/2018
## 8669      3.1      Yes       95 27/11/2018      1.2        0 27/11/2018
## 1255      0.0      Yes      165 22/01/2018    -14.3        0 22/01/2018
## 8749      6.6      Yes      720 30/11/2018     -7.8        0 30/11/2018
## 4335     24.3      Yes     1119 30/05/2018     15.5        0 30/05/2018
## 5610     37.6      Yes      965 22/07/2018     18.5        0 22/07/2018
##        col 3628 col 3629 col 3630   col 3631 col 3632 col 3633   col 3634
## 4035 18/05/2018      0.5        2 18/05/2018       48        2 No Holiday
## 8669 27/11/2018      0.0        4 27/11/2018       95        4 No Holiday
## 1255 22/01/2018      0.0        6 22/01/2018      165        6 No Holiday
## 8749 30/11/2018      0.0       12 30/11/2018      720       12 No Holiday
## 4335 30/05/2018      0.0       14 30/05/2018     1119       14 No Holiday
## 5610 22/07/2018      0.0       17 22/07/2018      965       17 No Holiday
##      col 3635 col 3636 col 3637 col 3638 col 3639 col 3640   col 3641 col 3642
## 4035   Spring     0.00        0     18.8      Yes   Spring 18/05/2018      237
## 8669   Autumn     0.00        0      3.1      Yes   Autumn 27/11/2018      270
## 1255   Winter     0.00        0      0.0      Yes   Winter 22/01/2018     2000
## 8749   Autumn     1.70        0      6.6      Yes   Autumn 30/11/2018     1409
## 4335   Spring     2.92        0     24.3      Yes   Spring 30/05/2018     1211
## 5610   Summer     1.82        0     37.6      Yes   Summer 22/07/2018     1837
##      col 3643 col 3644 col 3645 col 3646 col 3647 col 3648 col 3649 col 3650
## 4035      0.5     18.8      1.5       98      237     18.8     18.4      1.5
## 8669      0.0      3.1      1.0       88      270      3.1      1.2      1.0
## 1255      0.0      0.0      0.4       33     2000      0.0    -14.3      0.4
## 8749      0.0      6.6      1.3       35     1409      6.6     -7.8      1.3
## 4335      0.0     24.3      2.9       58     1211     24.3     15.5      2.9
## 5610      0.0     37.6      2.1       33     1837     37.6     18.5      2.1
##      col 3651   col 3652 col 3653   col 3654 col 3655 col 3656   col 3657
## 4035       48 No Holiday      0.5 No Holiday      Yes     0.00 No Holiday
## 8669       95 No Holiday      0.0 No Holiday      Yes     0.00 No Holiday
## 1255      165 No Holiday      0.0 No Holiday      Yes     0.00 No Holiday
## 8749      720 No Holiday      0.0 No Holiday      Yes     1.70 No Holiday
## 4335     1119 No Holiday      0.0 No Holiday      Yes     2.92 No Holiday
## 5610      965 No Holiday      0.0 No Holiday      Yes     1.82 No Holiday
##      col 3658 col 3659 col 3660   col 3661 col 3662 col 3663 col 3664 col 3665
## 4035       48     18.8      0.5 18/05/2018   Spring     18.8      0.5      0.5
## 8669       95      3.1      0.0 27/11/2018   Autumn      3.1      0.0      0.0
## 1255      165      0.0      0.0 22/01/2018   Winter      0.0      0.0      0.0
## 8749      720      6.6      0.0 30/11/2018   Autumn      6.6      0.0      0.0
## 4335     1119     24.3      0.0 30/05/2018   Spring     24.3      0.0      0.0
## 5610      965     37.6      0.0 22/07/2018   Summer     37.6      0.0      0.0
##      col 3666 col 3667 col 3668 col 3669   col 3670 col 3671 col 3672 col 3673
## 4035   Spring      0.5     18.8        2 18/05/2018      237        0     18.8
## 8669   Autumn      0.0      3.1        4 27/11/2018      270        0      3.1
## 1255   Winter      0.0      0.0        6 22/01/2018     2000        0      0.0
## 8749   Autumn      0.0      6.6       12 30/11/2018     1409        0      6.6
## 4335   Spring      0.0     24.3       14 30/05/2018     1211        0     24.3
## 5610   Summer      0.0     37.6       17 22/07/2018     1837        0     37.6
##      col 3674 col 3675 col 3676   col 3677 col 3678 col 3679 col 3680 col 3681
## 4035     0.00     18.4      237 18/05/2018      1.5     18.8     0.00      0.5
## 8669     0.00      1.2      270 27/11/2018      1.0      3.1     0.00      0.0
## 1255     0.00    -14.3     2000 22/01/2018      0.4      0.0     0.00      0.0
## 8749     1.70     -7.8     1409 30/11/2018      1.3      6.6     1.70      0.0
## 4335     2.92     15.5     1211 30/05/2018      2.9     24.3     2.92      0.0
## 5610     1.82     18.5     1837 22/07/2018      2.1     37.6     1.82      0.0
##      col 3682 col 3683 col 3684 col 3685 col 3686 col 3687   col 3688 col 3689
## 4035      Yes      237       98        2     0.00      0.5 No Holiday        0
## 8669      Yes      270       88        4     0.00      0.0 No Holiday        0
## 1255      Yes     2000       33        6     0.00      0.0 No Holiday        0
## 8749      Yes     1409       35       12     1.70      0.0 No Holiday        0
## 4335      Yes     1211       58       14     2.92      0.0 No Holiday        0
## 5610      Yes     1837       33       17     1.82      0.0 No Holiday        0
##      col 3690 col 3691 col 3692 col 3693 col 3694   col 3695 col 3696 col 3697
## 4035        0       98      0.5     18.8        2 18/05/2018       48       48
## 8669        0       88      0.0      3.1        4 27/11/2018       95       95
## 1255        0       33      0.0      0.0        6 22/01/2018      165      165
## 8749        0       35      0.0      6.6       12 30/11/2018      720      720
## 4335        0       58      0.0     24.3       14 30/05/2018     1119     1119
## 5610        0       33      0.0     37.6       17 22/07/2018      965      965
##      col 3698 col 3699 col 3700 col 3701 col 3702 col 3703 col 3704 col 3705
## 4035      0.5      1.5      Yes        0     0.00   Spring     0.00   Spring
## 8669      0.0      1.0      Yes        0     0.00   Autumn     0.00   Autumn
## 1255      0.0      0.4      Yes        0     0.00   Winter     0.00   Winter
## 8749      0.0      1.3      Yes        0     1.70   Autumn     1.70   Autumn
## 4335      0.0      2.9      Yes        0     2.92   Spring     2.92   Spring
## 5610      0.0      2.1      Yes        0     1.82   Summer     1.82   Summer
##      col 3706 col 3707 col 3708 col 3709 col 3710 col 3711 col 3712 col 3713
## 4035        0     0.00      1.5       98      1.5      237      Yes      1.5
## 8669        0     0.00      1.0       88      1.0      270      Yes      1.0
## 1255        0     0.00      0.4       33      0.4     2000      Yes      0.4
## 8749        0     1.70      1.3       35      1.3     1409      Yes      1.3
## 4335        0     2.92      2.9       58      2.9     1211      Yes      2.9
## 5610        0     1.82      2.1       33      2.1     1837      Yes      2.1
##      col 3714 col 3715 col 3716 col 3717 col 3718 col 3719 col 3720 col 3721
## 4035       48       48      237       98     18.8        2        2      237
## 8669       95       95      270       88      3.1        4        4      270
## 1255      165      165     2000       33      0.0        6        6     2000
## 8749      720      720     1409       35      6.6       12       12     1409
## 4335     1119     1119     1211       58     24.3       14       14     1211
## 5610      965      965     1837       33     37.6       17       17     1837
##      col 3722   col 3723 col 3724 col 3725 col 3726 col 3727 col 3728 col 3729
## 4035      237 18/05/2018      0.5     0.00      0.5      Yes      237       98
## 8669      270 27/11/2018      0.0     0.00      0.0      Yes      270       88
## 1255     2000 22/01/2018      0.0     0.00      0.0      Yes     2000       33
## 8749     1409 30/11/2018      0.0     1.70      0.0      Yes     1409       35
## 4335     1211 30/05/2018      0.0     2.92      0.0      Yes     1211       58
## 5610     1837 22/07/2018      0.0     1.82      0.0      Yes     1837       33
##      col 3730 col 3731 col 3732   col 3733 col 3734 col 3735 col 3736 col 3737
## 4035     18.4        0        2 No Holiday       48      Yes      1.5      Yes
## 8669      1.2        0        4 No Holiday       95      Yes      1.0      Yes
## 1255    -14.3        0        6 No Holiday      165      Yes      0.4      Yes
## 8749     -7.8        0       12 No Holiday      720      Yes      1.3      Yes
## 4335     15.5        0       14 No Holiday     1119      Yes      2.9      Yes
## 5610     18.5        0       17 No Holiday      965      Yes      2.1      Yes
##        col 3738 col 3739 col 3740 col 3741 col 3742   col 3743 col 3744
## 4035 No Holiday        2        0       98      Yes No Holiday      237
## 8669 No Holiday        4        0       88      Yes No Holiday      270
## 1255 No Holiday        6        0       33      Yes No Holiday     2000
## 8749 No Holiday       12        0       35      Yes No Holiday     1409
## 4335 No Holiday       14        0       58      Yes No Holiday     1211
## 5610 No Holiday       17        0       33      Yes No Holiday     1837
##      col 3745 col 3746 col 3747 col 3748 col 3749 col 3750 col 3751 col 3752
## 4035      1.5       48     18.8     18.8     18.8      0.5      0.5       48
## 8669      1.0       95      3.1      3.1      3.1      0.0      0.0       95
## 1255      0.4      165      0.0      0.0      0.0      0.0      0.0      165
## 8749      1.3      720      6.6      6.6      6.6      0.0      0.0      720
## 4335      2.9     1119     24.3     24.3     24.3      0.0      0.0     1119
## 5610      2.1      965     37.6     37.6     37.6      0.0      0.0      965
##      col 3753 col 3754 col 3755 col 3756 col 3757 col 3758 col 3759   col 3760
## 4035        2       98     18.4        2      1.5       98     0.00 No Holiday
## 8669        4       88      1.2        4      1.0       88     0.00 No Holiday
## 1255        6       33    -14.3        6      0.4       33     0.00 No Holiday
## 8749       12       35     -7.8       12      1.3       35     1.70 No Holiday
## 4335       14       58     15.5       14      2.9       58     2.92 No Holiday
## 5610       17       33     18.5       17      2.1       33     1.82 No Holiday
##        col 3761 col 3762 col 3763   col 3764 col 3765 col 3766 col 3767
## 4035 18/05/2018      237   Spring No Holiday   Spring      Yes      Yes
## 8669 27/11/2018      270   Autumn No Holiday   Autumn      Yes      Yes
## 1255 22/01/2018     2000   Winter No Holiday   Winter      Yes      Yes
## 8749 30/11/2018     1409   Autumn No Holiday   Autumn      Yes      Yes
## 4335 30/05/2018     1211   Spring No Holiday   Spring      Yes      Yes
## 5610 22/07/2018     1837   Summer No Holiday   Summer      Yes      Yes
##      col 3768 col 3769   col 3770 col 3771 col 3772   col 3773   col 3774
## 4035     18.4     0.00 18/05/2018      1.5       98 No Holiday 18/05/2018
## 8669      1.2     0.00 27/11/2018      1.0       88 No Holiday 27/11/2018
## 1255    -14.3     0.00 22/01/2018      0.4       33 No Holiday 22/01/2018
## 8749     -7.8     1.70 30/11/2018      1.3       35 No Holiday 30/11/2018
## 4335     15.5     2.92 30/05/2018      2.9       58 No Holiday 30/05/2018
## 5610     18.5     1.82 22/07/2018      2.1       33 No Holiday 22/07/2018
##      col 3775   col 3776   col 3777 col 3778   col 3779 col 3780 col 3781
## 4035     18.8 No Holiday No Holiday      1.5 18/05/2018      Yes        2
## 8669      3.1 No Holiday No Holiday      1.0 27/11/2018      Yes        4
## 1255      0.0 No Holiday No Holiday      0.4 22/01/2018      Yes        6
## 8749      6.6 No Holiday No Holiday      1.3 30/11/2018      Yes       12
## 4335     24.3 No Holiday No Holiday      2.9 30/05/2018      Yes       14
## 5610     37.6 No Holiday No Holiday      2.1 22/07/2018      Yes       17
##      col 3782 col 3783   col 3784 col 3785 col 3786   col 3787 col 3788
## 4035       98      0.5 18/05/2018     18.4      0.5 No Holiday        0
## 8669       88      0.0 27/11/2018      1.2      0.0 No Holiday        0
## 1255       33      0.0 22/01/2018    -14.3      0.0 No Holiday        0
## 8749       35      0.0 30/11/2018     -7.8      0.0 No Holiday        0
## 4335       58      0.0 30/05/2018     15.5      0.0 No Holiday        0
## 5610       33      0.0 22/07/2018     18.5      0.0 No Holiday        0
##      col 3789 col 3790 col 3791 col 3792   col 3793 col 3794 col 3795 col 3796
## 4035      1.5      Yes     0.00        2 18/05/2018        0     0.00   Spring
## 8669      1.0      Yes     0.00        4 27/11/2018        0     0.00   Autumn
## 1255      0.4      Yes     0.00        6 22/01/2018        0     0.00   Winter
## 8749      1.3      Yes     1.70       12 30/11/2018        0     1.70   Autumn
## 4335      2.9      Yes     2.92       14 30/05/2018        0     2.92   Spring
## 5610      2.1      Yes     1.82       17 22/07/2018        0     1.82   Summer
##      col 3797 col 3798 col 3799 col 3800 col 3801   col 3802   col 3803
## 4035        0     18.4     18.4     18.4      0.5 No Holiday 18/05/2018
## 8669        0      1.2      1.2      1.2      0.0 No Holiday 27/11/2018
## 1255        0    -14.3    -14.3    -14.3      0.0 No Holiday 22/01/2018
## 8749        0     -7.8     -7.8     -7.8      0.0 No Holiday 30/11/2018
## 4335        0     15.5     15.5     15.5      0.0 No Holiday 30/05/2018
## 5610        0     18.5     18.5     18.5      0.0 No Holiday 22/07/2018
##      col 3804 col 3805 col 3806   col 3807 col 3808 col 3809 col 3810 col 3811
## 4035        2       98     0.00 No Holiday       48        2      237        2
## 8669        4       88     0.00 No Holiday       95        4      270        4
## 1255        6       33     0.00 No Holiday      165        6     2000        6
## 8749       12       35     1.70 No Holiday      720       12     1409       12
## 4335       14       58     2.92 No Holiday     1119       14     1211       14
## 5610       17       33     1.82 No Holiday      965       17     1837       17
##      col 3812 col 3813 col 3814 col 3815 col 3816   col 3817 col 3818 col 3819
## 4035        2        0      0.5      Yes       48 18/05/2018   Spring     18.8
## 8669        4        0      0.0      Yes       95 27/11/2018   Autumn      3.1
## 1255        6        0      0.0      Yes      165 22/01/2018   Winter      0.0
## 8749       12        0      0.0      Yes      720 30/11/2018   Autumn      6.6
## 4335       14        0      0.0      Yes     1119 30/05/2018   Spring     24.3
## 5610       17        0      0.0      Yes      965 22/07/2018   Summer     37.6
##      col 3820 col 3821 col 3822 col 3823 col 3824 col 3825 col 3826 col 3827
## 4035      0.5     18.4       98      1.5     18.8        2     0.00      Yes
## 8669      0.0      1.2       88      1.0      3.1        4     0.00      Yes
## 1255      0.0    -14.3       33      0.4      0.0        6     0.00      Yes
## 8749      0.0     -7.8       35      1.3      6.6       12     1.70      Yes
## 4335      0.0     15.5       58      2.9     24.3       14     2.92      Yes
## 5610      0.0     18.5       33      2.1     37.6       17     1.82      Yes
##      col 3828 col 3829   col 3830 col 3831 col 3832 col 3833 col 3834 col 3835
## 4035        0     18.4 No Holiday     0.00        0        2       98     18.8
## 8669        0      1.2 No Holiday     0.00        0        4       88      3.1
## 1255        0    -14.3 No Holiday     0.00        0        6       33      0.0
## 8749        0     -7.8 No Holiday     1.70        0       12       35      6.6
## 4335        0     15.5 No Holiday     2.92        0       14       58     24.3
## 5610        0     18.5 No Holiday     1.82        0       17       33     37.6
##      col 3836 col 3837 col 3838 col 3839 col 3840 col 3841 col 3842 col 3843
## 4035        0      237       48       48        0   Spring       98     18.8
## 8669        0      270       95       95        0   Autumn       88      3.1
## 1255        0     2000      165      165        0   Winter       33      0.0
## 8749        0     1409      720      720        0   Autumn       35      6.6
## 4335        0     1211     1119     1119        0   Spring       58     24.3
## 5610        0     1837      965      965        0   Summer       33     37.6
##      col 3844 col 3845   col 3846 col 3847   col 3848   col 3849 col 3850
## 4035        2      Yes 18/05/2018     18.4 No Holiday No Holiday     18.8
## 8669        4      Yes 27/11/2018      1.2 No Holiday No Holiday      3.1
## 1255        6      Yes 22/01/2018    -14.3 No Holiday No Holiday      0.0
## 8749       12      Yes 30/11/2018     -7.8 No Holiday No Holiday      6.6
## 4335       14      Yes 30/05/2018     15.5 No Holiday No Holiday     24.3
## 5610       17      Yes 22/07/2018     18.5 No Holiday No Holiday     37.6
##      col 3851   col 3852 col 3853 col 3854   col 3855 col 3856   col 3857
## 4035       48 18/05/2018       48   Spring No Holiday     0.00 18/05/2018
## 8669       95 27/11/2018       95   Autumn No Holiday     0.00 27/11/2018
## 1255      165 22/01/2018      165   Winter No Holiday     0.00 22/01/2018
## 8749      720 30/11/2018      720   Autumn No Holiday     1.70 30/11/2018
## 4335     1119 30/05/2018     1119   Spring No Holiday     2.92 30/05/2018
## 5610      965 22/07/2018      965   Summer No Holiday     1.82 22/07/2018
##      col 3858 col 3859 col 3860 col 3861 col 3862 col 3863 col 3864 col 3865
## 4035        2      1.5      0.5       48      0.5      237      1.5     18.4
## 8669        4      1.0      0.0       95      0.0      270      1.0      1.2
## 1255        6      0.4      0.0      165      0.0     2000      0.4    -14.3
## 8749       12      1.3      0.0      720      0.0     1409      1.3     -7.8
## 4335       14      2.9      0.0     1119      0.0     1211      2.9     15.5
## 5610       17      2.1      0.0      965      0.0     1837      2.1     18.5
##      col 3866 col 3867 col 3868 col 3869 col 3870 col 3871 col 3872 col 3873
## 4035      1.5       48        0      0.5      0.5      0.5     18.4     18.4
## 8669      1.0       95        0      0.0      0.0      0.0      1.2      1.2
## 1255      0.4      165        0      0.0      0.0      0.0    -14.3    -14.3
## 8749      1.3      720        0      0.0      0.0      0.0     -7.8     -7.8
## 4335      2.9     1119        0      0.0      0.0      0.0     15.5     15.5
## 5610      2.1      965        0      0.0      0.0      0.0     18.5     18.5
##        col 3874 col 3875 col 3876 col 3877 col 3878 col 3879 col 3880
## 4035 18/05/2018     18.8     18.4     18.8   Spring     0.00      1.5
## 8669 27/11/2018      3.1      1.2      3.1   Autumn     0.00      1.0
## 1255 22/01/2018      0.0    -14.3      0.0   Winter     0.00      0.4
## 8749 30/11/2018      6.6     -7.8      6.6   Autumn     1.70      1.3
## 4335 30/05/2018     24.3     15.5     24.3   Spring     2.92      2.9
## 5610 22/07/2018     37.6     18.5     37.6   Summer     1.82      2.1
##        col 3881 col 3882 col 3883 col 3884 col 3885 col 3886 col 3887 col 3888
## 4035 18/05/2018   Spring       98      1.5      Yes        2     18.8     18.4
## 8669 27/11/2018   Autumn       88      1.0      Yes        4      3.1      1.2
## 1255 22/01/2018   Winter       33      0.4      Yes        6      0.0    -14.3
## 8749 30/11/2018   Autumn       35      1.3      Yes       12      6.6     -7.8
## 4335 30/05/2018   Spring       58      2.9      Yes       14     24.3     15.5
## 5610 22/07/2018   Summer       33      2.1      Yes       17     37.6     18.5
##      col 3889 col 3890 col 3891 col 3892 col 3893 col 3894   col 3895 col 3896
## 4035        0     18.4       48   Spring      Yes        2 No Holiday        2
## 8669        0      1.2       95   Autumn      Yes        4 No Holiday        4
## 1255        0    -14.3      165   Winter      Yes        6 No Holiday        6
## 8749        0     -7.8      720   Autumn      Yes       12 No Holiday       12
## 4335        0     15.5     1119   Spring      Yes       14 No Holiday       14
## 5610        0     18.5      965   Summer      Yes       17 No Holiday       17
##      col 3897 col 3898 col 3899 col 3900 col 3901 col 3902   col 3903 col 3904
## 4035   Spring   Spring        0      0.5      237      1.5 No Holiday        2
## 8669   Autumn   Autumn        0      0.0      270      1.0 No Holiday        4
## 1255   Winter   Winter        0      0.0     2000      0.4 No Holiday        6
## 8749   Autumn   Autumn        0      0.0     1409      1.3 No Holiday       12
## 4335   Spring   Spring        0      0.0     1211      2.9 No Holiday       14
## 5610   Summer   Summer        0      0.0     1837      2.1 No Holiday       17
##      col 3905 col 3906   col 3907 col 3908 col 3909 col 3910 col 3911 col 3912
## 4035       98     18.4 No Holiday      1.5     18.8      237      0.5       48
## 8669       88      1.2 No Holiday      1.0      3.1      270      0.0       95
## 1255       33    -14.3 No Holiday      0.4      0.0     2000      0.0      165
## 8749       35     -7.8 No Holiday      1.3      6.6     1409      0.0      720
## 4335       58     15.5 No Holiday      2.9     24.3     1211      0.0     1119
## 5610       33     18.5 No Holiday      2.1     37.6     1837      0.0      965
##        col 3913 col 3914 col 3915 col 3916 col 3917 col 3918 col 3919 col 3920
## 4035 No Holiday       48      0.5     18.4     18.8       48        0     0.00
## 8669 No Holiday       95      0.0      1.2      3.1       95        0     0.00
## 1255 No Holiday      165      0.0    -14.3      0.0      165        0     0.00
## 8749 No Holiday      720      0.0     -7.8      6.6      720        0     1.70
## 4335 No Holiday     1119      0.0     15.5     24.3     1119        0     2.92
## 5610 No Holiday      965      0.0     18.5     37.6      965        0     1.82
##      col 3921 col 3922 col 3923 col 3924 col 3925 col 3926 col 3927 col 3928
## 4035      237     18.8       48      Yes   Spring     18.4        2   Spring
## 8669      270      3.1       95      Yes   Autumn      1.2        4   Autumn
## 1255     2000      0.0      165      Yes   Winter    -14.3        6   Winter
## 8749     1409      6.6      720      Yes   Autumn     -7.8       12   Autumn
## 4335     1211     24.3     1119      Yes   Spring     15.5       14   Spring
## 5610     1837     37.6      965      Yes   Summer     18.5       17   Summer
##        col 3929 col 3930 col 3931 col 3932   col 3933 col 3934 col 3935
## 4035 No Holiday      Yes     18.4      1.5 18/05/2018     18.4       48
## 8669 No Holiday      Yes      1.2      1.0 27/11/2018      1.2       95
## 1255 No Holiday      Yes    -14.3      0.4 22/01/2018    -14.3      165
## 8749 No Holiday      Yes     -7.8      1.3 30/11/2018     -7.8      720
## 4335 No Holiday      Yes     15.5      2.9 30/05/2018     15.5     1119
## 5610 No Holiday      Yes     18.5      2.1 22/07/2018     18.5      965
##      col 3936 col 3937 col 3938 col 3939 col 3940 col 3941 col 3942 col 3943
## 4035     18.4      1.5     18.8        0     0.00      0.5        0     18.8
## 8669      1.2      1.0      3.1        0     0.00      0.0        0      3.1
## 1255    -14.3      0.4      0.0        0     0.00      0.0        0      0.0
## 8749     -7.8      1.3      6.6        0     1.70      0.0        0      6.6
## 4335     15.5      2.9     24.3        0     2.92      0.0        0     24.3
## 5610     18.5      2.1     37.6        0     1.82      0.0        0     37.6
##      col 3944 col 3945   col 3946 col 3947 col 3948 col 3949   col 3950
## 4035   Spring     0.00 18/05/2018        0      1.5      Yes 18/05/2018
## 8669   Autumn     0.00 27/11/2018        0      1.0      Yes 27/11/2018
## 1255   Winter     0.00 22/01/2018        0      0.4      Yes 22/01/2018
## 8749   Autumn     1.70 30/11/2018        0      1.3      Yes 30/11/2018
## 4335   Spring     2.92 30/05/2018        0      2.9      Yes 30/05/2018
## 5610   Summer     1.82 22/07/2018        0      2.1      Yes 22/07/2018
##      col 3951 col 3952   col 3953 col 3954 col 3955 col 3956 col 3957 col 3958
## 4035       48      Yes No Holiday   Spring      0.5      1.5     18.4        0
## 8669       95      Yes No Holiday   Autumn      0.0      1.0      1.2        0
## 1255      165      Yes No Holiday   Winter      0.0      0.4    -14.3        0
## 8749      720      Yes No Holiday   Autumn      0.0      1.3     -7.8        0
## 4335     1119      Yes No Holiday   Spring      0.0      2.9     15.5        0
## 5610      965      Yes No Holiday   Summer      0.0      2.1     18.5        0
##      col 3959 col 3960 col 3961   col 3962 col 3963 col 3964 col 3965 col 3966
## 4035   Spring     18.8        2 18/05/2018      237        0      1.5        0
## 8669   Autumn      3.1        4 27/11/2018      270        0      1.0        0
## 1255   Winter      0.0        6 22/01/2018     2000        0      0.4        0
## 8749   Autumn      6.6       12 30/11/2018     1409        0      1.3        0
## 4335   Spring     24.3       14 30/05/2018     1211        0      2.9        0
## 5610   Summer     37.6       17 22/07/2018     1837        0      2.1        0
##      col 3967 col 3968 col 3969 col 3970 col 3971 col 3972 col 3973 col 3974
## 4035       48   Spring     18.4       98      0.5       48       98      1.5
## 8669       95   Autumn      1.2       88      0.0       95       88      1.0
## 1255      165   Winter    -14.3       33      0.0      165       33      0.4
## 8749      720   Autumn     -7.8       35      0.0      720       35      1.3
## 4335     1119   Spring     15.5       58      0.0     1119       58      2.9
## 5610      965   Summer     18.5       33      0.0      965       33      2.1
##      col 3975 col 3976 col 3977 col 3978 col 3979 col 3980 col 3981 col 3982
## 4035      237      Yes     18.4      Yes      Yes      0.5     0.00       98
## 8669      270      Yes      1.2      Yes      Yes      0.0     0.00       88
## 1255     2000      Yes    -14.3      Yes      Yes      0.0     0.00       33
## 8749     1409      Yes     -7.8      Yes      Yes      0.0     1.70       35
## 4335     1211      Yes     15.5      Yes      Yes      0.0     2.92       58
## 5610     1837      Yes     18.5      Yes      Yes      0.0     1.82       33
##      col 3983 col 3984 col 3985   col 3986 col 3987   col 3988 col 3989
## 4035        2   Spring        2 No Holiday      237 18/05/2018       98
## 8669        4   Autumn        4 No Holiday      270 27/11/2018       88
## 1255        6   Winter        6 No Holiday     2000 22/01/2018       33
## 8749       12   Autumn       12 No Holiday     1409 30/11/2018       35
## 4335       14   Spring       14 No Holiday     1211 30/05/2018       58
## 5610       17   Summer       17 No Holiday     1837 22/07/2018       33
##      col 3990 col 3991   col 3992   col 3993 col 3994 col 3995 col 3996
## 4035       48      237 18/05/2018 18/05/2018        2      1.5        0
## 8669       95      270 27/11/2018 27/11/2018        4      1.0        0
## 1255      165     2000 22/01/2018 22/01/2018        6      0.4        0
## 8749      720     1409 30/11/2018 30/11/2018       12      1.3        0
## 4335     1119     1211 30/05/2018 30/05/2018       14      2.9        0
## 5610      965     1837 22/07/2018 22/07/2018       17      2.1        0
##      col 3997 col 3998 col 3999 col 4000 col 4001 col 4002 col 4003 col 4004
## 4035       98      1.5      1.5      Yes        0      1.5     18.4     18.8
## 8669       88      1.0      1.0      Yes        0      1.0      1.2      3.1
## 1255       33      0.4      0.4      Yes        0      0.4    -14.3      0.0
## 8749       35      1.3      1.3      Yes        0      1.3     -7.8      6.6
## 4335       58      2.9      2.9      Yes        0      2.9     15.5     24.3
## 5610       33      2.1      2.1      Yes        0      2.1     18.5     37.6
##      col 4005   col 4006 col 4007 col 4008   col 4009 col 4010 col 4011
## 4035      1.5 18/05/2018      Yes     18.4 No Holiday     0.00      Yes
## 8669      1.0 27/11/2018      Yes      1.2 No Holiday     0.00      Yes
## 1255      0.4 22/01/2018      Yes    -14.3 No Holiday     0.00      Yes
## 8749      1.3 30/11/2018      Yes     -7.8 No Holiday     1.70      Yes
## 4335      2.9 30/05/2018      Yes     15.5 No Holiday     2.92      Yes
## 5610      2.1 22/07/2018      Yes     18.5 No Holiday     1.82      Yes
##      col 4012 col 4013 col 4014 col 4015 col 4016 col 4017 col 4018 col 4019
## 4035     0.00      1.5     0.00       98     18.8       98   Spring     18.4
## 8669     0.00      1.0     0.00       88      3.1       88   Autumn      1.2
## 1255     0.00      0.4     0.00       33      0.0       33   Winter    -14.3
## 8749     1.70      1.3     1.70       35      6.6       35   Autumn     -7.8
## 4335     2.92      2.9     2.92       58     24.3       58   Spring     15.5
## 5610     1.82      2.1     1.82       33     37.6       33   Summer     18.5
##      col 4020 col 4021 col 4022 col 4023 col 4024 col 4025 col 4026 col 4027
## 4035      237   Spring     0.00       98      0.5       98     18.8     18.4
## 8669      270   Autumn     0.00       88      0.0       88      3.1      1.2
## 1255     2000   Winter     0.00       33      0.0       33      0.0    -14.3
## 8749     1409   Autumn     1.70       35      0.0       35      6.6     -7.8
## 4335     1211   Spring     2.92       58      0.0       58     24.3     15.5
## 5610     1837   Summer     1.82       33      0.0       33     37.6     18.5
##      col 4028 col 4029 col 4030 col 4031   col 4032 col 4033 col 4034 col 4035
## 4035       48        2      0.5       48 No Holiday     18.8        0      1.5
## 8669       95        4      0.0       95 No Holiday      3.1        0      1.0
## 1255      165        6      0.0      165 No Holiday      0.0        0      0.4
## 8749      720       12      0.0      720 No Holiday      6.6        0      1.3
## 4335     1119       14      0.0     1119 No Holiday     24.3        0      2.9
## 5610      965       17      0.0      965 No Holiday     37.6        0      2.1
##      col 4036 col 4037 col 4038 col 4039 col 4040 col 4041 col 4042 col 4043
## 4035      Yes     18.8      1.5        2       98       48      Yes        2
## 8669      Yes      3.1      1.0        4       88       95      Yes        4
## 1255      Yes      0.0      0.4        6       33      165      Yes        6
## 8749      Yes      6.6      1.3       12       35      720      Yes       12
## 4335      Yes     24.3      2.9       14       58     1119      Yes       14
## 5610      Yes     37.6      2.1       17       33      965      Yes       17
##      col 4044 col 4045 col 4046 col 4047 col 4048   col 4049 col 4050 col 4051
## 4035        2      Yes        0        2      0.5 18/05/2018     18.8       48
## 8669        4      Yes        0        4      0.0 27/11/2018      3.1       95
## 1255        6      Yes        0        6      0.0 22/01/2018      0.0      165
## 8749       12      Yes        0       12      0.0 30/11/2018      6.6      720
## 4335       14      Yes        0       14      0.0 30/05/2018     24.3     1119
## 5610       17      Yes        0       17      0.0 22/07/2018     37.6      965
##      col 4052   col 4053 col 4054 col 4055 col 4056 col 4057 col 4058 col 4059
## 4035        2 18/05/2018     18.4      Yes     18.4     0.00     18.8      237
## 8669        4 27/11/2018      1.2      Yes      1.2     0.00      3.1      270
## 1255        6 22/01/2018    -14.3      Yes    -14.3     0.00      0.0     2000
## 8749       12 30/11/2018     -7.8      Yes     -7.8     1.70      6.6     1409
## 4335       14 30/05/2018     15.5      Yes     15.5     2.92     24.3     1211
## 5610       17 22/07/2018     18.5      Yes     18.5     1.82     37.6     1837
##      col 4060 col 4061 col 4062 col 4063 col 4064 col 4065 col 4066 col 4067
## 4035      Yes      1.5      237       48   Spring      1.5      Yes     18.8
## 8669      Yes      1.0      270       95   Autumn      1.0      Yes      3.1
## 1255      Yes      0.4     2000      165   Winter      0.4      Yes      0.0
## 8749      Yes      1.3     1409      720   Autumn      1.3      Yes      6.6
## 4335      Yes      2.9     1211     1119   Spring      2.9      Yes     24.3
## 5610      Yes      2.1     1837      965   Summer      2.1      Yes     37.6
##      col 4068 col 4069 col 4070 col 4071 col 4072 col 4073 col 4074 col 4075
## 4035        2      237     18.4        0     18.4        0        2       98
## 8669        4      270      1.2        0      1.2        0        4       88
## 1255        6     2000    -14.3        0    -14.3        0        6       33
## 8749       12     1409     -7.8        0     -7.8        0       12       35
## 4335       14     1211     15.5        0     15.5        0       14       58
## 5610       17     1837     18.5        0     18.5        0       17       33
##        col 4076 col 4077 col 4078 col 4079 col 4080 col 4081 col 4082
## 4035 18/05/2018      237       98      0.5     0.00   Spring       98
## 8669 27/11/2018      270       88      0.0     0.00   Autumn       88
## 1255 22/01/2018     2000       33      0.0     0.00   Winter       33
## 8749 30/11/2018     1409       35      0.0     1.70   Autumn       35
## 4335 30/05/2018     1211       58      0.0     2.92   Spring       58
## 5610 22/07/2018     1837       33      0.0     1.82   Summer       33
##        col 4083 col 4084 col 4085 col 4086 col 4087 col 4088 col 4089 col 4090
## 4035 No Holiday       98        2      237      0.5     18.8      Yes      1.5
## 8669 No Holiday       88        4      270      0.0      3.1      Yes      1.0
## 1255 No Holiday       33        6     2000      0.0      0.0      Yes      0.4
## 8749 No Holiday       35       12     1409      0.0      6.6      Yes      1.3
## 4335 No Holiday       58       14     1211      0.0     24.3      Yes      2.9
## 5610 No Holiday       33       17     1837      0.0     37.6      Yes      2.1
##      col 4091 col 4092 col 4093 col 4094   col 4095 col 4096 col 4097 col 4098
## 4035      237     0.00      1.5       48 18/05/2018     18.8      0.5      Yes
## 8669      270     0.00      1.0       95 27/11/2018      3.1      0.0      Yes
## 1255     2000     0.00      0.4      165 22/01/2018      0.0      0.0      Yes
## 8749     1409     1.70      1.3      720 30/11/2018      6.6      0.0      Yes
## 4335     1211     2.92      2.9     1119 30/05/2018     24.3      0.0      Yes
## 5610     1837     1.82      2.1      965 22/07/2018     37.6      0.0      Yes
##      col 4099 col 4100   col 4101 col 4102 col 4103   col 4104 col 4105
## 4035     18.8     18.4 No Holiday      Yes     18.8 18/05/2018     18.8
## 8669      3.1      1.2 No Holiday      Yes      3.1 27/11/2018      3.1
## 1255      0.0    -14.3 No Holiday      Yes      0.0 22/01/2018      0.0
## 8749      6.6     -7.8 No Holiday      Yes      6.6 30/11/2018      6.6
## 4335     24.3     15.5 No Holiday      Yes     24.3 30/05/2018     24.3
## 5610     37.6     18.5 No Holiday      Yes     37.6 22/07/2018     37.6
##      col 4106   col 4107   col 4108 col 4109 col 4110 col 4111 col 4112
## 4035        2 18/05/2018 18/05/2018      237      Yes     18.8     18.8
## 8669        4 27/11/2018 27/11/2018      270      Yes      3.1      3.1
## 1255        6 22/01/2018 22/01/2018     2000      Yes      0.0      0.0
## 8749       12 30/11/2018 30/11/2018     1409      Yes      6.6      6.6
## 4335       14 30/05/2018 30/05/2018     1211      Yes     24.3     24.3
## 5610       17 22/07/2018 22/07/2018     1837      Yes     37.6     37.6
##      col 4113   col 4114 col 4115 col 4116 col 4117 col 4118 col 4119
## 4035      Yes No Holiday   Spring       98      Yes      0.5      0.5
## 8669      Yes No Holiday   Autumn       88      Yes      0.0      0.0
## 1255      Yes No Holiday   Winter       33      Yes      0.0      0.0
## 8749      Yes No Holiday   Autumn       35      Yes      0.0      0.0
## 4335      Yes No Holiday   Spring       58      Yes      0.0      0.0
## 5610      Yes No Holiday   Summer       33      Yes      0.0      0.0
##        col 4120 col 4121 col 4122   col 4123   col 4124   col 4125 col 4126
## 4035 18/05/2018       48      237 18/05/2018 18/05/2018 18/05/2018       98
## 8669 27/11/2018       95      270 27/11/2018 27/11/2018 27/11/2018       88
## 1255 22/01/2018      165     2000 22/01/2018 22/01/2018 22/01/2018       33
## 8749 30/11/2018      720     1409 30/11/2018 30/11/2018 30/11/2018       35
## 4335 30/05/2018     1119     1211 30/05/2018 30/05/2018 30/05/2018       58
## 5610 22/07/2018      965     1837 22/07/2018 22/07/2018 22/07/2018       33
##      col 4127 col 4128 col 4129 col 4130 col 4131 col 4132 col 4133 col 4134
## 4035        2      Yes      0.5      1.5      237        2      Yes      1.5
## 8669        4      Yes      0.0      1.0      270        4      Yes      1.0
## 1255        6      Yes      0.0      0.4     2000        6      Yes      0.4
## 8749       12      Yes      0.0      1.3     1409       12      Yes      1.3
## 4335       14      Yes      0.0      2.9     1211       14      Yes      2.9
## 5610       17      Yes      0.0      2.1     1837       17      Yes      2.1
##      col 4135 col 4136 col 4137 col 4138 col 4139 col 4140 col 4141 col 4142
## 4035       48     18.8      1.5   Spring      1.5      1.5      Yes      1.5
## 8669       95      3.1      1.0   Autumn      1.0      1.0      Yes      1.0
## 1255      165      0.0      0.4   Winter      0.4      0.4      Yes      0.4
## 8749      720      6.6      1.3   Autumn      1.3      1.3      Yes      1.3
## 4335     1119     24.3      2.9   Spring      2.9      2.9      Yes      2.9
## 5610      965     37.6      2.1   Summer      2.1      2.1      Yes      2.1
##      col 4143 col 4144 col 4145 col 4146 col 4147 col 4148 col 4149 col 4150
## 4035   Spring     18.8      Yes      1.5        0        2   Spring      0.5
## 8669   Autumn      3.1      Yes      1.0        0        4   Autumn      0.0
## 1255   Winter      0.0      Yes      0.4        0        6   Winter      0.0
## 8749   Autumn      6.6      Yes      1.3        0       12   Autumn      0.0
## 4335   Spring     24.3      Yes      2.9        0       14   Spring      0.0
## 5610   Summer     37.6      Yes      2.1        0       17   Summer      0.0
##      col 4151 col 4152 col 4153 col 4154 col 4155 col 4156 col 4157 col 4158
## 4035       98        0     18.4        0      1.5        0       98      Yes
## 8669       88        0      1.2        0      1.0        0       88      Yes
## 1255       33        0    -14.3        0      0.4        0       33      Yes
## 8749       35        0     -7.8        0      1.3        0       35      Yes
## 4335       58        0     15.5        0      2.9        0       58      Yes
## 5610       33        0     18.5        0      2.1        0       33      Yes
##      col 4159 col 4160 col 4161 col 4162 col 4163 col 4164 col 4165 col 4166
## 4035     18.4      237     18.4     18.4     18.8     18.4        0       98
## 8669      1.2      270      1.2      1.2      3.1      1.2        0       88
## 1255    -14.3     2000    -14.3    -14.3      0.0    -14.3        0       33
## 8749     -7.8     1409     -7.8     -7.8      6.6     -7.8        0       35
## 4335     15.5     1211     15.5     15.5     24.3     15.5        0       58
## 5610     18.5     1837     18.5     18.5     37.6     18.5        0       33
##      col 4167 col 4168 col 4169 col 4170 col 4171   col 4172 col 4173
## 4035     0.00        2     0.00       48      0.5 No Holiday        2
## 8669     0.00        4     0.00       95      0.0 No Holiday        4
## 1255     0.00        6     0.00      165      0.0 No Holiday        6
## 8749     1.70       12     1.70      720      0.0 No Holiday       12
## 4335     2.92       14     2.92     1119      0.0 No Holiday       14
## 5610     1.82       17     1.82      965      0.0 No Holiday       17
##        col 4174 col 4175   col 4176 col 4177 col 4178 col 4179 col 4180
## 4035 No Holiday        0 No Holiday        2   Spring       98     18.4
## 8669 No Holiday        0 No Holiday        4   Autumn       88      1.2
## 1255 No Holiday        0 No Holiday        6   Winter       33    -14.3
## 8749 No Holiday        0 No Holiday       12   Autumn       35     -7.8
## 4335 No Holiday        0 No Holiday       14   Spring       58     15.5
## 5610 No Holiday        0 No Holiday       17   Summer       33     18.5
##      col 4181 col 4182 col 4183 col 4184   col 4185   col 4186 col 4187
## 4035   Spring        0       98      237 No Holiday 18/05/2018       98
## 8669   Autumn        0       88      270 No Holiday 27/11/2018       88
## 1255   Winter        0       33     2000 No Holiday 22/01/2018       33
## 8749   Autumn        0       35     1409 No Holiday 30/11/2018       35
## 4335   Spring        0       58     1211 No Holiday 30/05/2018       58
## 5610   Summer        0       33     1837 No Holiday 22/07/2018       33
##      col 4188 col 4189 col 4190 col 4191 col 4192 col 4193 col 4194 col 4195
## 4035     18.8   Spring      1.5     18.8     18.8      Yes   Spring       98
## 8669      3.1   Autumn      1.0      3.1      3.1      Yes   Autumn       88
## 1255      0.0   Winter      0.4      0.0      0.0      Yes   Winter       33
## 8749      6.6   Autumn      1.3      6.6      6.6      Yes   Autumn       35
## 4335     24.3   Spring      2.9     24.3     24.3      Yes   Spring       58
## 5610     37.6   Summer      2.1     37.6     37.6      Yes   Summer       33
##      col 4196 col 4197 col 4198 col 4199   col 4200 col 4201 col 4202 col 4203
## 4035       48        0        2       98 No Holiday      1.5      237     18.4
## 8669       95        0        4       88 No Holiday      1.0      270      1.2
## 1255      165        0        6       33 No Holiday      0.4     2000    -14.3
## 8749      720        0       12       35 No Holiday      1.3     1409     -7.8
## 4335     1119        0       14       58 No Holiday      2.9     1211     15.5
## 5610      965        0       17       33 No Holiday      2.1     1837     18.5
##        col 4204 col 4205 col 4206 col 4207 col 4208 col 4209 col 4210
## 4035 No Holiday      0.5     0.00   Spring     18.4      237       98
## 8669 No Holiday      0.0     0.00   Autumn      1.2      270       88
## 1255 No Holiday      0.0     0.00   Winter    -14.3     2000       33
## 8749 No Holiday      0.0     1.70   Autumn     -7.8     1409       35
## 4335 No Holiday      0.0     2.92   Spring     15.5     1211       58
## 5610 No Holiday      0.0     1.82   Summer     18.5     1837       33
##        col 4211 col 4212 col 4213 col 4214 col 4215 col 4216   col 4217
## 4035 No Holiday       48       48   Spring      0.5        0 No Holiday
## 8669 No Holiday       95       95   Autumn      0.0        0 No Holiday
## 1255 No Holiday      165      165   Winter      0.0        0 No Holiday
## 8749 No Holiday      720      720   Autumn      0.0        0 No Holiday
## 4335 No Holiday     1119     1119   Spring      0.0        0 No Holiday
## 5610 No Holiday      965      965   Summer      0.0        0 No Holiday
##      col 4218 col 4219 col 4220 col 4221 col 4222 col 4223 col 4224   col 4225
## 4035     18.4        0        2        0      0.5      237      0.5 No Holiday
## 8669      1.2        0        4        0      0.0      270      0.0 No Holiday
## 1255    -14.3        0        6        0      0.0     2000      0.0 No Holiday
## 8749     -7.8        0       12        0      0.0     1409      0.0 No Holiday
## 4335     15.5        0       14        0      0.0     1211      0.0 No Holiday
## 5610     18.5        0       17        0      0.0     1837      0.0 No Holiday
##        col 4226 col 4227 col 4228 col 4229 col 4230 col 4231 col 4232 col 4233
## 4035 No Holiday     0.00      Yes       98     0.00   Spring        2      Yes
## 8669 No Holiday     0.00      Yes       88     0.00   Autumn        4      Yes
## 1255 No Holiday     0.00      Yes       33     0.00   Winter        6      Yes
## 8749 No Holiday     1.70      Yes       35     1.70   Autumn       12      Yes
## 4335 No Holiday     2.92      Yes       58     2.92   Spring       14      Yes
## 5610 No Holiday     1.82      Yes       33     1.82   Summer       17      Yes
##      col 4234 col 4235 col 4236 col 4237 col 4238 col 4239 col 4240 col 4241
## 4035     18.8     0.00   Spring     0.00       48        0     0.00      237
## 8669      3.1     0.00   Autumn     0.00       95        0     0.00      270
## 1255      0.0     0.00   Winter     0.00      165        0     0.00     2000
## 8749      6.6     1.70   Autumn     1.70      720        0     1.70     1409
## 4335     24.3     2.92   Spring     2.92     1119        0     2.92     1211
## 5610     37.6     1.82   Summer     1.82      965        0     1.82     1837
##      col 4242 col 4243 col 4244 col 4245 col 4246 col 4247 col 4248 col 4249
## 4035      237      1.5     18.4      237      237      Yes       98        0
## 8669      270      1.0      1.2      270      270      Yes       88        0
## 1255     2000      0.4    -14.3     2000     2000      Yes       33        0
## 8749     1409      1.3     -7.8     1409     1409      Yes       35        0
## 4335     1211      2.9     15.5     1211     1211      Yes       58        0
## 5610     1837      2.1     18.5     1837     1837      Yes       33        0
##      col 4250 col 4251 col 4252 col 4253 col 4254 col 4255 col 4256 col 4257
## 4035     0.00     18.4      Yes     0.00     0.00      0.5        0       98
## 8669     0.00      1.2      Yes     0.00     0.00      0.0        0       88
## 1255     0.00    -14.3      Yes     0.00     0.00      0.0        0       33
## 8749     1.70     -7.8      Yes     1.70     1.70      0.0        0       35
## 4335     2.92     15.5      Yes     2.92     2.92      0.0        0       58
## 5610     1.82     18.5      Yes     1.82     1.82      0.0        0       33
##      col 4258 col 4259 col 4260 col 4261 col 4262 col 4263   col 4264 col 4265
## 4035   Spring   Spring        2      0.5        2     18.4 18/05/2018     0.00
## 8669   Autumn   Autumn        4      0.0        4      1.2 27/11/2018     0.00
## 1255   Winter   Winter        6      0.0        6    -14.3 22/01/2018     0.00
## 8749   Autumn   Autumn       12      0.0       12     -7.8 30/11/2018     1.70
## 4335   Spring   Spring       14      0.0       14     15.5 30/05/2018     2.92
## 5610   Summer   Summer       17      0.0       17     18.5 22/07/2018     1.82
##        col 4266 col 4267 col 4268 col 4269 col 4270 col 4271 col 4272 col 4273
## 4035 18/05/2018   Spring      Yes        2      237      Yes     18.8     18.8
## 8669 27/11/2018   Autumn      Yes        4      270      Yes      3.1      3.1
## 1255 22/01/2018   Winter      Yes        6     2000      Yes      0.0      0.0
## 8749 30/11/2018   Autumn      Yes       12     1409      Yes      6.6      6.6
## 4335 30/05/2018   Spring      Yes       14     1211      Yes     24.3     24.3
## 5610 22/07/2018   Summer      Yes       17     1837      Yes     37.6     37.6
##      col 4274 col 4275 col 4276 col 4277   col 4278 col 4279 col 4280 col 4281
## 4035     0.00   Spring        2        2 18/05/2018      237      1.5        2
## 8669     0.00   Autumn        4        4 27/11/2018      270      1.0        4
## 1255     0.00   Winter        6        6 22/01/2018     2000      0.4        6
## 8749     1.70   Autumn       12       12 30/11/2018     1409      1.3       12
## 4335     2.92   Spring       14       14 30/05/2018     1211      2.9       14
## 5610     1.82   Summer       17       17 22/07/2018     1837      2.1       17
##      col 4282 col 4283 col 4284 col 4285 col 4286 col 4287 col 4288 col 4289
## 4035      0.5     18.4      0.5        0      Yes       98        0   Spring
## 8669      0.0      1.2      0.0        0      Yes       88        0   Autumn
## 1255      0.0    -14.3      0.0        0      Yes       33        0   Winter
## 8749      0.0     -7.8      0.0        0      Yes       35        0   Autumn
## 4335      0.0     15.5      0.0        0      Yes       58        0   Spring
## 5610      0.0     18.5      0.0        0      Yes       33        0   Summer
##        col 4290 col 4291 col 4292 col 4293 col 4294 col 4295 col 4296 col 4297
## 4035 18/05/2018       98   Spring        2     18.4        2      237       98
## 8669 27/11/2018       88   Autumn        4      1.2        4      270       88
## 1255 22/01/2018       33   Winter        6    -14.3        6     2000       33
## 8749 30/11/2018       35   Autumn       12     -7.8       12     1409       35
## 4335 30/05/2018       58   Spring       14     15.5       14     1211       58
## 5610 22/07/2018       33   Summer       17     18.5       17     1837       33
##      col 4298 col 4299 col 4300 col 4301 col 4302 col 4303   col 4304 col 4305
## 4035        2     0.00     18.8      1.5        0      1.5 18/05/2018        0
## 8669        4     0.00      3.1      1.0        0      1.0 27/11/2018        0
## 1255        6     0.00      0.0      0.4        0      0.4 22/01/2018        0
## 8749       12     1.70      6.6      1.3        0      1.3 30/11/2018        0
## 4335       14     2.92     24.3      2.9        0      2.9 30/05/2018        0
## 5610       17     1.82     37.6      2.1        0      2.1 22/07/2018        0
##        col 4306   col 4307 col 4308 col 4309   col 4310 col 4311   col 4312
## 4035 No Holiday No Holiday      0.5      Yes 18/05/2018        2 18/05/2018
## 8669 No Holiday No Holiday      0.0      Yes 27/11/2018        4 27/11/2018
## 1255 No Holiday No Holiday      0.0      Yes 22/01/2018        6 22/01/2018
## 8749 No Holiday No Holiday      0.0      Yes 30/11/2018       12 30/11/2018
## 4335 No Holiday No Holiday      0.0      Yes 30/05/2018       14 30/05/2018
## 5610 No Holiday No Holiday      0.0      Yes 22/07/2018       17 22/07/2018
##      col 4313 col 4314 col 4315 col 4316   col 4317 col 4318 col 4319
## 4035      237      237       48      0.5 No Holiday       98      1.5
## 8669      270      270       95      0.0 No Holiday       88      1.0
## 1255     2000     2000      165      0.0 No Holiday       33      0.4
## 8749     1409     1409      720      0.0 No Holiday       35      1.3
## 4335     1211     1211     1119      0.0 No Holiday       58      2.9
## 5610     1837     1837      965      0.0 No Holiday       33      2.1
##        col 4320 col 4321 col 4322   col 4323 col 4324 col 4325 col 4326
## 4035 18/05/2018        0     0.00 No Holiday      1.5     18.8     0.00
## 8669 27/11/2018        0     0.00 No Holiday      1.0      3.1     0.00
## 1255 22/01/2018        0     0.00 No Holiday      0.4      0.0     0.00
## 8749 30/11/2018        0     1.70 No Holiday      1.3      6.6     1.70
## 4335 30/05/2018        0     2.92 No Holiday      2.9     24.3     2.92
## 5610 22/07/2018        0     1.82 No Holiday      2.1     37.6     1.82
##        col 4327 col 4328 col 4329 col 4330 col 4331 col 4332 col 4333 col 4334
## 4035 No Holiday   Spring     18.8        0      Yes        2     0.00     0.00
## 8669 No Holiday   Autumn      3.1        0      Yes        4     0.00     0.00
## 1255 No Holiday   Winter      0.0        0      Yes        6     0.00     0.00
## 8749 No Holiday   Autumn      6.6        0      Yes       12     1.70     1.70
## 4335 No Holiday   Spring     24.3        0      Yes       14     2.92     2.92
## 5610 No Holiday   Summer     37.6        0      Yes       17     1.82     1.82
##      col 4335 col 4336 col 4337 col 4338 col 4339 col 4340 col 4341   col 4342
## 4035       98     18.8     0.00        2     18.8      Yes        2 18/05/2018
## 8669       88      3.1     0.00        4      3.1      Yes        4 27/11/2018
## 1255       33      0.0     0.00        6      0.0      Yes        6 22/01/2018
## 8749       35      6.6     1.70       12      6.6      Yes       12 30/11/2018
## 4335       58     24.3     2.92       14     24.3      Yes       14 30/05/2018
## 5610       33     37.6     1.82       17     37.6      Yes       17 22/07/2018
##      col 4343 col 4344 col 4345 col 4346 col 4347 col 4348 col 4349   col 4350
## 4035       98       48       98      1.5        0      1.5       98 18/05/2018
## 8669       88       95       88      1.0        0      1.0       88 27/11/2018
## 1255       33      165       33      0.4        0      0.4       33 22/01/2018
## 8749       35      720       35      1.3        0      1.3       35 30/11/2018
## 4335       58     1119       58      2.9        0      2.9       58 30/05/2018
## 5610       33      965       33      2.1        0      2.1       33 22/07/2018
##      col 4351   col 4352 col 4353 col 4354 col 4355   col 4356 col 4357
## 4035      1.5 18/05/2018        2      1.5      Yes 18/05/2018   Spring
## 8669      1.0 27/11/2018        4      1.0      Yes 27/11/2018   Autumn
## 1255      0.4 22/01/2018        6      0.4      Yes 22/01/2018   Winter
## 8749      1.3 30/11/2018       12      1.3      Yes 30/11/2018   Autumn
## 4335      2.9 30/05/2018       14      2.9      Yes 30/05/2018   Spring
## 5610      2.1 22/07/2018       17      2.1      Yes 22/07/2018   Summer
##      col 4358 col 4359 col 4360 col 4361 col 4362 col 4363 col 4364   col 4365
## 4035        0     0.00       98     18.8     18.4   Spring     0.00 No Holiday
## 8669        0     0.00       88      3.1      1.2   Autumn     0.00 No Holiday
## 1255        0     0.00       33      0.0    -14.3   Winter     0.00 No Holiday
## 8749        0     1.70       35      6.6     -7.8   Autumn     1.70 No Holiday
## 4335        0     2.92       58     24.3     15.5   Spring     2.92 No Holiday
## 5610        0     1.82       33     37.6     18.5   Summer     1.82 No Holiday
##      col 4366 col 4367 col 4368   col 4369 col 4370   col 4371 col 4372
## 4035      Yes      Yes      Yes 18/05/2018       48 No Holiday     18.8
## 8669      Yes      Yes      Yes 27/11/2018       95 No Holiday      3.1
## 1255      Yes      Yes      Yes 22/01/2018      165 No Holiday      0.0
## 8749      Yes      Yes      Yes 30/11/2018      720 No Holiday      6.6
## 4335      Yes      Yes      Yes 30/05/2018     1119 No Holiday     24.3
## 5610      Yes      Yes      Yes 22/07/2018      965 No Holiday     37.6
##      col 4373 col 4374 col 4375 col 4376 col 4377 col 4378 col 4379   col 4380
## 4035        0       98       48     0.00       98     18.8        2 18/05/2018
## 8669        0       88       95     0.00       88      3.1        4 27/11/2018
## 1255        0       33      165     0.00       33      0.0        6 22/01/2018
## 8749        0       35      720     1.70       35      6.6       12 30/11/2018
## 4335        0       58     1119     2.92       58     24.3       14 30/05/2018
## 5610        0       33      965     1.82       33     37.6       17 22/07/2018
## 
## Subsample 5 :
##      col 1      col 2 col 3 col 4 col 5      col 6 col 7 col 8 col 9     col 10
## 2151    17 28/02/2018    80   Yes    80 No Holiday   2.5  0.13    14 No Holiday
## 7575  1187 12/10/2018    32   Yes    32 No Holiday  -0.2  2.43    14 No Holiday
## 5295   110   9/7/2018    89   Yes    89 No Holiday  18.3  0.27    14 No Holiday
## 6873  2329 13/09/2018    68   Yes    68 No Holiday  14.7  0.18     8 No Holiday
## 1705   197  10/2/2018    71   Yes    71 No Holiday  -3.1  0.00     0 No Holiday
## 2941   818   2/4/2018    50   Yes    50 No Holiday   9.9  1.82    12 No Holiday
##      col 11 col 12 col 13 col 14 col 15 col 16 col 17 col 18 col 19 col 20
## 2151   0.13    5.7      0    2.5 Winter    348 Winter Winter     80    348
## 7575   2.43   16.5      0   -0.2 Autumn   1841 Autumn Autumn     32   1841
## 5295   0.27   20.2      0   18.3 Summer   1854 Summer Summer     89   1854
## 6873   0.18   20.9      0   14.7 Autumn   2000 Autumn Autumn     68   2000
## 1705   0.00    1.5      0   -3.1 Winter    590 Winter Winter     71    590
## 2941   1.82   20.8      0    9.9 Spring   1240 Spring Spring     50   1240
##          col 21 col 22 col 23 col 24     col 25 col 26 col 27     col 28 col 29
## 2151 No Holiday   0.13    3.7     17 28/02/2018    348    0.0 28/02/2018    5.7
## 7575 No Holiday   2.43    1.4   1187 12/10/2018   1841    0.0 12/10/2018   16.5
## 5295 No Holiday   0.27    1.0    110   9/7/2018   1854    0.5   9/7/2018   20.2
## 6873 No Holiday   0.18    1.3   2329 13/09/2018   2000    0.0 13/09/2018   20.9
## 1705 No Holiday   0.00    1.1    197  10/2/2018    590    0.0  10/2/2018    1.5
## 2941 No Holiday   1.82    2.0    818   2/4/2018   1240    0.0   2/4/2018   20.8
##          col 30 col 31 col 32 col 33     col 34 col 35 col 36 col 37 col 38
## 2151 28/02/2018   0.13    5.7     17 No Holiday    5.7     14    0.0      0
## 7575 12/10/2018   2.43   16.5   1187 No Holiday   16.5     14    0.0      0
## 5295   9/7/2018   0.27   20.2    110 No Holiday   20.2     14    0.5      0
## 6873 13/09/2018   0.18   20.9   2329 No Holiday   20.9      8    0.0      0
## 1705  10/2/2018   0.00    1.5    197 No Holiday    1.5      0    0.0      0
## 2941   2/4/2018   1.82   20.8    818 No Holiday   20.8     12    0.0      0
##      col 39 col 40 col 41 col 42 col 43     col 44 col 45 col 46 col 47 col 48
## 2151    5.7     80    348      0      0 28/02/2018    Yes      0    348   0.13
## 7575   16.5     32   1841      0      0 12/10/2018    Yes      0   1841   2.43
## 5295   20.2     89   1854      0      0   9/7/2018    Yes      0   1854   0.27
## 6873   20.9     68   2000      0      0 13/09/2018    Yes      0   2000   0.18
## 1705    1.5     71    590      0      0  10/2/2018    Yes      0    590   0.00
## 2941   20.8     50   1240      0      0   2/4/2018    Yes      0   1240   1.82
##      col 49     col 50 col 51 col 52 col 53 col 54 col 55 col 56 col 57 col 58
## 2151     14 28/02/2018   0.13    5.7    3.7     17     14     80    2.5    Yes
## 7575     14 12/10/2018   2.43   16.5    1.4   1187     14     32   -0.2    Yes
## 5295     14   9/7/2018   0.27   20.2    1.0    110     14     89   18.3    Yes
## 6873      8 13/09/2018   0.18   20.9    1.3   2329      8     68   14.7    Yes
## 1705      0  10/2/2018   0.00    1.5    1.1    197      0     71   -3.1    Yes
## 2941     12   2/4/2018   1.82   20.8    2.0    818     12     50    9.9    Yes
##      col 59 col 60 col 61 col 62 col 63 col 64 col 65 col 66 col 67 col 68
## 2151    348     80    348     14     80    2.5    2.5     17    Yes    0.0
## 7575   1841     32   1841     14     32   -0.2   -0.2   1187    Yes    0.0
## 5295   1854     89   1854     14     89   18.3   18.3    110    Yes    0.5
## 6873   2000     68   2000      8     68   14.7   14.7   2329    Yes    0.0
## 1705    590     71    590      0     71   -3.1   -3.1    197    Yes    0.0
## 2941   1240     50   1240     12     50    9.9    9.9    818    Yes    0.0
##      col 69 col 70 col 71 col 72 col 73 col 74 col 75 col 76     col 77 col 78
## 2151     17   0.13     14     17    5.7   0.13    2.5     80 28/02/2018    2.5
## 7575   1187   2.43     14   1187   16.5   2.43   -0.2     32 12/10/2018   -0.2
## 5295    110   0.27     14    110   20.2   0.27   18.3     89   9/7/2018   18.3
## 6873   2329   0.18      8   2329   20.9   0.18   14.7     68 13/09/2018   14.7
## 1705    197   0.00      0    197    1.5   0.00   -3.1     71  10/2/2018   -3.1
## 2941    818   1.82     12    818   20.8   1.82    9.9     50   2/4/2018    9.9
##          col 79 col 80 col 81 col 82 col 83 col 84 col 85 col 86 col 87 col 88
## 2151 No Holiday     17     14    Yes    3.7 Winter     80    2.5     14    0.0
## 7575 No Holiday   1187     14    Yes    1.4 Autumn     32   -0.2     14    0.0
## 5295 No Holiday    110     14    Yes    1.0 Summer     89   18.3     14    0.5
## 6873 No Holiday   2329      8    Yes    1.3 Autumn     68   14.7      8    0.0
## 1705 No Holiday    197      0    Yes    1.1 Winter     71   -3.1      0    0.0
## 2941 No Holiday    818     12    Yes    2.0 Spring     50    9.9     12    0.0
##      col 89 col 90 col 91 col 92 col 93 col 94 col 95 col 96 col 97 col 98
## 2151 Winter    348   0.13    Yes Winter Winter Winter    2.5    2.5    5.7
## 7575 Autumn   1841   2.43    Yes Autumn Autumn Autumn   -0.2   -0.2   16.5
## 5295 Summer   1854   0.27    Yes Summer Summer Summer   18.3   18.3   20.2
## 6873 Autumn   2000   0.18    Yes Autumn Autumn Autumn   14.7   14.7   20.9
## 1705 Winter    590   0.00    Yes Winter Winter Winter   -3.1   -3.1    1.5
## 2941 Spring   1240   1.82    Yes Spring Spring Spring    9.9    9.9   20.8
##      col 99    col 100    col 101 col 102 col 103    col 104 col 105 col 106
## 2151     17 28/02/2018 28/02/2018      14     5.7 No Holiday      17     Yes
## 7575   1187 12/10/2018 12/10/2018      14    16.5 No Holiday    1187     Yes
## 5295    110   9/7/2018   9/7/2018      14    20.2 No Holiday     110     Yes
## 6873   2329 13/09/2018 13/09/2018       8    20.9 No Holiday    2329     Yes
## 1705    197  10/2/2018  10/2/2018       0     1.5 No Holiday     197     Yes
## 2941    818   2/4/2018   2/4/2018      12    20.8 No Holiday     818     Yes
##      col 107 col 108    col 109 col 110 col 111 col 112 col 113    col 114
## 2151     3.7      17 No Holiday     348     348  Winter      17 28/02/2018
## 7575     1.4    1187 No Holiday    1841    1841  Autumn    1187 12/10/2018
## 5295     1.0     110 No Holiday    1854    1854  Summer     110   9/7/2018
## 6873     1.3    2329 No Holiday    2000    2000  Autumn    2329 13/09/2018
## 1705     1.1     197 No Holiday     590     590  Winter     197  10/2/2018
## 2941     2.0     818 No Holiday    1240    1240  Spring     818   2/4/2018
##      col 115 col 116 col 117 col 118 col 119 col 120 col 121 col 122 col 123
## 2151     0.0     5.7     5.7       0    0.13    0.13     5.7     Yes     0.0
## 7575     0.0    16.5    16.5       0    2.43    2.43    16.5     Yes     0.0
## 5295     0.5    20.2    20.2       0    0.27    0.27    20.2     Yes     0.5
## 6873     0.0    20.9    20.9       0    0.18    0.18    20.9     Yes     0.0
## 1705     0.0     1.5     1.5       0    0.00    0.00     1.5     Yes     0.0
## 2941     0.0    20.8    20.8       0    1.82    1.82    20.8     Yes     0.0
##      col 124 col 125 col 126 col 127 col 128 col 129 col 130 col 131 col 132
## 2151     Yes     2.5     348      14      14     3.7    0.13      80  Winter
## 7575     Yes    -0.2    1841      14      14     1.4    2.43      32  Autumn
## 5295     Yes    18.3    1854      14      14     1.0    0.27      89  Summer
## 6873     Yes    14.7    2000       8       8     1.3    0.18      68  Autumn
## 1705     Yes    -3.1     590       0       0     1.1    0.00      71  Winter
## 2941     Yes     9.9    1240      12      12     2.0    1.82      50  Spring
##      col 133 col 134 col 135 col 136 col 137 col 138 col 139 col 140 col 141
## 2151     348       0      14     3.7     348    0.13       0    0.13     3.7
## 7575    1841       0      14     1.4    1841    2.43       0    2.43     1.4
## 5295    1854       0      14     1.0    1854    0.27       0    0.27     1.0
## 6873    2000       0       8     1.3    2000    0.18       0    0.18     1.3
## 1705     590       0       0     1.1     590    0.00       0    0.00     1.1
## 2941    1240       0      12     2.0    1240    1.82       0    1.82     2.0
##      col 142 col 143 col 144 col 145    col 146 col 147    col 148 col 149
## 2151  Winter     5.7     3.7     0.0 No Holiday      80 28/02/2018      17
## 7575  Autumn    16.5     1.4     0.0 No Holiday      32 12/10/2018    1187
## 5295  Summer    20.2     1.0     0.5 No Holiday      89   9/7/2018     110
## 6873  Autumn    20.9     1.3     0.0 No Holiday      68 13/09/2018    2329
## 1705  Winter     1.5     1.1     0.0 No Holiday      71  10/2/2018     197
## 2941  Spring    20.8     2.0     0.0 No Holiday      50   2/4/2018     818
##      col 150 col 151 col 152    col 153 col 154 col 155 col 156 col 157 col 158
## 2151      14     3.7     2.5 28/02/2018     2.5     Yes     348     3.7       0
## 7575      14     1.4    -0.2 12/10/2018    -0.2     Yes    1841     1.4       0
## 5295      14     1.0    18.3   9/7/2018    18.3     Yes    1854     1.0       0
## 6873       8     1.3    14.7 13/09/2018    14.7     Yes    2000     1.3       0
## 1705       0     1.1    -3.1  10/2/2018    -3.1     Yes     590     1.1       0
## 2941      12     2.0     9.9   2/4/2018     9.9     Yes    1240     2.0       0
##      col 159 col 160    col 161 col 162 col 163 col 164 col 165 col 166
## 2151       0      17 28/02/2018       0     5.7  Winter     348     348
## 7575       0    1187 12/10/2018       0    16.5  Autumn    1841    1841
## 5295       0     110   9/7/2018       0    20.2  Summer    1854    1854
## 6873       0    2329 13/09/2018       0    20.9  Autumn    2000    2000
## 1705       0     197  10/2/2018       0     1.5  Winter     590     590
## 2941       0     818   2/4/2018       0    20.8  Spring    1240    1240
##         col 167 col 168 col 169 col 170 col 171 col 172 col 173 col 174 col 175
## 2151 28/02/2018  Winter      17    0.13     2.5      14    0.13    0.13     3.7
## 7575 12/10/2018  Autumn    1187    2.43    -0.2      14    2.43    2.43     1.4
## 5295   9/7/2018  Summer     110    0.27    18.3      14    0.27    0.27     1.0
## 6873 13/09/2018  Autumn    2329    0.18    14.7       8    0.18    0.18     1.3
## 1705  10/2/2018  Winter     197    0.00    -3.1       0    0.00    0.00     1.1
## 2941   2/4/2018  Spring     818    1.82     9.9      12    1.82    1.82     2.0
##      col 176 col 177    col 178 col 179 col 180 col 181 col 182 col 183 col 184
## 2151       0     5.7 No Holiday     Yes  Winter     5.7      14     5.7  Winter
## 7575       0    16.5 No Holiday     Yes  Autumn    16.5      14    16.5  Autumn
## 5295       0    20.2 No Holiday     Yes  Summer    20.2      14    20.2  Summer
## 6873       0    20.9 No Holiday     Yes  Autumn    20.9       8    20.9  Autumn
## 1705       0     1.5 No Holiday     Yes  Winter     1.5       0     1.5  Winter
## 2941       0    20.8 No Holiday     Yes  Spring    20.8      12    20.8  Spring
##      col 185 col 186 col 187 col 188 col 189 col 190 col 191 col 192 col 193
## 2151      14     2.5    0.13     2.5     0.0      80     5.7     348      14
## 7575      14    -0.2    2.43    -0.2     0.0      32    16.5    1841      14
## 5295      14    18.3    0.27    18.3     0.5      89    20.2    1854      14
## 6873       8    14.7    0.18    14.7     0.0      68    20.9    2000       8
## 1705       0    -3.1    0.00    -3.1     0.0      71     1.5     590       0
## 2941      12     9.9    1.82     9.9     0.0      50    20.8    1240      12
##         col 194 col 195 col 196 col 197    col 198 col 199 col 200 col 201
## 2151 No Holiday  Winter    0.13     0.0 28/02/2018      80     5.7  Winter
## 7575 No Holiday  Autumn    2.43     0.0 12/10/2018      32    16.5  Autumn
## 5295 No Holiday  Summer    0.27     0.5   9/7/2018      89    20.2  Summer
## 6873 No Holiday  Autumn    0.18     0.0 13/09/2018      68    20.9  Autumn
## 1705 No Holiday  Winter    0.00     0.0  10/2/2018      71     1.5  Winter
## 2941 No Holiday  Spring    1.82     0.0   2/4/2018      50    20.8  Spring
##      col 202 col 203 col 204 col 205 col 206 col 207 col 208 col 209 col 210
## 2151     348  Winter  Winter    0.13     3.7       0     348  Winter     348
## 7575    1841  Autumn  Autumn    2.43     1.4       0    1841  Autumn    1841
## 5295    1854  Summer  Summer    0.27     1.0       0    1854  Summer    1854
## 6873    2000  Autumn  Autumn    0.18     1.3       0    2000  Autumn    2000
## 1705     590  Winter  Winter    0.00     1.1       0     590  Winter     590
## 2941    1240  Spring  Spring    1.82     2.0       0    1240  Spring    1240
##      col 211 col 212 col 213 col 214    col 215 col 216 col 217 col 218
## 2151     3.7      14     0.0     5.7 28/02/2018      14     348    0.13
## 7575     1.4      14     0.0    16.5 12/10/2018      14    1841    2.43
## 5295     1.0      14     0.5    20.2   9/7/2018      14    1854    0.27
## 6873     1.3       8     0.0    20.9 13/09/2018       8    2000    0.18
## 1705     1.1       0     0.0     1.5  10/2/2018       0     590    0.00
## 2941     2.0      12     0.0    20.8   2/4/2018      12    1240    1.82
##         col 219 col 220 col 221 col 222 col 223 col 224 col 225 col 226 col 227
## 2151 28/02/2018     5.7     5.7    0.13      14     0.0     3.7    0.13    0.13
## 7575 12/10/2018    16.5    16.5    2.43      14     0.0     1.4    2.43    2.43
## 5295   9/7/2018    20.2    20.2    0.27      14     0.5     1.0    0.27    0.27
## 6873 13/09/2018    20.9    20.9    0.18       8     0.0     1.3    0.18    0.18
## 1705  10/2/2018     1.5     1.5    0.00       0     0.0     1.1    0.00    0.00
## 2941   2/4/2018    20.8    20.8    1.82      12     0.0     2.0    1.82    1.82
##      col 228    col 229    col 230 col 231 col 232 col 233    col 234 col 235
## 2151     0.0 No Holiday No Holiday     0.0     2.5     0.0 No Holiday     2.5
## 7575     0.0 No Holiday No Holiday     0.0    -0.2     0.0 No Holiday    -0.2
## 5295     0.5 No Holiday No Holiday     0.5    18.3     0.5 No Holiday    18.3
## 6873     0.0 No Holiday No Holiday     0.0    14.7     0.0 No Holiday    14.7
## 1705     0.0 No Holiday No Holiday     0.0    -3.1     0.0 No Holiday    -3.1
## 2941     0.0 No Holiday No Holiday     0.0     9.9     0.0 No Holiday     9.9
##      col 236 col 237 col 238 col 239 col 240 col 241 col 242    col 243 col 244
## 2151      80      14     2.5     3.7      14    0.13     348 No Holiday    0.13
## 7575      32      14    -0.2     1.4      14    2.43    1841 No Holiday    2.43
## 5295      89      14    18.3     1.0      14    0.27    1854 No Holiday    0.27
## 6873      68       8    14.7     1.3       8    0.18    2000 No Holiday    0.18
## 1705      71       0    -3.1     1.1       0    0.00     590 No Holiday    0.00
## 2941      50      12     9.9     2.0      12    1.82    1240 No Holiday    1.82
##      col 245 col 246    col 247    col 248 col 249 col 250 col 251 col 252
## 2151       0     3.7 No Holiday No Holiday     2.5     5.7      14     2.5
## 7575       0     1.4 No Holiday No Holiday    -0.2    16.5      14    -0.2
## 5295       0     1.0 No Holiday No Holiday    18.3    20.2      14    18.3
## 6873       0     1.3 No Holiday No Holiday    14.7    20.9       8    14.7
## 1705       0     1.1 No Holiday No Holiday    -3.1     1.5       0    -3.1
## 2941       0     2.0 No Holiday No Holiday     9.9    20.8      12     9.9
##      col 253 col 254 col 255 col 256 col 257 col 258 col 259    col 260 col 261
## 2151       0     2.5      80    0.13       0     348     0.0 No Holiday     3.7
## 7575       0    -0.2      32    2.43       0    1841     0.0 No Holiday     1.4
## 5295       0    18.3      89    0.27       0    1854     0.5 No Holiday     1.0
## 6873       0    14.7      68    0.18       0    2000     0.0 No Holiday     1.3
## 1705       0    -3.1      71    0.00       0     590     0.0 No Holiday     1.1
## 2941       0     9.9      50    1.82       0    1240     0.0 No Holiday     2.0
##      col 262 col 263 col 264 col 265 col 266    col 267 col 268 col 269 col 270
## 2151      17      14     2.5      14     0.0 28/02/2018     0.0  Winter     0.0
## 7575    1187      14    -0.2      14     0.0 12/10/2018     0.0  Autumn     0.0
## 5295     110      14    18.3      14     0.5   9/7/2018     0.5  Summer     0.5
## 6873    2329       8    14.7       8     0.0 13/09/2018     0.0  Autumn     0.0
## 1705     197       0    -3.1       0     0.0  10/2/2018     0.0  Winter     0.0
## 2941     818      12     9.9      12     0.0   2/4/2018     0.0  Spring     0.0
##      col 271 col 272 col 273 col 274 col 275 col 276 col 277 col 278 col 279
## 2151     5.7     3.7      17     Yes      80    0.13      14     3.7  Winter
## 7575    16.5     1.4    1187     Yes      32    2.43      14     1.4  Autumn
## 5295    20.2     1.0     110     Yes      89    0.27      14     1.0  Summer
## 6873    20.9     1.3    2329     Yes      68    0.18       8     1.3  Autumn
## 1705     1.5     1.1     197     Yes      71    0.00       0     1.1  Winter
## 2941    20.8     2.0     818     Yes      50    1.82      12     2.0  Spring
##      col 280    col 281 col 282    col 283 col 284 col 285 col 286 col 287
## 2151       0 28/02/2018     3.7 No Holiday  Winter     0.0      14     2.5
## 7575       0 12/10/2018     1.4 No Holiday  Autumn     0.0      14    -0.2
## 5295       0   9/7/2018     1.0 No Holiday  Summer     0.5      14    18.3
## 6873       0 13/09/2018     1.3 No Holiday  Autumn     0.0       8    14.7
## 1705       0  10/2/2018     1.1 No Holiday  Winter     0.0       0    -3.1
## 2941       0   2/4/2018     2.0 No Holiday  Spring     0.0      12     9.9
##      col 288 col 289 col 290 col 291 col 292 col 293 col 294    col 295 col 296
## 2151     5.7      80      14      17     3.7       0    0.13 28/02/2018     0.0
## 7575    16.5      32      14    1187     1.4       0    2.43 12/10/2018     0.0
## 5295    20.2      89      14     110     1.0       0    0.27   9/7/2018     0.5
## 6873    20.9      68       8    2329     1.3       0    0.18 13/09/2018     0.0
## 1705     1.5      71       0     197     1.1       0    0.00  10/2/2018     0.0
## 2941    20.8      50      12     818     2.0       0    1.82   2/4/2018     0.0
##      col 297 col 298 col 299 col 300 col 301 col 302 col 303 col 304 col 305
## 2151     348      80  Winter      80      17     348    0.13      17    0.13
## 7575    1841      32  Autumn      32    1187    1841    2.43    1187    2.43
## 5295    1854      89  Summer      89     110    1854    0.27     110    0.27
## 6873    2000      68  Autumn      68    2329    2000    0.18    2329    0.18
## 1705     590      71  Winter      71     197     590    0.00     197    0.00
## 2941    1240      50  Spring      50     818    1240    1.82     818    1.82
##      col 306 col 307 col 308 col 309 col 310 col 311 col 312    col 313
## 2151     2.5      17       0     348       0     5.7  Winter 28/02/2018
## 7575    -0.2    1187       0    1841       0    16.5  Autumn 12/10/2018
## 5295    18.3     110       0    1854       0    20.2  Summer   9/7/2018
## 6873    14.7    2329       0    2000       0    20.9  Autumn 13/09/2018
## 1705    -3.1     197       0     590       0     1.5  Winter  10/2/2018
## 2941     9.9     818       0    1240       0    20.8  Spring   2/4/2018
##         col 314 col 315 col 316    col 317 col 318    col 319 col 320 col 321
## 2151 No Holiday       0      14 28/02/2018     5.7 No Holiday      17      14
## 7575 No Holiday       0      14 12/10/2018    16.5 No Holiday    1187      14
## 5295 No Holiday       0      14   9/7/2018    20.2 No Holiday     110      14
## 6873 No Holiday       0       8 13/09/2018    20.9 No Holiday    2329       8
## 1705 No Holiday       0       0  10/2/2018     1.5 No Holiday     197       0
## 2941 No Holiday       0      12   2/4/2018    20.8 No Holiday     818      12
##         col 322 col 323 col 324 col 325    col 326 col 327 col 328 col 329
## 2151 No Holiday    0.13     2.5  Winter 28/02/2018     0.0     3.7    0.13
## 7575 No Holiday    2.43    -0.2  Autumn 12/10/2018     0.0     1.4    2.43
## 5295 No Holiday    0.27    18.3  Summer   9/7/2018     0.5     1.0    0.27
## 6873 No Holiday    0.18    14.7  Autumn 13/09/2018     0.0     1.3    0.18
## 1705 No Holiday    0.00    -3.1  Winter  10/2/2018     0.0     1.1    0.00
## 2941 No Holiday    1.82     9.9  Spring   2/4/2018     0.0     2.0    1.82
##      col 330 col 331 col 332 col 333 col 334 col 335 col 336 col 337 col 338
## 2151       0     3.7     3.7  Winter     Yes  Winter  Winter     0.0  Winter
## 7575       0     1.4     1.4  Autumn     Yes  Autumn  Autumn     0.0  Autumn
## 5295       0     1.0     1.0  Summer     Yes  Summer  Summer     0.5  Summer
## 6873       0     1.3     1.3  Autumn     Yes  Autumn  Autumn     0.0  Autumn
## 1705       0     1.1     1.1  Winter     Yes  Winter  Winter     0.0  Winter
## 2941       0     2.0     2.0  Spring     Yes  Spring  Spring     0.0  Spring
##      col 339 col 340 col 341 col 342 col 343 col 344 col 345 col 346 col 347
## 2151     5.7     Yes     348    0.13      17       0      17      14       0
## 7575    16.5     Yes    1841    2.43    1187       0    1187      14       0
## 5295    20.2     Yes    1854    0.27     110       0     110      14       0
## 6873    20.9     Yes    2000    0.18    2329       0    2329       8       0
## 1705     1.5     Yes     590    0.00     197       0     197       0       0
## 2941    20.8     Yes    1240    1.82     818       0     818      12       0
##      col 348 col 349 col 350 col 351 col 352 col 353 col 354 col 355 col 356
## 2151     2.5      14       0      80    0.13       0       0       0     5.7
## 7575    -0.2      14       0      32    2.43       0       0       0    16.5
## 5295    18.3      14       0      89    0.27       0       0       0    20.2
## 6873    14.7       8       0      68    0.18       0       0       0    20.9
## 1705    -3.1       0       0      71    0.00       0       0       0     1.5
## 2941     9.9      12       0      50    1.82       0       0       0    20.8
##      col 357    col 358 col 359 col 360 col 361 col 362 col 363 col 364 col 365
## 2151     348 28/02/2018     3.7    0.13      17      17     Yes      17     0.0
## 7575    1841 12/10/2018     1.4    2.43    1187    1187     Yes    1187     0.0
## 5295    1854   9/7/2018     1.0    0.27     110     110     Yes     110     0.5
## 6873    2000 13/09/2018     1.3    0.18    2329    2329     Yes    2329     0.0
## 1705     590  10/2/2018     1.1    0.00     197     197     Yes     197     0.0
## 2941    1240   2/4/2018     2.0    1.82     818     818     Yes     818     0.0
##      col 366 col 367    col 368 col 369 col 370 col 371 col 372 col 373
## 2151     0.0      14 No Holiday       0     0.0     5.7     2.5     5.7
## 7575     0.0      14 No Holiday       0     0.0    16.5    -0.2    16.5
## 5295     0.5      14 No Holiday       0     0.5    20.2    18.3    20.2
## 6873     0.0       8 No Holiday       0     0.0    20.9    14.7    20.9
## 1705     0.0       0 No Holiday       0     0.0     1.5    -3.1     1.5
## 2941     0.0      12 No Holiday       0     0.0    20.8     9.9    20.8
##         col 374 col 375 col 376 col 377 col 378 col 379 col 380 col 381 col 382
## 2151 28/02/2018     2.5      17  Winter      17     2.5      14       0    0.13
## 7575 12/10/2018    -0.2    1187  Autumn    1187    -0.2      14       0    2.43
## 5295   9/7/2018    18.3     110  Summer     110    18.3      14       0    0.27
## 6873 13/09/2018    14.7    2329  Autumn    2329    14.7       8       0    0.18
## 1705  10/2/2018    -3.1     197  Winter     197    -3.1       0       0    0.00
## 2941   2/4/2018     9.9     818  Spring     818     9.9      12       0    1.82
##      col 383 col 384 col 385    col 386 col 387 col 388 col 389 col 390 col 391
## 2151     2.5     Yes     5.7 28/02/2018     2.5     5.7     0.0    0.13      80
## 7575    -0.2     Yes    16.5 12/10/2018    -0.2    16.5     0.0    2.43      32
## 5295    18.3     Yes    20.2   9/7/2018    18.3    20.2     0.5    0.27      89
## 6873    14.7     Yes    20.9 13/09/2018    14.7    20.9     0.0    0.18      68
## 1705    -3.1     Yes     1.5  10/2/2018    -3.1     1.5     0.0    0.00      71
## 2941     9.9     Yes    20.8   2/4/2018     9.9    20.8     0.0    1.82      50
##      col 392 col 393 col 394 col 395 col 396 col 397 col 398 col 399 col 400
## 2151     Yes      14     348     3.7     3.7     0.0    0.13     5.7    0.13
## 7575     Yes      14    1841     1.4     1.4     0.0    2.43    16.5    2.43
## 5295     Yes      14    1854     1.0     1.0     0.5    0.27    20.2    0.27
## 6873     Yes       8    2000     1.3     1.3     0.0    0.18    20.9    0.18
## 1705     Yes       0     590     1.1     1.1     0.0    0.00     1.5    0.00
## 2941     Yes      12    1240     2.0     2.0     0.0    1.82    20.8    1.82
##      col 401    col 402 col 403 col 404 col 405    col 406    col 407 col 408
## 2151      14 28/02/2018     Yes     5.7     3.7 No Holiday 28/02/2018     0.0
## 7575      14 12/10/2018     Yes    16.5     1.4 No Holiday 12/10/2018     0.0
## 5295      14   9/7/2018     Yes    20.2     1.0 No Holiday   9/7/2018     0.5
## 6873       8 13/09/2018     Yes    20.9     1.3 No Holiday 13/09/2018     0.0
## 1705       0  10/2/2018     Yes     1.5     1.1 No Holiday  10/2/2018     0.0
## 2941      12   2/4/2018     Yes    20.8     2.0 No Holiday   2/4/2018     0.0
##      col 409 col 410 col 411    col 412 col 413 col 414 col 415 col 416 col 417
## 2151      17      17      14 No Holiday     3.7      80       0     2.5     3.7
## 7575    1187    1187      14 No Holiday     1.4      32       0    -0.2     1.4
## 5295     110     110      14 No Holiday     1.0      89       0    18.3     1.0
## 6873    2329    2329       8 No Holiday     1.3      68       0    14.7     1.3
## 1705     197     197       0 No Holiday     1.1      71       0    -3.1     1.1
## 2941     818     818      12 No Holiday     2.0      50       0     9.9     2.0
##      col 418 col 419 col 420 col 421 col 422 col 423 col 424 col 425 col 426
## 2151     348      80    0.13    0.13     3.7     348     3.7      80    0.13
## 7575    1841      32    2.43    2.43     1.4    1841     1.4      32    2.43
## 5295    1854      89    0.27    0.27     1.0    1854     1.0      89    0.27
## 6873    2000      68    0.18    0.18     1.3    2000     1.3      68    0.18
## 1705     590      71    0.00    0.00     1.1     590     1.1      71    0.00
## 2941    1240      50    1.82    1.82     2.0    1240     2.0      50    1.82
##      col 427 col 428    col 429 col 430 col 431 col 432 col 433 col 434 col 435
## 2151     348    0.13 No Holiday     2.5      14     2.5       0  Winter      17
## 7575    1841    2.43 No Holiday    -0.2      14    -0.2       0  Autumn    1187
## 5295    1854    0.27 No Holiday    18.3      14    18.3       0  Summer     110
## 6873    2000    0.18 No Holiday    14.7       8    14.7       0  Autumn    2329
## 1705     590    0.00 No Holiday    -3.1       0    -3.1       0  Winter     197
## 2941    1240    1.82 No Holiday     9.9      12     9.9       0  Spring     818
##      col 436    col 437    col 438 col 439 col 440 col 441 col 442    col 443
## 2151     5.7 28/02/2018 No Holiday     348  Winter     3.7       0 28/02/2018
## 7575    16.5 12/10/2018 No Holiday    1841  Autumn     1.4       0 12/10/2018
## 5295    20.2   9/7/2018 No Holiday    1854  Summer     1.0       0   9/7/2018
## 6873    20.9 13/09/2018 No Holiday    2000  Autumn     1.3       0 13/09/2018
## 1705     1.5  10/2/2018 No Holiday     590  Winter     1.1       0  10/2/2018
## 2941    20.8   2/4/2018 No Holiday    1240  Spring     2.0       0   2/4/2018
##      col 444    col 445 col 446 col 447 col 448 col 449 col 450 col 451
## 2151      80 No Holiday     2.5     5.7     348  Winter       0     2.5
## 7575      32 No Holiday    -0.2    16.5    1841  Autumn       0    -0.2
## 5295      89 No Holiday    18.3    20.2    1854  Summer       0    18.3
## 6873      68 No Holiday    14.7    20.9    2000  Autumn       0    14.7
## 1705      71 No Holiday    -3.1     1.5     590  Winter       0    -3.1
## 2941      50 No Holiday     9.9    20.8    1240  Spring       0     9.9
##         col 452 col 453 col 454 col 455 col 456 col 457 col 458 col 459 col 460
## 2151 28/02/2018       0      14     Yes      14      80     3.7      14      17
## 7575 12/10/2018       0      14     Yes      14      32     1.4      14    1187
## 5295   9/7/2018       0      14     Yes      14      89     1.0      14     110
## 6873 13/09/2018       0       8     Yes       8      68     1.3       8    2329
## 1705  10/2/2018       0       0     Yes       0      71     1.1       0     197
## 2941   2/4/2018       0      12     Yes      12      50     2.0      12     818
##      col 461 col 462 col 463    col 464 col 465 col 466    col 467 col 468
## 2151      14     2.5      80 No Holiday     5.7     Yes No Holiday     3.7
## 7575      14    -0.2      32 No Holiday    16.5     Yes No Holiday     1.4
## 5295      14    18.3      89 No Holiday    20.2     Yes No Holiday     1.0
## 6873       8    14.7      68 No Holiday    20.9     Yes No Holiday     1.3
## 1705       0    -3.1      71 No Holiday     1.5     Yes No Holiday     1.1
## 2941      12     9.9      50 No Holiday    20.8     Yes No Holiday     2.0
##      col 469 col 470 col 471 col 472 col 473    col 474 col 475 col 476 col 477
## 2151     0.0     3.7      80     0.0    0.13 28/02/2018     3.7       0      14
## 7575     0.0     1.4      32     0.0    2.43 12/10/2018     1.4       0      14
## 5295     0.5     1.0      89     0.5    0.27   9/7/2018     1.0       0      14
## 6873     0.0     1.3      68     0.0    0.18 13/09/2018     1.3       0       8
## 1705     0.0     1.1      71     0.0    0.00  10/2/2018     1.1       0       0
## 2941     0.0     2.0      50     0.0    1.82   2/4/2018     2.0       0      12
##      col 478 col 479 col 480 col 481 col 482 col 483 col 484 col 485 col 486
## 2151     0.0     0.0     0.0       0     348     3.7     5.7      17    0.13
## 7575     0.0     0.0     0.0       0    1841     1.4    16.5    1187    2.43
## 5295     0.5     0.5     0.5       0    1854     1.0    20.2     110    0.27
## 6873     0.0     0.0     0.0       0    2000     1.3    20.9    2329    0.18
## 1705     0.0     0.0     0.0       0     590     1.1     1.5     197    0.00
## 2941     0.0     0.0     0.0       0    1240     2.0    20.8     818    1.82
##         col 487 col 488 col 489 col 490 col 491 col 492 col 493 col 494 col 495
## 2151 No Holiday      80     5.7     348      80     2.5     5.7      14    0.13
## 7575 No Holiday      32    16.5    1841      32    -0.2    16.5      14    2.43
## 5295 No Holiday      89    20.2    1854      89    18.3    20.2      14    0.27
## 6873 No Holiday      68    20.9    2000      68    14.7    20.9       8    0.18
## 1705 No Holiday      71     1.5     590      71    -3.1     1.5       0    0.00
## 2941 No Holiday      50    20.8    1240      50     9.9    20.8      12    1.82
##      col 496 col 497 col 498 col 499 col 500    col 501 col 502 col 503 col 504
## 2151  Winter      17       0      17     0.0 28/02/2018      80       0     0.0
## 7575  Autumn    1187       0    1187     0.0 12/10/2018      32       0     0.0
## 5295  Summer     110       0     110     0.5   9/7/2018      89       0     0.5
## 6873  Autumn    2329       0    2329     0.0 13/09/2018      68       0     0.0
## 1705  Winter     197       0     197     0.0  10/2/2018      71       0     0.0
## 2941  Spring     818       0     818     0.0   2/4/2018      50       0     0.0
##      col 505 col 506 col 507    col 508 col 509    col 510 col 511 col 512
## 2151  Winter     Yes  Winter 28/02/2018  Winter 28/02/2018      17      14
## 7575  Autumn     Yes  Autumn 12/10/2018  Autumn 12/10/2018    1187      14
## 5295  Summer     Yes  Summer   9/7/2018  Summer   9/7/2018     110      14
## 6873  Autumn     Yes  Autumn 13/09/2018  Autumn 13/09/2018    2329       8
## 1705  Winter     Yes  Winter  10/2/2018  Winter  10/2/2018     197       0
## 2941  Spring     Yes  Spring   2/4/2018  Spring   2/4/2018     818      12
##      col 513 col 514 col 515 col 516 col 517 col 518 col 519 col 520 col 521
## 2151     348     348      14     0.0    0.13     5.7      80     0.0      17
## 7575    1841    1841      14     0.0    2.43    16.5      32     0.0    1187
## 5295    1854    1854      14     0.5    0.27    20.2      89     0.5     110
## 6873    2000    2000       8     0.0    0.18    20.9      68     0.0    2329
## 1705     590     590       0     0.0    0.00     1.5      71     0.0     197
## 2941    1240    1240      12     0.0    1.82    20.8      50     0.0     818
##      col 522 col 523 col 524 col 525 col 526 col 527 col 528 col 529    col 530
## 2151     2.5     3.7     0.0     2.5     Yes     0.0     0.0     0.0 No Holiday
## 7575    -0.2     1.4     0.0    -0.2     Yes     0.0     0.0     0.0 No Holiday
## 5295    18.3     1.0     0.5    18.3     Yes     0.5     0.5     0.5 No Holiday
## 6873    14.7     1.3     0.0    14.7     Yes     0.0     0.0     0.0 No Holiday
## 1705    -3.1     1.1     0.0    -3.1     Yes     0.0     0.0     0.0 No Holiday
## 2941     9.9     2.0     0.0     9.9     Yes     0.0     0.0     0.0 No Holiday
##      col 531 col 532 col 533 col 534 col 535 col 536 col 537 col 538 col 539
## 2151     3.7     348     0.0     0.0  Winter      80      14    0.13      80
## 7575     1.4    1841     0.0     0.0  Autumn      32      14    2.43      32
## 5295     1.0    1854     0.5     0.5  Summer      89      14    0.27      89
## 6873     1.3    2000     0.0     0.0  Autumn      68       8    0.18      68
## 1705     1.1     590     0.0     0.0  Winter      71       0    0.00      71
## 2941     2.0    1240     0.0     0.0  Spring      50      12    1.82      50
##      col 540 col 541    col 542    col 543 col 544 col 545 col 546 col 547
## 2151     2.5       0 28/02/2018 No Holiday     2.5      14     Yes  Winter
## 7575    -0.2       0 12/10/2018 No Holiday    -0.2      14     Yes  Autumn
## 5295    18.3       0   9/7/2018 No Holiday    18.3      14     Yes  Summer
## 6873    14.7       0 13/09/2018 No Holiday    14.7       8     Yes  Autumn
## 1705    -3.1       0  10/2/2018 No Holiday    -3.1       0     Yes  Winter
## 2941     9.9       0   2/4/2018 No Holiday     9.9      12     Yes  Spring
##         col 548 col 549 col 550    col 551 col 552 col 553 col 554 col 555
## 2151 28/02/2018     2.5     Yes No Holiday    0.13      80     2.5       0
## 7575 12/10/2018    -0.2     Yes No Holiday    2.43      32    -0.2       0
## 5295   9/7/2018    18.3     Yes No Holiday    0.27      89    18.3       0
## 6873 13/09/2018    14.7     Yes No Holiday    0.18      68    14.7       0
## 1705  10/2/2018    -3.1     Yes No Holiday    0.00      71    -3.1       0
## 2941   2/4/2018     9.9     Yes No Holiday    1.82      50     9.9       0
##      col 556    col 557 col 558 col 559 col 560 col 561 col 562 col 563
## 2151      17 28/02/2018    0.13     348      17  Winter     2.5    0.13
## 7575    1187 12/10/2018    2.43    1841    1187  Autumn    -0.2    2.43
## 5295     110   9/7/2018    0.27    1854     110  Summer    18.3    0.27
## 6873    2329 13/09/2018    0.18    2000    2329  Autumn    14.7    0.18
## 1705     197  10/2/2018    0.00     590     197  Winter    -3.1    0.00
## 2941     818   2/4/2018    1.82    1240     818  Spring     9.9    1.82
##         col 564 col 565 col 566 col 567 col 568 col 569 col 570 col 571 col 572
## 2151 28/02/2018     2.5     Yes  Winter      14     Yes     Yes     3.7     2.5
## 7575 12/10/2018    -0.2     Yes  Autumn      14     Yes     Yes     1.4    -0.2
## 5295   9/7/2018    18.3     Yes  Summer      14     Yes     Yes     1.0    18.3
## 6873 13/09/2018    14.7     Yes  Autumn       8     Yes     Yes     1.3    14.7
## 1705  10/2/2018    -3.1     Yes  Winter       0     Yes     Yes     1.1    -3.1
## 2941   2/4/2018     9.9     Yes  Spring      12     Yes     Yes     2.0     9.9
##      col 573 col 574 col 575 col 576 col 577    col 578 col 579    col 580
## 2151     3.7       0     3.7      14      14 28/02/2018     5.7 28/02/2018
## 7575     1.4       0     1.4      14      14 12/10/2018    16.5 12/10/2018
## 5295     1.0       0     1.0      14      14   9/7/2018    20.2   9/7/2018
## 6873     1.3       0     1.3       8       8 13/09/2018    20.9 13/09/2018
## 1705     1.1       0     1.1       0       0  10/2/2018     1.5  10/2/2018
## 2941     2.0       0     2.0      12      12   2/4/2018    20.8   2/4/2018
##      col 581 col 582 col 583    col 584 col 585 col 586 col 587 col 588 col 589
## 2151     2.5       0     348 28/02/2018     2.5      17     5.7     0.0    0.13
## 7575    -0.2       0    1841 12/10/2018    -0.2    1187    16.5     0.0    2.43
## 5295    18.3       0    1854   9/7/2018    18.3     110    20.2     0.5    0.27
## 6873    14.7       0    2000 13/09/2018    14.7    2329    20.9     0.0    0.18
## 1705    -3.1       0     590  10/2/2018    -3.1     197     1.5     0.0    0.00
## 2941     9.9       0    1240   2/4/2018     9.9     818    20.8     0.0    1.82
##      col 590 col 591 col 592 col 593 col 594 col 595 col 596 col 597 col 598
## 2151  Winter     5.7     5.7      80     348      80  Winter     5.7     0.0
## 7575  Autumn    16.5    16.5      32    1841      32  Autumn    16.5     0.0
## 5295  Summer    20.2    20.2      89    1854      89  Summer    20.2     0.5
## 6873  Autumn    20.9    20.9      68    2000      68  Autumn    20.9     0.0
## 1705  Winter     1.5     1.5      71     590      71  Winter     1.5     0.0
## 2941  Spring    20.8    20.8      50    1240      50  Spring    20.8     0.0
##      col 599 col 600    col 601 col 602 col 603 col 604 col 605 col 606 col 607
## 2151      14      17 No Holiday     348    0.13     348     2.5      17     5.7
## 7575      14    1187 No Holiday    1841    2.43    1841    -0.2    1187    16.5
## 5295      14     110 No Holiday    1854    0.27    1854    18.3     110    20.2
## 6873       8    2329 No Holiday    2000    0.18    2000    14.7    2329    20.9
## 1705       0     197 No Holiday     590    0.00     590    -3.1     197     1.5
## 2941      12     818 No Holiday    1240    1.82    1240     9.9     818    20.8
##      col 608 col 609 col 610 col 611 col 612 col 613 col 614 col 615 col 616
## 2151      80     5.7  Winter      17     348     Yes      80     2.5     5.7
## 7575      32    16.5  Autumn    1187    1841     Yes      32    -0.2    16.5
## 5295      89    20.2  Summer     110    1854     Yes      89    18.3    20.2
## 6873      68    20.9  Autumn    2329    2000     Yes      68    14.7    20.9
## 1705      71     1.5  Winter     197     590     Yes      71    -3.1     1.5
## 2941      50    20.8  Spring     818    1240     Yes      50     9.9    20.8
##      col 617 col 618 col 619 col 620 col 621 col 622    col 623    col 624
## 2151  Winter      14       0    0.13     3.7     2.5 No Holiday 28/02/2018
## 7575  Autumn      14       0    2.43     1.4    -0.2 No Holiday 12/10/2018
## 5295  Summer      14       0    0.27     1.0    18.3 No Holiday   9/7/2018
## 6873  Autumn       8       0    0.18     1.3    14.7 No Holiday 13/09/2018
## 1705  Winter       0       0    0.00     1.1    -3.1 No Holiday  10/2/2018
## 2941  Spring      12       0    1.82     2.0     9.9 No Holiday   2/4/2018
##         col 625 col 626 col 627 col 628    col 629 col 630 col 631 col 632
## 2151 28/02/2018       0      17     0.0 28/02/2018      80     3.7     2.5
## 7575 12/10/2018       0    1187     0.0 12/10/2018      32     1.4    -0.2
## 5295   9/7/2018       0     110     0.5   9/7/2018      89     1.0    18.3
## 6873 13/09/2018       0    2329     0.0 13/09/2018      68     1.3    14.7
## 1705  10/2/2018       0     197     0.0  10/2/2018      71     1.1    -3.1
## 2941   2/4/2018       0     818     0.0   2/4/2018      50     2.0     9.9
##         col 633 col 634 col 635 col 636 col 637 col 638 col 639 col 640 col 641
## 2151 No Holiday      14     348     2.5  Winter     2.5      17     3.7      17
## 7575 No Holiday      14    1841    -0.2  Autumn    -0.2    1187     1.4    1187
## 5295 No Holiday      14    1854    18.3  Summer    18.3     110     1.0     110
## 6873 No Holiday       8    2000    14.7  Autumn    14.7    2329     1.3    2329
## 1705 No Holiday       0     590    -3.1  Winter    -3.1     197     1.1     197
## 2941 No Holiday      12    1240     9.9  Spring     9.9     818     2.0     818
##      col 642 col 643 col 644    col 645 col 646 col 647 col 648 col 649 col 650
## 2151     348     3.7     3.7 28/02/2018       0     348     0.0      14     348
## 7575    1841     1.4     1.4 12/10/2018       0    1841     0.0      14    1841
## 5295    1854     1.0     1.0   9/7/2018       0    1854     0.5      14    1854
## 6873    2000     1.3     1.3 13/09/2018       0    2000     0.0       8    2000
## 1705     590     1.1     1.1  10/2/2018       0     590     0.0       0     590
## 2941    1240     2.0     2.0   2/4/2018       0    1240     0.0      12    1240
##      col 651 col 652 col 653 col 654 col 655    col 656 col 657 col 658 col 659
## 2151     Yes      80     348     3.7     2.5 No Holiday  Winter      80    0.13
## 7575     Yes      32    1841     1.4    -0.2 No Holiday  Autumn      32    2.43
## 5295     Yes      89    1854     1.0    18.3 No Holiday  Summer      89    0.27
## 6873     Yes      68    2000     1.3    14.7 No Holiday  Autumn      68    0.18
## 1705     Yes      71     590     1.1    -3.1 No Holiday  Winter      71    0.00
## 2941     Yes      50    1240     2.0     9.9 No Holiday  Spring      50    1.82
##      col 660 col 661 col 662 col 663 col 664 col 665    col 666 col 667 col 668
## 2151    0.13     348     0.0     0.0      14       0 No Holiday      80     0.0
## 7575    2.43    1841     0.0     0.0      14       0 No Holiday      32     0.0
## 5295    0.27    1854     0.5     0.5      14       0 No Holiday      89     0.5
## 6873    0.18    2000     0.0     0.0       8       0 No Holiday      68     0.0
## 1705    0.00     590     0.0     0.0       0       0 No Holiday      71     0.0
## 2941    1.82    1240     0.0     0.0      12       0 No Holiday      50     0.0
##      col 669    col 670 col 671 col 672 col 673 col 674 col 675 col 676 col 677
## 2151     0.0 28/02/2018     0.0      80     3.7     5.7     3.7     348    0.13
## 7575     0.0 12/10/2018     0.0      32     1.4    16.5     1.4    1841    2.43
## 5295     0.5   9/7/2018     0.5      89     1.0    20.2     1.0    1854    0.27
## 6873     0.0 13/09/2018     0.0      68     1.3    20.9     1.3    2000    0.18
## 1705     0.0  10/2/2018     0.0      71     1.1     1.5     1.1     590    0.00
## 2941     0.0   2/4/2018     0.0      50     2.0    20.8     2.0    1240    1.82
##      col 678 col 679 col 680 col 681    col 682 col 683    col 684 col 685
## 2151     348     Yes    0.13  Winter 28/02/2018     5.7 No Holiday  Winter
## 7575    1841     Yes    2.43  Autumn 12/10/2018    16.5 No Holiday  Autumn
## 5295    1854     Yes    0.27  Summer   9/7/2018    20.2 No Holiday  Summer
## 6873    2000     Yes    0.18  Autumn 13/09/2018    20.9 No Holiday  Autumn
## 1705     590     Yes    0.00  Winter  10/2/2018     1.5 No Holiday  Winter
## 2941    1240     Yes    1.82  Spring   2/4/2018    20.8 No Holiday  Spring
##      col 686    col 687 col 688 col 689    col 690 col 691 col 692 col 693
## 2151      17 No Holiday     Yes      17 28/02/2018     5.7       0       0
## 7575    1187 No Holiday     Yes    1187 12/10/2018    16.5       0       0
## 5295     110 No Holiday     Yes     110   9/7/2018    20.2       0       0
## 6873    2329 No Holiday     Yes    2329 13/09/2018    20.9       0       0
## 1705     197 No Holiday     Yes     197  10/2/2018     1.5       0       0
## 2941     818 No Holiday     Yes     818   2/4/2018    20.8       0       0
##      col 694 col 695 col 696 col 697 col 698 col 699 col 700 col 701 col 702
## 2151  Winter    0.13     2.5    0.13     Yes      17     348     5.7       0
## 7575  Autumn    2.43    -0.2    2.43     Yes    1187    1841    16.5       0
## 5295  Summer    0.27    18.3    0.27     Yes     110    1854    20.2       0
## 6873  Autumn    0.18    14.7    0.18     Yes    2329    2000    20.9       0
## 1705  Winter    0.00    -3.1    0.00     Yes     197     590     1.5       0
## 2941  Spring    1.82     9.9    1.82     Yes     818    1240    20.8       0
##      col 703 col 704 col 705 col 706 col 707 col 708 col 709 col 710 col 711
## 2151     3.7     5.7     3.7      14     3.7     5.7     348     348     Yes
## 7575     1.4    16.5     1.4      14     1.4    16.5    1841    1841     Yes
## 5295     1.0    20.2     1.0      14     1.0    20.2    1854    1854     Yes
## 6873     1.3    20.9     1.3       8     1.3    20.9    2000    2000     Yes
## 1705     1.1     1.5     1.1       0     1.1     1.5     590     590     Yes
## 2941     2.0    20.8     2.0      12     2.0    20.8    1240    1240     Yes
##      col 712    col 713 col 714 col 715 col 716 col 717    col 718 col 719
## 2151     348 No Holiday  Winter     2.5    0.13       0 28/02/2018     0.0
## 7575    1841 No Holiday  Autumn    -0.2    2.43       0 12/10/2018     0.0
## 5295    1854 No Holiday  Summer    18.3    0.27       0   9/7/2018     0.5
## 6873    2000 No Holiday  Autumn    14.7    0.18       0 13/09/2018     0.0
## 1705     590 No Holiday  Winter    -3.1    0.00       0  10/2/2018     0.0
## 2941    1240 No Holiday  Spring     9.9    1.82       0   2/4/2018     0.0
##      col 720    col 721 col 722 col 723 col 724 col 725 col 726 col 727 col 728
## 2151     348 No Holiday    0.13      17      14     2.5      80       0      14
## 7575    1841 No Holiday    2.43    1187      14    -0.2      32       0      14
## 5295    1854 No Holiday    0.27     110      14    18.3      89       0      14
## 6873    2000 No Holiday    0.18    2329       8    14.7      68       0       8
## 1705     590 No Holiday    0.00     197       0    -3.1      71       0       0
## 2941    1240 No Holiday    1.82     818      12     9.9      50       0      12
##      col 729 col 730 col 731 col 732 col 733    col 734 col 735 col 736 col 737
## 2151     348     Yes    0.13       0    0.13 28/02/2018      80  Winter     3.7
## 7575    1841     Yes    2.43       0    2.43 12/10/2018      32  Autumn     1.4
## 5295    1854     Yes    0.27       0    0.27   9/7/2018      89  Summer     1.0
## 6873    2000     Yes    0.18       0    0.18 13/09/2018      68  Autumn     1.3
## 1705     590     Yes    0.00       0    0.00  10/2/2018      71  Winter     1.1
## 2941    1240     Yes    1.82       0    1.82   2/4/2018      50  Spring     2.0
##      col 738 col 739 col 740 col 741 col 742 col 743 col 744 col 745 col 746
## 2151     348     Yes      14     5.7     3.7     2.5     2.5    0.13     348
## 7575    1841     Yes      14    16.5     1.4    -0.2    -0.2    2.43    1841
## 5295    1854     Yes      14    20.2     1.0    18.3    18.3    0.27    1854
## 6873    2000     Yes       8    20.9     1.3    14.7    14.7    0.18    2000
## 1705     590     Yes       0     1.5     1.1    -3.1    -3.1    0.00     590
## 2941    1240     Yes      12    20.8     2.0     9.9     9.9    1.82    1240
##         col 747    col 748 col 749 col 750 col 751 col 752 col 753 col 754
## 2151 No Holiday 28/02/2018     3.7     2.5    0.13     3.7     2.5     Yes
## 7575 No Holiday 12/10/2018     1.4    -0.2    2.43     1.4    -0.2     Yes
## 5295 No Holiday   9/7/2018     1.0    18.3    0.27     1.0    18.3     Yes
## 6873 No Holiday 13/09/2018     1.3    14.7    0.18     1.3    14.7     Yes
## 1705 No Holiday  10/2/2018     1.1    -3.1    0.00     1.1    -3.1     Yes
## 2941 No Holiday   2/4/2018     2.0     9.9    1.82     2.0     9.9     Yes
##      col 755 col 756 col 757 col 758 col 759 col 760 col 761 col 762    col 763
## 2151     5.7    0.13      17      14     348    0.13     348    0.13 No Holiday
## 7575    16.5    2.43    1187      14    1841    2.43    1841    2.43 No Holiday
## 5295    20.2    0.27     110      14    1854    0.27    1854    0.27 No Holiday
## 6873    20.9    0.18    2329       8    2000    0.18    2000    0.18 No Holiday
## 1705     1.5    0.00     197       0     590    0.00     590    0.00 No Holiday
## 2941    20.8    1.82     818      12    1240    1.82    1240    1.82 No Holiday
##      col 764 col 765 col 766 col 767 col 768    col 769 col 770 col 771
## 2151  Winter      14  Winter     Yes    0.13 No Holiday     5.7     2.5
## 7575  Autumn      14  Autumn     Yes    2.43 No Holiday    16.5    -0.2
## 5295  Summer      14  Summer     Yes    0.27 No Holiday    20.2    18.3
## 6873  Autumn       8  Autumn     Yes    0.18 No Holiday    20.9    14.7
## 1705  Winter       0  Winter     Yes    0.00 No Holiday     1.5    -3.1
## 2941  Spring      12  Spring     Yes    1.82 No Holiday    20.8     9.9
##         col 772 col 773    col 774 col 775    col 776 col 777    col 778
## 2151 28/02/2018     Yes No Holiday      80 No Holiday     3.7 No Holiday
## 7575 12/10/2018     Yes No Holiday      32 No Holiday     1.4 No Holiday
## 5295   9/7/2018     Yes No Holiday      89 No Holiday     1.0 No Holiday
## 6873 13/09/2018     Yes No Holiday      68 No Holiday     1.3 No Holiday
## 1705  10/2/2018     Yes No Holiday      71 No Holiday     1.1 No Holiday
## 2941   2/4/2018     Yes No Holiday      50 No Holiday     2.0 No Holiday
##      col 779 col 780 col 781 col 782    col 783 col 784 col 785 col 786 col 787
## 2151  Winter       0    0.13    0.13 28/02/2018     348     3.7      17       0
## 7575  Autumn       0    2.43    2.43 12/10/2018    1841     1.4    1187       0
## 5295  Summer       0    0.27    0.27   9/7/2018    1854     1.0     110       0
## 6873  Autumn       0    0.18    0.18 13/09/2018    2000     1.3    2329       0
## 1705  Winter       0    0.00    0.00  10/2/2018     590     1.1     197       0
## 2941  Spring       0    1.82    1.82   2/4/2018    1240     2.0     818       0
##      col 788    col 789 col 790 col 791 col 792 col 793 col 794 col 795 col 796
## 2151     Yes 28/02/2018  Winter    0.13       0     348     Yes  Winter     3.7
## 7575     Yes 12/10/2018  Autumn    2.43       0    1841     Yes  Autumn     1.4
## 5295     Yes   9/7/2018  Summer    0.27       0    1854     Yes  Summer     1.0
## 6873     Yes 13/09/2018  Autumn    0.18       0    2000     Yes  Autumn     1.3
## 1705     Yes  10/2/2018  Winter    0.00       0     590     Yes  Winter     1.1
## 2941     Yes   2/4/2018  Spring    1.82       0    1240     Yes  Spring     2.0
##         col 797 col 798 col 799 col 800 col 801 col 802 col 803 col 804 col 805
## 2151 No Holiday       0     2.5    0.13      17     0.0      14     Yes     Yes
## 7575 No Holiday       0    -0.2    2.43    1187     0.0      14     Yes     Yes
## 5295 No Holiday       0    18.3    0.27     110     0.5      14     Yes     Yes
## 6873 No Holiday       0    14.7    0.18    2329     0.0       8     Yes     Yes
## 1705 No Holiday       0    -3.1    0.00     197     0.0       0     Yes     Yes
## 2941 No Holiday       0     9.9    1.82     818     0.0      12     Yes     Yes
##         col 806 col 807 col 808 col 809 col 810    col 811 col 812 col 813
## 2151 28/02/2018    0.13     348      14  Winter No Holiday       0     3.7
## 7575 12/10/2018    2.43    1841      14  Autumn No Holiday       0     1.4
## 5295   9/7/2018    0.27    1854      14  Summer No Holiday       0     1.0
## 6873 13/09/2018    0.18    2000       8  Autumn No Holiday       0     1.3
## 1705  10/2/2018    0.00     590       0  Winter No Holiday       0     1.1
## 2941   2/4/2018    1.82    1240      12  Spring No Holiday       0     2.0
##      col 814 col 815 col 816 col 817 col 818 col 819 col 820 col 821 col 822
## 2151       0     0.0     2.5     Yes     2.5  Winter      17  Winter      17
## 7575       0     0.0    -0.2     Yes    -0.2  Autumn    1187  Autumn    1187
## 5295       0     0.5    18.3     Yes    18.3  Summer     110  Summer     110
## 6873       0     0.0    14.7     Yes    14.7  Autumn    2329  Autumn    2329
## 1705       0     0.0    -3.1     Yes    -3.1  Winter     197  Winter     197
## 2941       0     0.0     9.9     Yes     9.9  Spring     818  Spring     818
##         col 823 col 824    col 825 col 826 col 827 col 828 col 829 col 830
## 2151 28/02/2018     5.7 No Holiday       0     3.7  Winter      17       0
## 7575 12/10/2018    16.5 No Holiday       0     1.4  Autumn    1187       0
## 5295   9/7/2018    20.2 No Holiday       0     1.0  Summer     110       0
## 6873 13/09/2018    20.9 No Holiday       0     1.3  Autumn    2329       0
## 1705  10/2/2018     1.5 No Holiday       0     1.1  Winter     197       0
## 2941   2/4/2018    20.8 No Holiday       0     2.0  Spring     818       0
##      col 831    col 832 col 833    col 834 col 835 col 836 col 837 col 838
## 2151    0.13 28/02/2018     3.7 No Holiday     Yes     2.5     348     0.0
## 7575    2.43 12/10/2018     1.4 No Holiday     Yes    -0.2    1841     0.0
## 5295    0.27   9/7/2018     1.0 No Holiday     Yes    18.3    1854     0.5
## 6873    0.18 13/09/2018     1.3 No Holiday     Yes    14.7    2000     0.0
## 1705    0.00  10/2/2018     1.1 No Holiday     Yes    -3.1     590     0.0
## 2941    1.82   2/4/2018     2.0 No Holiday     Yes     9.9    1240     0.0
##      col 839 col 840 col 841 col 842 col 843 col 844 col 845 col 846 col 847
## 2151     0.0  Winter  Winter     348     Yes     348     Yes      80      14
## 7575     0.0  Autumn  Autumn    1841     Yes    1841     Yes      32      14
## 5295     0.5  Summer  Summer    1854     Yes    1854     Yes      89      14
## 6873     0.0  Autumn  Autumn    2000     Yes    2000     Yes      68       8
## 1705     0.0  Winter  Winter     590     Yes     590     Yes      71       0
## 2941     0.0  Spring  Spring    1240     Yes    1240     Yes      50      12
##      col 848 col 849 col 850 col 851 col 852 col 853 col 854 col 855 col 856
## 2151      80      14    0.13      80      17     0.0     348     3.7     348
## 7575      32      14    2.43      32    1187     0.0    1841     1.4    1841
## 5295      89      14    0.27      89     110     0.5    1854     1.0    1854
## 6873      68       8    0.18      68    2329     0.0    2000     1.3    2000
## 1705      71       0    0.00      71     197     0.0     590     1.1     590
## 2941      50      12    1.82      50     818     0.0    1240     2.0    1240
##      col 857 col 858 col 859 col 860 col 861 col 862 col 863 col 864 col 865
## 2151     Yes     Yes     0.0    0.13     2.5     Yes      80      80     0.0
## 7575     Yes     Yes     0.0    2.43    -0.2     Yes      32      32     0.0
## 5295     Yes     Yes     0.5    0.27    18.3     Yes      89      89     0.5
## 6873     Yes     Yes     0.0    0.18    14.7     Yes      68      68     0.0
## 1705     Yes     Yes     0.0    0.00    -3.1     Yes      71      71     0.0
## 2941     Yes     Yes     0.0    1.82     9.9     Yes      50      50     0.0
##      col 866 col 867    col 868 col 869 col 870 col 871    col 872 col 873
## 2151      17       0 No Holiday      80    0.13     3.7 28/02/2018     2.5
## 7575    1187       0 No Holiday      32    2.43     1.4 12/10/2018    -0.2
## 5295     110       0 No Holiday      89    0.27     1.0   9/7/2018    18.3
## 6873    2329       0 No Holiday      68    0.18     1.3 13/09/2018    14.7
## 1705     197       0 No Holiday      71    0.00     1.1  10/2/2018    -3.1
## 2941     818       0 No Holiday      50    1.82     2.0   2/4/2018     9.9
##      col 874 col 875 col 876 col 877 col 878 col 879 col 880 col 881 col 882
## 2151      80     3.7     Yes  Winter      17     Yes     Yes    0.13     0.0
## 7575      32     1.4     Yes  Autumn    1187     Yes     Yes    2.43     0.0
## 5295      89     1.0     Yes  Summer     110     Yes     Yes    0.27     0.5
## 6873      68     1.3     Yes  Autumn    2329     Yes     Yes    0.18     0.0
## 1705      71     1.1     Yes  Winter     197     Yes     Yes    0.00     0.0
## 2941      50     2.0     Yes  Spring     818     Yes     Yes    1.82     0.0
##      col 883 col 884 col 885 col 886 col 887 col 888 col 889 col 890 col 891
## 2151     0.0     5.7       0     2.5      17       0      14      80     Yes
## 7575     0.0    16.5       0    -0.2    1187       0      14      32     Yes
## 5295     0.5    20.2       0    18.3     110       0      14      89     Yes
## 6873     0.0    20.9       0    14.7    2329       0       8      68     Yes
## 1705     0.0     1.5       0    -3.1     197       0       0      71     Yes
## 2941     0.0    20.8       0     9.9     818       0      12      50     Yes
##      col 892 col 893 col 894 col 895 col 896 col 897 col 898 col 899 col 900
## 2151      80     3.7  Winter     0.0      17  Winter     348     348     0.0
## 7575      32     1.4  Autumn     0.0    1187  Autumn    1841    1841     0.0
## 5295      89     1.0  Summer     0.5     110  Summer    1854    1854     0.5
## 6873      68     1.3  Autumn     0.0    2329  Autumn    2000    2000     0.0
## 1705      71     1.1  Winter     0.0     197  Winter     590     590     0.0
## 2941      50     2.0  Spring     0.0     818  Spring    1240    1240     0.0
##      col 901 col 902 col 903 col 904 col 905 col 906 col 907 col 908 col 909
## 2151     Yes     348    0.13      17     0.0  Winter      80     5.7     5.7
## 7575     Yes    1841    2.43    1187     0.0  Autumn      32    16.5    16.5
## 5295     Yes    1854    0.27     110     0.5  Summer      89    20.2    20.2
## 6873     Yes    2000    0.18    2329     0.0  Autumn      68    20.9    20.9
## 1705     Yes     590    0.00     197     0.0  Winter      71     1.5     1.5
## 2941     Yes    1240    1.82     818     0.0  Spring      50    20.8    20.8
##         col 910 col 911 col 912 col 913 col 914 col 915    col 916 col 917
## 2151 28/02/2018     0.0       0    0.13     2.5     5.7 28/02/2018    0.13
## 7575 12/10/2018     0.0       0    2.43    -0.2    16.5 12/10/2018    2.43
## 5295   9/7/2018     0.5       0    0.27    18.3    20.2   9/7/2018    0.27
## 6873 13/09/2018     0.0       0    0.18    14.7    20.9 13/09/2018    0.18
## 1705  10/2/2018     0.0       0    0.00    -3.1     1.5  10/2/2018    0.00
## 2941   2/4/2018     0.0       0    1.82     9.9    20.8   2/4/2018    1.82
##      col 918    col 919    col 920 col 921 col 922 col 923 col 924 col 925
## 2151     0.0 No Holiday 28/02/2018  Winter     2.5    0.13      17      14
## 7575     0.0 No Holiday 12/10/2018  Autumn    -0.2    2.43    1187      14
## 5295     0.5 No Holiday   9/7/2018  Summer    18.3    0.27     110      14
## 6873     0.0 No Holiday 13/09/2018  Autumn    14.7    0.18    2329       8
## 1705     0.0 No Holiday  10/2/2018  Winter    -3.1    0.00     197       0
## 2941     0.0 No Holiday   2/4/2018  Spring     9.9    1.82     818      12
##      col 926 col 927    col 928 col 929 col 930 col 931    col 932    col 933
## 2151      80     Yes 28/02/2018    0.13     5.7     348 28/02/2018 28/02/2018
## 7575      32     Yes 12/10/2018    2.43    16.5    1841 12/10/2018 12/10/2018
## 5295      89     Yes   9/7/2018    0.27    20.2    1854   9/7/2018   9/7/2018
## 6873      68     Yes 13/09/2018    0.18    20.9    2000 13/09/2018 13/09/2018
## 1705      71     Yes  10/2/2018    0.00     1.5     590  10/2/2018  10/2/2018
## 2941      50     Yes   2/4/2018    1.82    20.8    1240   2/4/2018   2/4/2018
##      col 934    col 935 col 936 col 937 col 938 col 939 col 940 col 941 col 942
## 2151     2.5 28/02/2018     3.7      14      17  Winter     Yes    0.13     5.7
## 7575    -0.2 12/10/2018     1.4      14    1187  Autumn     Yes    2.43    16.5
## 5295    18.3   9/7/2018     1.0      14     110  Summer     Yes    0.27    20.2
## 6873    14.7 13/09/2018     1.3       8    2329  Autumn     Yes    0.18    20.9
## 1705    -3.1  10/2/2018     1.1       0     197  Winter     Yes    0.00     1.5
## 2941     9.9   2/4/2018     2.0      12     818  Spring     Yes    1.82    20.8
##         col 943 col 944    col 945 col 946 col 947 col 948 col 949 col 950
## 2151 No Holiday     3.7 28/02/2018     Yes       0       0       0      80
## 7575 No Holiday     1.4 12/10/2018     Yes       0       0       0      32
## 5295 No Holiday     1.0   9/7/2018     Yes       0       0       0      89
## 6873 No Holiday     1.3 13/09/2018     Yes       0       0       0      68
## 1705 No Holiday     1.1  10/2/2018     Yes       0       0       0      71
## 2941 No Holiday     2.0   2/4/2018     Yes       0       0       0      50
##      col 951 col 952 col 953 col 954 col 955 col 956 col 957 col 958 col 959
## 2151     Yes     348      14       0      14      17     5.7       0     Yes
## 7575     Yes    1841      14       0      14    1187    16.5       0     Yes
## 5295     Yes    1854      14       0      14     110    20.2       0     Yes
## 6873     Yes    2000       8       0       8    2329    20.9       0     Yes
## 1705     Yes     590       0       0       0     197     1.5       0     Yes
## 2941     Yes    1240      12       0      12     818    20.8       0     Yes
##         col 960 col 961 col 962    col 963 col 964 col 965 col 966 col 967
## 2151 28/02/2018    0.13      80 No Holiday     Yes     Yes    0.13     5.7
## 7575 12/10/2018    2.43      32 No Holiday     Yes     Yes    2.43    16.5
## 5295   9/7/2018    0.27      89 No Holiday     Yes     Yes    0.27    20.2
## 6873 13/09/2018    0.18      68 No Holiday     Yes     Yes    0.18    20.9
## 1705  10/2/2018    0.00      71 No Holiday     Yes     Yes    0.00     1.5
## 2941   2/4/2018    1.82      50 No Holiday     Yes     Yes    1.82    20.8
##      col 968    col 969 col 970 col 971 col 972 col 973 col 974    col 975
## 2151    0.13 28/02/2018     5.7     Yes     Yes      17      14 28/02/2018
## 7575    2.43 12/10/2018    16.5     Yes     Yes    1187      14 12/10/2018
## 5295    0.27   9/7/2018    20.2     Yes     Yes     110      14   9/7/2018
## 6873    0.18 13/09/2018    20.9     Yes     Yes    2329       8 13/09/2018
## 1705    0.00  10/2/2018     1.5     Yes     Yes     197       0  10/2/2018
## 2941    1.82   2/4/2018    20.8     Yes     Yes     818      12   2/4/2018
##      col 976 col 977    col 978 col 979 col 980 col 981 col 982 col 983 col 984
## 2151  Winter    0.13 No Holiday     5.7     3.7     5.7     348      80     5.7
## 7575  Autumn    2.43 No Holiday    16.5     1.4    16.5    1841      32    16.5
## 5295  Summer    0.27 No Holiday    20.2     1.0    20.2    1854      89    20.2
## 6873  Autumn    0.18 No Holiday    20.9     1.3    20.9    2000      68    20.9
## 1705  Winter    0.00 No Holiday     1.5     1.1     1.5     590      71     1.5
## 2941  Spring    1.82 No Holiday    20.8     2.0    20.8    1240      50    20.8
##      col 985 col 986 col 987 col 988 col 989 col 990    col 991    col 992
## 2151     348     0.0       0     5.7     2.5     3.7 28/02/2018 28/02/2018
## 7575    1841     0.0       0    16.5    -0.2     1.4 12/10/2018 12/10/2018
## 5295    1854     0.5       0    20.2    18.3     1.0   9/7/2018   9/7/2018
## 6873    2000     0.0       0    20.9    14.7     1.3 13/09/2018 13/09/2018
## 1705     590     0.0       0     1.5    -3.1     1.1  10/2/2018  10/2/2018
## 2941    1240     0.0       0    20.8     9.9     2.0   2/4/2018   2/4/2018
##      col 993 col 994 col 995 col 996 col 997 col 998 col 999   col 1000
## 2151       0      17     0.0      80     5.7      14     5.7 28/02/2018
## 7575       0    1187     0.0      32    16.5      14    16.5 12/10/2018
## 5295       0     110     0.5      89    20.2      14    20.2   9/7/2018
## 6873       0    2329     0.0      68    20.9       8    20.9 13/09/2018
## 1705       0     197     0.0      71     1.5       0     1.5  10/2/2018
## 2941       0     818     0.0      50    20.8      12    20.8   2/4/2018
##      col 1001 col 1002   col 1003 col 1004 col 1005   col 1006 col 1007
## 2151      348        0 No Holiday       80       17 No Holiday      2.5
## 7575     1841        0 No Holiday       32     1187 No Holiday     -0.2
## 5295     1854        0 No Holiday       89      110 No Holiday     18.3
## 6873     2000        0 No Holiday       68     2329 No Holiday     14.7
## 1705      590        0 No Holiday       71      197 No Holiday     -3.1
## 2941     1240        0 No Holiday       50      818 No Holiday      9.9
##      col 1008 col 1009 col 1010 col 1011 col 1012 col 1013 col 1014 col 1015
## 2151       17   Winter     0.13      2.5      Yes       80   Winter      2.5
## 7575     1187   Autumn     2.43     -0.2      Yes       32   Autumn     -0.2
## 5295      110   Summer     0.27     18.3      Yes       89   Summer     18.3
## 6873     2329   Autumn     0.18     14.7      Yes       68   Autumn     14.7
## 1705      197   Winter     0.00     -3.1      Yes       71   Winter     -3.1
## 2941      818   Spring     1.82      9.9      Yes       50   Spring      9.9
##      col 1016 col 1017   col 1018 col 1019 col 1020 col 1021   col 1022
## 2151   Winter       14 No Holiday      5.7       14        0 28/02/2018
## 7575   Autumn       14 No Holiday     16.5       14        0 12/10/2018
## 5295   Summer       14 No Holiday     20.2       14        0   9/7/2018
## 6873   Autumn        8 No Holiday     20.9        8        0 13/09/2018
## 1705   Winter        0 No Holiday      1.5        0        0  10/2/2018
## 2941   Spring       12 No Holiday     20.8       12        0   2/4/2018
##      col 1023 col 1024 col 1025 col 1026 col 1027 col 1028   col 1029
## 2151        0      0.0      0.0       80      0.0       17 28/02/2018
## 7575        0      0.0      0.0       32      0.0     1187 12/10/2018
## 5295        0      0.5      0.5       89      0.5      110   9/7/2018
## 6873        0      0.0      0.0       68      0.0     2329 13/09/2018
## 1705        0      0.0      0.0       71      0.0      197  10/2/2018
## 2941        0      0.0      0.0       50      0.0      818   2/4/2018
##        col 1030   col 1031 col 1032 col 1033   col 1034   col 1035 col 1036
## 2151 No Holiday No Holiday      348      3.7 No Holiday No Holiday      Yes
## 7575 No Holiday No Holiday     1841      1.4 No Holiday No Holiday      Yes
## 5295 No Holiday No Holiday     1854      1.0 No Holiday No Holiday      Yes
## 6873 No Holiday No Holiday     2000      1.3 No Holiday No Holiday      Yes
## 1705 No Holiday No Holiday      590      1.1 No Holiday No Holiday      Yes
## 2941 No Holiday No Holiday     1240      2.0 No Holiday No Holiday      Yes
##      col 1037 col 1038   col 1039 col 1040 col 1041 col 1042   col 1043
## 2151      3.7      348 28/02/2018      5.7       14      Yes 28/02/2018
## 7575      1.4     1841 12/10/2018     16.5       14      Yes 12/10/2018
## 5295      1.0     1854   9/7/2018     20.2       14      Yes   9/7/2018
## 6873      1.3     2000 13/09/2018     20.9        8      Yes 13/09/2018
## 1705      1.1      590  10/2/2018      1.5        0      Yes  10/2/2018
## 2941      2.0     1240   2/4/2018     20.8       12      Yes   2/4/2018
##      col 1044 col 1045 col 1046 col 1047 col 1048 col 1049 col 1050 col 1051
## 2151      0.0      3.7   Winter      3.7   Winter      Yes      Yes        0
## 7575      0.0      1.4   Autumn      1.4   Autumn      Yes      Yes        0
## 5295      0.5      1.0   Summer      1.0   Summer      Yes      Yes        0
## 6873      0.0      1.3   Autumn      1.3   Autumn      Yes      Yes        0
## 1705      0.0      1.1   Winter      1.1   Winter      Yes      Yes        0
## 2941      0.0      2.0   Spring      2.0   Spring      Yes      Yes        0
##      col 1052 col 1053 col 1054 col 1055   col 1056 col 1057 col 1058 col 1059
## 2151      2.5       17       80      0.0 No Holiday   Winter      0.0      2.5
## 7575     -0.2     1187       32      0.0 No Holiday   Autumn      0.0     -0.2
## 5295     18.3      110       89      0.5 No Holiday   Summer      0.5     18.3
## 6873     14.7     2329       68      0.0 No Holiday   Autumn      0.0     14.7
## 1705     -3.1      197       71      0.0 No Holiday   Winter      0.0     -3.1
## 2941      9.9      818       50      0.0 No Holiday   Spring      0.0      9.9
##      col 1060 col 1061 col 1062 col 1063 col 1064   col 1065   col 1066
## 2151       14      0.0      5.7      Yes       17 No Holiday 28/02/2018
## 7575       14      0.0     16.5      Yes     1187 No Holiday 12/10/2018
## 5295       14      0.5     20.2      Yes      110 No Holiday   9/7/2018
## 6873        8      0.0     20.9      Yes     2329 No Holiday 13/09/2018
## 1705        0      0.0      1.5      Yes      197 No Holiday  10/2/2018
## 2941       12      0.0     20.8      Yes      818 No Holiday   2/4/2018
##      col 1067 col 1068 col 1069 col 1070 col 1071 col 1072 col 1073 col 1074
## 2151       80      0.0      2.5      Yes       14      348       14   Winter
## 7575       32      0.0     -0.2      Yes       14     1841       14   Autumn
## 5295       89      0.5     18.3      Yes       14     1854       14   Summer
## 6873       68      0.0     14.7      Yes        8     2000        8   Autumn
## 1705       71      0.0     -3.1      Yes        0      590        0   Winter
## 2941       50      0.0      9.9      Yes       12     1240       12   Spring
##      col 1075 col 1076 col 1077 col 1078 col 1079 col 1080   col 1081 col 1082
## 2151   Winter        0      Yes      Yes      348      3.7 No Holiday        0
## 7575   Autumn        0      Yes      Yes     1841      1.4 No Holiday        0
## 5295   Summer        0      Yes      Yes     1854      1.0 No Holiday        0
## 6873   Autumn        0      Yes      Yes     2000      1.3 No Holiday        0
## 1705   Winter        0      Yes      Yes      590      1.1 No Holiday        0
## 2941   Spring        0      Yes      Yes     1240      2.0 No Holiday        0
##      col 1083 col 1084   col 1085 col 1086 col 1087 col 1088 col 1089 col 1090
## 2151      348   Winter No Holiday        0      348   Winter      3.7       14
## 7575     1841   Autumn No Holiday        0     1841   Autumn      1.4       14
## 5295     1854   Summer No Holiday        0     1854   Summer      1.0       14
## 6873     2000   Autumn No Holiday        0     2000   Autumn      1.3        8
## 1705      590   Winter No Holiday        0      590   Winter      1.1        0
## 2941     1240   Spring No Holiday        0     1240   Spring      2.0       12
##      col 1091 col 1092 col 1093 col 1094 col 1095 col 1096 col 1097 col 1098
## 2151        0       17        0        0      348        0       14      0.0
## 7575        0     1187        0        0     1841        0       14      0.0
## 5295        0      110        0        0     1854        0       14      0.5
## 6873        0     2329        0        0     2000        0        8      0.0
## 1705        0      197        0        0      590        0        0      0.0
## 2941        0      818        0        0     1240        0       12      0.0
##      col 1099   col 1100 col 1101 col 1102 col 1103 col 1104 col 1105 col 1106
## 2151     0.13 No Holiday      Yes     0.13      348      3.7      0.0     0.13
## 7575     2.43 No Holiday      Yes     2.43     1841      1.4      0.0     2.43
## 5295     0.27 No Holiday      Yes     0.27     1854      1.0      0.5     0.27
## 6873     0.18 No Holiday      Yes     0.18     2000      1.3      0.0     0.18
## 1705     0.00 No Holiday      Yes     0.00      590      1.1      0.0     0.00
## 2941     1.82 No Holiday      Yes     1.82     1240      2.0      0.0     1.82
##      col 1107 col 1108 col 1109 col 1110 col 1111 col 1112 col 1113 col 1114
## 2151        0      Yes      3.7     0.13      3.7      348      3.7      348
## 7575        0      Yes      1.4     2.43      1.4     1841      1.4     1841
## 5295        0      Yes      1.0     0.27      1.0     1854      1.0     1854
## 6873        0      Yes      1.3     0.18      1.3     2000      1.3     2000
## 1705        0      Yes      1.1     0.00      1.1      590      1.1      590
## 2941        0      Yes      2.0     1.82      2.0     1240      2.0     1240
##      col 1115 col 1116 col 1117 col 1118 col 1119   col 1120 col 1121 col 1122
## 2151   Winter        0      0.0       80        0 No Holiday      5.7      348
## 7575   Autumn        0      0.0       32        0 No Holiday     16.5     1841
## 5295   Summer        0      0.5       89        0 No Holiday     20.2     1854
## 6873   Autumn        0      0.0       68        0 No Holiday     20.9     2000
## 1705   Winter        0      0.0       71        0 No Holiday      1.5      590
## 2941   Spring        0      0.0       50        0 No Holiday     20.8     1240
##      col 1123 col 1124 col 1125   col 1126 col 1127 col 1128 col 1129 col 1130
## 2151     0.13      2.5      5.7 28/02/2018        0        0       14        0
## 7575     2.43     -0.2     16.5 12/10/2018        0        0       14        0
## 5295     0.27     18.3     20.2   9/7/2018        0        0       14        0
## 6873     0.18     14.7     20.9 13/09/2018        0        0        8        0
## 1705     0.00     -3.1      1.5  10/2/2018        0        0        0        0
## 2941     1.82      9.9     20.8   2/4/2018        0        0       12        0
##      col 1131 col 1132   col 1133 col 1134 col 1135 col 1136   col 1137
## 2151       17      3.7 28/02/2018      2.5      2.5      348 28/02/2018
## 7575     1187      1.4 12/10/2018     -0.2     -0.2     1841 12/10/2018
## 5295      110      1.0   9/7/2018     18.3     18.3     1854   9/7/2018
## 6873     2329      1.3 13/09/2018     14.7     14.7     2000 13/09/2018
## 1705      197      1.1  10/2/2018     -3.1     -3.1      590  10/2/2018
## 2941      818      2.0   2/4/2018      9.9      9.9     1240   2/4/2018
##      col 1138 col 1139 col 1140 col 1141 col 1142 col 1143 col 1144 col 1145
## 2151   Winter       80      5.7      Yes       17      Yes      3.7        0
## 7575   Autumn       32     16.5      Yes     1187      Yes      1.4        0
## 5295   Summer       89     20.2      Yes      110      Yes      1.0        0
## 6873   Autumn       68     20.9      Yes     2329      Yes      1.3        0
## 1705   Winter       71      1.5      Yes      197      Yes      1.1        0
## 2941   Spring       50     20.8      Yes      818      Yes      2.0        0
##      col 1146 col 1147 col 1148 col 1149 col 1150   col 1151   col 1152
## 2151       14        0       14       80      0.0 28/02/2018 No Holiday
## 7575       14        0       14       32      0.0 12/10/2018 No Holiday
## 5295       14        0       14       89      0.5   9/7/2018 No Holiday
## 6873        8        0        8       68      0.0 13/09/2018 No Holiday
## 1705        0        0        0       71      0.0  10/2/2018 No Holiday
## 2941       12        0       12       50      0.0   2/4/2018 No Holiday
##        col 1153 col 1154 col 1155 col 1156 col 1157   col 1158   col 1159
## 2151 No Holiday      Yes      3.7      348      2.5 No Holiday 28/02/2018
## 7575 No Holiday      Yes      1.4     1841     -0.2 No Holiday 12/10/2018
## 5295 No Holiday      Yes      1.0     1854     18.3 No Holiday   9/7/2018
## 6873 No Holiday      Yes      1.3     2000     14.7 No Holiday 13/09/2018
## 1705 No Holiday      Yes      1.1      590     -3.1 No Holiday  10/2/2018
## 2941 No Holiday      Yes      2.0     1240      9.9 No Holiday   2/4/2018
##      col 1160 col 1161 col 1162   col 1163 col 1164 col 1165 col 1166 col 1167
## 2151      0.0       14     0.13 No Holiday      Yes       14      0.0      Yes
## 7575      0.0       14     2.43 No Holiday      Yes       14      0.0      Yes
## 5295      0.5       14     0.27 No Holiday      Yes       14      0.5      Yes
## 6873      0.0        8     0.18 No Holiday      Yes        8      0.0      Yes
## 1705      0.0        0     0.00 No Holiday      Yes        0      0.0      Yes
## 2941      0.0       12     1.82 No Holiday      Yes       12      0.0      Yes
##      col 1168 col 1169 col 1170 col 1171 col 1172 col 1173   col 1174 col 1175
## 2151        0      Yes   Winter      3.7      3.7      2.5 28/02/2018     0.13
## 7575        0      Yes   Autumn      1.4      1.4     -0.2 12/10/2018     2.43
## 5295        0      Yes   Summer      1.0      1.0     18.3   9/7/2018     0.27
## 6873        0      Yes   Autumn      1.3      1.3     14.7 13/09/2018     0.18
## 1705        0      Yes   Winter      1.1      1.1     -3.1  10/2/2018     0.00
## 2941        0      Yes   Spring      2.0      2.0      9.9   2/4/2018     1.82
##      col 1176 col 1177 col 1178 col 1179 col 1180 col 1181 col 1182 col 1183
## 2151       17      2.5        0        0       17   Winter      3.7      0.0
## 7575     1187     -0.2        0        0     1187   Autumn      1.4      0.0
## 5295      110     18.3        0        0      110   Summer      1.0      0.5
## 6873     2329     14.7        0        0     2329   Autumn      1.3      0.0
## 1705      197     -3.1        0        0      197   Winter      1.1      0.0
## 2941      818      9.9        0        0      818   Spring      2.0      0.0
##      col 1184 col 1185 col 1186 col 1187 col 1188 col 1189   col 1190 col 1191
## 2151       14       14        0      5.7      3.7       17 28/02/2018      348
## 7575       14       14        0     16.5      1.4     1187 12/10/2018     1841
## 5295       14       14        0     20.2      1.0      110   9/7/2018     1854
## 6873        8        8        0     20.9      1.3     2329 13/09/2018     2000
## 1705        0        0        0      1.5      1.1      197  10/2/2018      590
## 2941       12       12        0     20.8      2.0      818   2/4/2018     1240
##      col 1192 col 1193 col 1194 col 1195 col 1196 col 1197 col 1198 col 1199
## 2151   Winter      Yes      Yes      0.0      2.5       14   Winter      348
## 7575   Autumn      Yes      Yes      0.0     -0.2       14   Autumn     1841
## 5295   Summer      Yes      Yes      0.5     18.3       14   Summer     1854
## 6873   Autumn      Yes      Yes      0.0     14.7        8   Autumn     2000
## 1705   Winter      Yes      Yes      0.0     -3.1        0   Winter      590
## 2941   Spring      Yes      Yes      0.0      9.9       12   Spring     1240
##      col 1200 col 1201   col 1202 col 1203 col 1204 col 1205 col 1206 col 1207
## 2151   Winter        0 28/02/2018   Winter      2.5      3.7       80      5.7
## 7575   Autumn        0 12/10/2018   Autumn     -0.2      1.4       32     16.5
## 5295   Summer        0   9/7/2018   Summer     18.3      1.0       89     20.2
## 6873   Autumn        0 13/09/2018   Autumn     14.7      1.3       68     20.9
## 1705   Winter        0  10/2/2018   Winter     -3.1      1.1       71      1.5
## 2941   Spring        0   2/4/2018   Spring      9.9      2.0       50     20.8
##      col 1208 col 1209 col 1210   col 1211 col 1212 col 1213 col 1214 col 1215
## 2151        0      3.7       14 No Holiday     0.13       17       14      2.5
## 7575        0      1.4       14 No Holiday     2.43     1187       14     -0.2
## 5295        0      1.0       14 No Holiday     0.27      110       14     18.3
## 6873        0      1.3        8 No Holiday     0.18     2329        8     14.7
## 1705        0      1.1        0 No Holiday     0.00      197        0     -3.1
## 2941        0      2.0       12 No Holiday     1.82      818       12      9.9
##      col 1216 col 1217 col 1218 col 1219 col 1220 col 1221 col 1222 col 1223
## 2151       80       14       14       80      2.5        0      2.5      348
## 7575       32       14       14       32     -0.2        0     -0.2     1841
## 5295       89       14       14       89     18.3        0     18.3     1854
## 6873       68        8        8       68     14.7        0     14.7     2000
## 1705       71        0        0       71     -3.1        0     -3.1      590
## 2941       50       12       12       50      9.9        0      9.9     1240
##        col 1224 col 1225 col 1226   col 1227 col 1228 col 1229 col 1230
## 2151 28/02/2018   Winter        0 28/02/2018      2.5        0      Yes
## 7575 12/10/2018   Autumn        0 12/10/2018     -0.2        0      Yes
## 5295   9/7/2018   Summer        0   9/7/2018     18.3        0      Yes
## 6873 13/09/2018   Autumn        0 13/09/2018     14.7        0      Yes
## 1705  10/2/2018   Winter        0  10/2/2018     -3.1        0      Yes
## 2941   2/4/2018   Spring        0   2/4/2018      9.9        0      Yes
##      col 1231 col 1232 col 1233 col 1234 col 1235 col 1236 col 1237 col 1238
## 2151   Winter      0.0       80      0.0      Yes      5.7       14      Yes
## 7575   Autumn      0.0       32      0.0      Yes     16.5       14      Yes
## 5295   Summer      0.5       89      0.5      Yes     20.2       14      Yes
## 6873   Autumn      0.0       68      0.0      Yes     20.9        8      Yes
## 1705   Winter      0.0       71      0.0      Yes      1.5        0      Yes
## 2941   Spring      0.0       50      0.0      Yes     20.8       12      Yes
##      col 1239 col 1240 col 1241   col 1242 col 1243 col 1244 col 1245 col 1246
## 2151       17   Winter       80 28/02/2018   Winter      2.5     0.13      0.0
## 7575     1187   Autumn       32 12/10/2018   Autumn     -0.2     2.43      0.0
## 5295      110   Summer       89   9/7/2018   Summer     18.3     0.27      0.5
## 6873     2329   Autumn       68 13/09/2018   Autumn     14.7     0.18      0.0
## 1705      197   Winter       71  10/2/2018   Winter     -3.1     0.00      0.0
## 2941      818   Spring       50   2/4/2018   Spring      9.9     1.82      0.0
##        col 1247 col 1248 col 1249 col 1250 col 1251 col 1252 col 1253 col 1254
## 2151 28/02/2018        0      5.7       14   Winter       80      2.5   Winter
## 7575 12/10/2018        0     16.5       14   Autumn       32     -0.2   Autumn
## 5295   9/7/2018        0     20.2       14   Summer       89     18.3   Summer
## 6873 13/09/2018        0     20.9        8   Autumn       68     14.7   Autumn
## 1705  10/2/2018        0      1.5        0   Winter       71     -3.1   Winter
## 2941   2/4/2018        0     20.8       12   Spring       50      9.9   Spring
##      col 1255 col 1256 col 1257 col 1258 col 1259 col 1260   col 1261 col 1262
## 2151      5.7      3.7       17       14      Yes        0 No Holiday      3.7
## 7575     16.5      1.4     1187       14      Yes        0 No Holiday      1.4
## 5295     20.2      1.0      110       14      Yes        0 No Holiday      1.0
## 6873     20.9      1.3     2329        8      Yes        0 No Holiday      1.3
## 1705      1.5      1.1      197        0      Yes        0 No Holiday      1.1
## 2941     20.8      2.0      818       12      Yes        0 No Holiday      2.0
##      col 1263 col 1264   col 1265 col 1266 col 1267 col 1268 col 1269 col 1270
## 2151       80      0.0 28/02/2018      Yes        0        0      348       80
## 7575       32      0.0 12/10/2018      Yes        0        0     1841       32
## 5295       89      0.5   9/7/2018      Yes        0        0     1854       89
## 6873       68      0.0 13/09/2018      Yes        0        0     2000       68
## 1705       71      0.0  10/2/2018      Yes        0        0      590       71
## 2941       50      0.0   2/4/2018      Yes        0        0     1240       50
##      col 1271 col 1272 col 1273 col 1274 col 1275 col 1276 col 1277 col 1278
## 2151      348     0.13      2.5        0       17       14      Yes       17
## 7575     1841     2.43     -0.2        0     1187       14      Yes     1187
## 5295     1854     0.27     18.3        0      110       14      Yes      110
## 6873     2000     0.18     14.7        0     2329        8      Yes     2329
## 1705      590     0.00     -3.1        0      197        0      Yes      197
## 2941     1240     1.82      9.9        0      818       12      Yes      818
##      col 1279 col 1280 col 1281 col 1282 col 1283 col 1284 col 1285 col 1286
## 2151       80      Yes       14      3.7       14      0.0      Yes      5.7
## 7575       32      Yes       14      1.4       14      0.0      Yes     16.5
## 5295       89      Yes       14      1.0       14      0.5      Yes     20.2
## 6873       68      Yes        8      1.3        8      0.0      Yes     20.9
## 1705       71      Yes        0      1.1        0      0.0      Yes      1.5
## 2941       50      Yes       12      2.0       12      0.0      Yes     20.8
##      col 1287 col 1288 col 1289 col 1290 col 1291 col 1292 col 1293 col 1294
## 2151       80        0      5.7      5.7       14       14       17   Winter
## 7575       32        0     16.5     16.5       14       14     1187   Autumn
## 5295       89        0     20.2     20.2       14       14      110   Summer
## 6873       68        0     20.9     20.9        8        8     2329   Autumn
## 1705       71        0      1.5      1.5        0        0      197   Winter
## 2941       50        0     20.8     20.8       12       12      818   Spring
##      col 1295 col 1296 col 1297 col 1298 col 1299 col 1300 col 1301 col 1302
## 2151       80      3.7       80       17       80       80   Winter     0.13
## 7575       32      1.4       32     1187       32       32   Autumn     2.43
## 5295       89      1.0       89      110       89       89   Summer     0.27
## 6873       68      1.3       68     2329       68       68   Autumn     0.18
## 1705       71      1.1       71      197       71       71   Winter     0.00
## 2941       50      2.0       50      818       50       50   Spring     1.82
##      col 1303 col 1304 col 1305   col 1306 col 1307 col 1308 col 1309 col 1310
## 2151     0.13       80        0 28/02/2018      0.0     0.13        0      5.7
## 7575     2.43       32        0 12/10/2018      0.0     2.43        0     16.5
## 5295     0.27       89        0   9/7/2018      0.5     0.27        0     20.2
## 6873     0.18       68        0 13/09/2018      0.0     0.18        0     20.9
## 1705     0.00       71        0  10/2/2018      0.0     0.00        0      1.5
## 2941     1.82       50        0   2/4/2018      0.0     1.82        0     20.8
##      col 1311 col 1312 col 1313 col 1314 col 1315 col 1316 col 1317   col 1318
## 2151      5.7   Winter      348       17        0        0       17 No Holiday
## 7575     16.5   Autumn     1841     1187        0        0     1187 No Holiday
## 5295     20.2   Summer     1854      110        0        0      110 No Holiday
## 6873     20.9   Autumn     2000     2329        0        0     2329 No Holiday
## 1705      1.5   Winter      590      197        0        0      197 No Holiday
## 2941     20.8   Spring     1240      818        0        0      818 No Holiday
##      col 1319 col 1320 col 1321 col 1322 col 1323 col 1324 col 1325 col 1326
## 2151     0.13      Yes      5.7       14     0.13        0   Winter     0.13
## 7575     2.43      Yes     16.5       14     2.43        0   Autumn     2.43
## 5295     0.27      Yes     20.2       14     0.27        0   Summer     0.27
## 6873     0.18      Yes     20.9        8     0.18        0   Autumn     0.18
## 1705     0.00      Yes      1.5        0     0.00        0   Winter     0.00
## 2941     1.82      Yes     20.8       12     1.82        0   Spring     1.82
##      col 1327 col 1328 col 1329 col 1330 col 1331 col 1332 col 1333 col 1334
## 2151      3.7   Winter       17      2.5      348     0.13      Yes      0.0
## 7575      1.4   Autumn     1187     -0.2     1841     2.43      Yes      0.0
## 5295      1.0   Summer      110     18.3     1854     0.27      Yes      0.5
## 6873      1.3   Autumn     2329     14.7     2000     0.18      Yes      0.0
## 1705      1.1   Winter      197     -3.1      590     0.00      Yes      0.0
## 2941      2.0   Spring      818      9.9     1240     1.82      Yes      0.0
##      col 1335   col 1336 col 1337 col 1338 col 1339 col 1340 col 1341 col 1342
## 2151      3.7 No Holiday      5.7       17      348       80      0.0     0.13
## 7575      1.4 No Holiday     16.5     1187     1841       32      0.0     2.43
## 5295      1.0 No Holiday     20.2      110     1854       89      0.5     0.27
## 6873      1.3 No Holiday     20.9     2329     2000       68      0.0     0.18
## 1705      1.1 No Holiday      1.5      197      590       71      0.0     0.00
## 2941      2.0 No Holiday     20.8      818     1240       50      0.0     1.82
##      col 1343 col 1344   col 1345 col 1346 col 1347 col 1348 col 1349 col 1350
## 2151     0.13      2.5 28/02/2018        0       14      2.5      5.7        0
## 7575     2.43     -0.2 12/10/2018        0       14     -0.2     16.5        0
## 5295     0.27     18.3   9/7/2018        0       14     18.3     20.2        0
## 6873     0.18     14.7 13/09/2018        0        8     14.7     20.9        0
## 1705     0.00     -3.1  10/2/2018        0        0     -3.1      1.5        0
## 2941     1.82      9.9   2/4/2018        0       12      9.9     20.8        0
##      col 1351 col 1352 col 1353 col 1354 col 1355 col 1356 col 1357 col 1358
## 2151       14      2.5      2.5     0.13       17       17      0.0      5.7
## 7575       14     -0.2     -0.2     2.43     1187     1187      0.0     16.5
## 5295       14     18.3     18.3     0.27      110      110      0.5     20.2
## 6873        8     14.7     14.7     0.18     2329     2329      0.0     20.9
## 1705        0     -3.1     -3.1     0.00      197      197      0.0      1.5
## 2941       12      9.9      9.9     1.82      818      818      0.0     20.8
##      col 1359 col 1360 col 1361 col 1362   col 1363 col 1364 col 1365 col 1366
## 2151       80      0.0      0.0       17 No Holiday      348        0      0.0
## 7575       32      0.0      0.0     1187 No Holiday     1841        0      0.0
## 5295       89      0.5      0.5      110 No Holiday     1854        0      0.5
## 6873       68      0.0      0.0     2329 No Holiday     2000        0      0.0
## 1705       71      0.0      0.0      197 No Holiday      590        0      0.0
## 2941       50      0.0      0.0      818 No Holiday     1240        0      0.0
##      col 1367 col 1368   col 1369 col 1370   col 1371 col 1372 col 1373
## 2151      348      348 No Holiday      2.5 28/02/2018       14      3.7
## 7575     1841     1841 No Holiday     -0.2 12/10/2018       14      1.4
## 5295     1854     1854 No Holiday     18.3   9/7/2018       14      1.0
## 6873     2000     2000 No Holiday     14.7 13/09/2018        8      1.3
## 1705      590      590 No Holiday     -3.1  10/2/2018        0      1.1
## 2941     1240     1240 No Holiday      9.9   2/4/2018       12      2.0
##      col 1374 col 1375 col 1376 col 1377 col 1378 col 1379   col 1380 col 1381
## 2151       14      2.5       80       14      0.0       80 28/02/2018       80
## 7575       14     -0.2       32       14      0.0       32 12/10/2018       32
## 5295       14     18.3       89       14      0.5       89   9/7/2018       89
## 6873        8     14.7       68        8      0.0       68 13/09/2018       68
## 1705        0     -3.1       71        0      0.0       71  10/2/2018       71
## 2941       12      9.9       50       12      0.0       50   2/4/2018       50
##      col 1382 col 1383 col 1384   col 1385 col 1386 col 1387 col 1388 col 1389
## 2151      Yes       17   Winter 28/02/2018      2.5       17   Winter   Winter
## 7575      Yes     1187   Autumn 12/10/2018     -0.2     1187   Autumn   Autumn
## 5295      Yes      110   Summer   9/7/2018     18.3      110   Summer   Summer
## 6873      Yes     2329   Autumn 13/09/2018     14.7     2329   Autumn   Autumn
## 1705      Yes      197   Winter  10/2/2018     -3.1      197   Winter   Winter
## 2941      Yes      818   Spring   2/4/2018      9.9      818   Spring   Spring
##      col 1390 col 1391 col 1392 col 1393 col 1394   col 1395 col 1396 col 1397
## 2151     0.13       80      3.7     0.13      3.7 No Holiday      348      348
## 7575     2.43       32      1.4     2.43      1.4 No Holiday     1841     1841
## 5295     0.27       89      1.0     0.27      1.0 No Holiday     1854     1854
## 6873     0.18       68      1.3     0.18      1.3 No Holiday     2000     2000
## 1705     0.00       71      1.1     0.00      1.1 No Holiday      590      590
## 2941     1.82       50      2.0     1.82      2.0 No Holiday     1240     1240
##      col 1398 col 1399 col 1400 col 1401 col 1402   col 1403 col 1404 col 1405
## 2151      Yes       17       17   Winter     0.13 No Holiday       14      Yes
## 7575      Yes     1187     1187   Autumn     2.43 No Holiday       14      Yes
## 5295      Yes      110      110   Summer     0.27 No Holiday       14      Yes
## 6873      Yes     2329     2329   Autumn     0.18 No Holiday        8      Yes
## 1705      Yes      197      197   Winter     0.00 No Holiday        0      Yes
## 2941      Yes      818      818   Spring     1.82 No Holiday       12      Yes
##      col 1406 col 1407 col 1408 col 1409 col 1410 col 1411 col 1412 col 1413
## 2151      2.5      348      0.0      348      3.7       17      5.7      Yes
## 7575     -0.2     1841      0.0     1841      1.4     1187     16.5      Yes
## 5295     18.3     1854      0.5     1854      1.0      110     20.2      Yes
## 6873     14.7     2000      0.0     2000      1.3     2329     20.9      Yes
## 1705     -3.1      590      0.0      590      1.1      197      1.5      Yes
## 2941      9.9     1240      0.0     1240      2.0      818     20.8      Yes
##      col 1414 col 1415 col 1416 col 1417 col 1418 col 1419 col 1420 col 1421
## 2151        0   Winter      0.0       14      Yes       80       17     0.13
## 7575        0   Autumn      0.0       14      Yes       32     1187     2.43
## 5295        0   Summer      0.5       14      Yes       89      110     0.27
## 6873        0   Autumn      0.0        8      Yes       68     2329     0.18
## 1705        0   Winter      0.0        0      Yes       71      197     0.00
## 2941        0   Spring      0.0       12      Yes       50      818     1.82
##      col 1422   col 1423 col 1424 col 1425 col 1426 col 1427 col 1428 col 1429
## 2151       80 28/02/2018      0.0        0   Winter      0.0       17        0
## 7575       32 12/10/2018      0.0        0   Autumn      0.0     1187        0
## 5295       89   9/7/2018      0.5        0   Summer      0.5      110        0
## 6873       68 13/09/2018      0.0        0   Autumn      0.0     2329        0
## 1705       71  10/2/2018      0.0        0   Winter      0.0      197        0
## 2941       50   2/4/2018      0.0        0   Spring      0.0      818        0
##      col 1430 col 1431   col 1432 col 1433   col 1434 col 1435 col 1436
## 2151   Winter      3.7 28/02/2018        0 28/02/2018        0      2.5
## 7575   Autumn      1.4 12/10/2018        0 12/10/2018        0     -0.2
## 5295   Summer      1.0   9/7/2018        0   9/7/2018        0     18.3
## 6873   Autumn      1.3 13/09/2018        0 13/09/2018        0     14.7
## 1705   Winter      1.1  10/2/2018        0  10/2/2018        0     -3.1
## 2941   Spring      2.0   2/4/2018        0   2/4/2018        0      9.9
##      col 1437 col 1438 col 1439 col 1440   col 1441 col 1442 col 1443 col 1444
## 2151     0.13       17      3.7      3.7 No Holiday       14   Winter        0
## 7575     2.43     1187      1.4      1.4 No Holiday       14   Autumn        0
## 5295     0.27      110      1.0      1.0 No Holiday       14   Summer        0
## 6873     0.18     2329      1.3      1.3 No Holiday        8   Autumn        0
## 1705     0.00      197      1.1      1.1 No Holiday        0   Winter        0
## 2941     1.82      818      2.0      2.0 No Holiday       12   Spring        0
##      col 1445 col 1446 col 1447 col 1448 col 1449 col 1450 col 1451 col 1452
## 2151       80      Yes       80       80      0.0   Winter      Yes       17
## 7575       32      Yes       32       32      0.0   Autumn      Yes     1187
## 5295       89      Yes       89       89      0.5   Summer      Yes      110
## 6873       68      Yes       68       68      0.0   Autumn      Yes     2329
## 1705       71      Yes       71       71      0.0   Winter      Yes      197
## 2941       50      Yes       50       50      0.0   Spring      Yes      818
##      col 1453 col 1454 col 1455 col 1456 col 1457 col 1458 col 1459 col 1460
## 2151   Winter       17      348       17     0.13      Yes       17        0
## 7575   Autumn     1187     1841     1187     2.43      Yes     1187        0
## 5295   Summer      110     1854      110     0.27      Yes      110        0
## 6873   Autumn     2329     2000     2329     0.18      Yes     2329        0
## 1705   Winter      197      590      197     0.00      Yes      197        0
## 2941   Spring      818     1240      818     1.82      Yes      818        0
##      col 1461   col 1462 col 1463 col 1464 col 1465 col 1466 col 1467 col 1468
## 2151        0 No Holiday      2.5       17      Yes       17      3.7      348
## 7575        0 No Holiday     -0.2     1187      Yes     1187      1.4     1841
## 5295        0 No Holiday     18.3      110      Yes      110      1.0     1854
## 6873        0 No Holiday     14.7     2329      Yes     2329      1.3     2000
## 1705        0 No Holiday     -3.1      197      Yes      197      1.1      590
## 2941        0 No Holiday      9.9      818      Yes      818      2.0     1240
##      col 1469 col 1470 col 1471 col 1472 col 1473 col 1474 col 1475 col 1476
## 2151      0.0       80     0.13   Winter     0.13       17        0      Yes
## 7575      0.0       32     2.43   Autumn     2.43     1187        0      Yes
## 5295      0.5       89     0.27   Summer     0.27      110        0      Yes
## 6873      0.0       68     0.18   Autumn     0.18     2329        0      Yes
## 1705      0.0       71     0.00   Winter     0.00      197        0      Yes
## 2941      0.0       50     1.82   Spring     1.82      818        0      Yes
##      col 1477   col 1478   col 1479 col 1480 col 1481 col 1482 col 1483
## 2151      5.7 No Holiday 28/02/2018       80        0      Yes       17
## 7575     16.5 No Holiday 12/10/2018       32        0      Yes     1187
## 5295     20.2 No Holiday   9/7/2018       89        0      Yes      110
## 6873     20.9 No Holiday 13/09/2018       68        0      Yes     2329
## 1705      1.5 No Holiday  10/2/2018       71        0      Yes      197
## 2941     20.8 No Holiday   2/4/2018       50        0      Yes      818
##      col 1484   col 1485 col 1486 col 1487 col 1488 col 1489 col 1490 col 1491
## 2151     0.13 No Holiday       14       80      5.7       17      348      5.7
## 7575     2.43 No Holiday       14       32     16.5     1187     1841     16.5
## 5295     0.27 No Holiday       14       89     20.2      110     1854     20.2
## 6873     0.18 No Holiday        8       68     20.9     2329     2000     20.9
## 1705     0.00 No Holiday        0       71      1.5      197      590      1.5
## 2941     1.82 No Holiday       12       50     20.8      818     1240     20.8
##      col 1492 col 1493 col 1494   col 1495 col 1496 col 1497   col 1498
## 2151      348     0.13   Winter 28/02/2018       17       17 28/02/2018
## 7575     1841     2.43   Autumn 12/10/2018     1187     1187 12/10/2018
## 5295     1854     0.27   Summer   9/7/2018      110      110   9/7/2018
## 6873     2000     0.18   Autumn 13/09/2018     2329     2329 13/09/2018
## 1705      590     0.00   Winter  10/2/2018      197      197  10/2/2018
## 2941     1240     1.82   Spring   2/4/2018      818      818   2/4/2018
##        col 1499 col 1500 col 1501 col 1502   col 1503   col 1504 col 1505
## 2151 28/02/2018       17      0.0       14 No Holiday No Holiday     0.13
## 7575 12/10/2018     1187      0.0       14 No Holiday No Holiday     2.43
## 5295   9/7/2018      110      0.5       14 No Holiday No Holiday     0.27
## 6873 13/09/2018     2329      0.0        8 No Holiday No Holiday     0.18
## 1705  10/2/2018      197      0.0        0 No Holiday No Holiday     0.00
## 2941   2/4/2018      818      0.0       12 No Holiday No Holiday     1.82
##      col 1506 col 1507 col 1508 col 1509 col 1510 col 1511 col 1512 col 1513
## 2151       80   Winter      2.5   Winter        0       80      348      3.7
## 7575       32   Autumn     -0.2   Autumn        0       32     1841      1.4
## 5295       89   Summer     18.3   Summer        0       89     1854      1.0
## 6873       68   Autumn     14.7   Autumn        0       68     2000      1.3
## 1705       71   Winter     -3.1   Winter        0       71      590      1.1
## 2941       50   Spring      9.9   Spring        0       50     1240      2.0
##        col 1514 col 1515   col 1516 col 1517 col 1518 col 1519 col 1520
## 2151 28/02/2018       80 28/02/2018       14        0      2.5      Yes
## 7575 12/10/2018       32 12/10/2018       14        0     -0.2      Yes
## 5295   9/7/2018       89   9/7/2018       14        0     18.3      Yes
## 6873 13/09/2018       68 13/09/2018        8        0     14.7      Yes
## 1705  10/2/2018       71  10/2/2018        0        0     -3.1      Yes
## 2941   2/4/2018       50   2/4/2018       12        0      9.9      Yes
##      col 1521 col 1522   col 1523 col 1524 col 1525   col 1526 col 1527
## 2151       14       17 No Holiday       80       14 28/02/2018      Yes
## 7575       14     1187 No Holiday       32       14 12/10/2018      Yes
## 5295       14      110 No Holiday       89       14   9/7/2018      Yes
## 6873        8     2329 No Holiday       68        8 13/09/2018      Yes
## 1705        0      197 No Holiday       71        0  10/2/2018      Yes
## 2941       12      818 No Holiday       50       12   2/4/2018      Yes
##      col 1528 col 1529 col 1530 col 1531 col 1532 col 1533 col 1534 col 1535
## 2151       80   Winter       17      5.7      348       14   Winter      5.7
## 7575       32   Autumn     1187     16.5     1841       14   Autumn     16.5
## 5295       89   Summer      110     20.2     1854       14   Summer     20.2
## 6873       68   Autumn     2329     20.9     2000        8   Autumn     20.9
## 1705       71   Winter      197      1.5      590        0   Winter      1.5
## 2941       50   Spring      818     20.8     1240       12   Spring     20.8
##      col 1536 col 1537 col 1538 col 1539 col 1540 col 1541 col 1542   col 1543
## 2151     0.13   Winter      0.0     0.13     0.13      348      3.7 No Holiday
## 7575     2.43   Autumn      0.0     2.43     2.43     1841      1.4 No Holiday
## 5295     0.27   Summer      0.5     0.27     0.27     1854      1.0 No Holiday
## 6873     0.18   Autumn      0.0     0.18     0.18     2000      1.3 No Holiday
## 1705     0.00   Winter      0.0     0.00     0.00      590      1.1 No Holiday
## 2941     1.82   Spring      0.0     1.82     1.82     1240      2.0 No Holiday
##      col 1544 col 1545 col 1546 col 1547 col 1548 col 1549   col 1550 col 1551
## 2151       14     0.13       14      0.0       17       17 28/02/2018       17
## 7575       14     2.43       14      0.0     1187     1187 12/10/2018     1187
## 5295       14     0.27       14      0.5      110      110   9/7/2018      110
## 6873        8     0.18        8      0.0     2329     2329 13/09/2018     2329
## 1705        0     0.00        0      0.0      197      197  10/2/2018      197
## 2941       12     1.82       12      0.0      818      818   2/4/2018      818
##      col 1552 col 1553 col 1554 col 1555 col 1556 col 1557 col 1558 col 1559
## 2151      3.7     0.13        0      3.7      Yes      Yes      0.0       14
## 7575      1.4     2.43        0      1.4      Yes      Yes      0.0       14
## 5295      1.0     0.27        0      1.0      Yes      Yes      0.5       14
## 6873      1.3     0.18        0      1.3      Yes      Yes      0.0        8
## 1705      1.1     0.00        0      1.1      Yes      Yes      0.0        0
## 2941      2.0     1.82        0      2.0      Yes      Yes      0.0       12
##      col 1560 col 1561 col 1562 col 1563 col 1564 col 1565 col 1566 col 1567
## 2151      348      Yes      3.7      348     0.13       14     0.13       14
## 7575     1841      Yes      1.4     1841     2.43       14     2.43       14
## 5295     1854      Yes      1.0     1854     0.27       14     0.27       14
## 6873     2000      Yes      1.3     2000     0.18        8     0.18        8
## 1705      590      Yes      1.1      590     0.00        0     0.00        0
## 2941     1240      Yes      2.0     1240     1.82       12     1.82       12
##      col 1568 col 1569 col 1570 col 1571 col 1572 col 1573   col 1574 col 1575
## 2151      2.5        0      Yes      348       80      2.5 No Holiday      0.0
## 7575     -0.2        0      Yes     1841       32     -0.2 No Holiday      0.0
## 5295     18.3        0      Yes     1854       89     18.3 No Holiday      0.5
## 6873     14.7        0      Yes     2000       68     14.7 No Holiday      0.0
## 1705     -3.1        0      Yes      590       71     -3.1 No Holiday      0.0
## 2941      9.9        0      Yes     1240       50      9.9 No Holiday      0.0
##      col 1576 col 1577 col 1578 col 1579 col 1580   col 1581 col 1582
## 2151      0.0      2.5      5.7      2.5     0.13 28/02/2018     0.13
## 7575      0.0     -0.2     16.5     -0.2     2.43 12/10/2018     2.43
## 5295      0.5     18.3     20.2     18.3     0.27   9/7/2018     0.27
## 6873      0.0     14.7     20.9     14.7     0.18 13/09/2018     0.18
## 1705      0.0     -3.1      1.5     -3.1     0.00  10/2/2018     0.00
## 2941      0.0      9.9     20.8      9.9     1.82   2/4/2018     1.82
##        col 1583 col 1584 col 1585 col 1586 col 1587   col 1588 col 1589
## 2151 28/02/2018        0      0.0      Yes     0.13 28/02/2018       80
## 7575 12/10/2018        0      0.0      Yes     2.43 12/10/2018       32
## 5295   9/7/2018        0      0.5      Yes     0.27   9/7/2018       89
## 6873 13/09/2018        0      0.0      Yes     0.18 13/09/2018       68
## 1705  10/2/2018        0      0.0      Yes     0.00  10/2/2018       71
## 2941   2/4/2018        0      0.0      Yes     1.82   2/4/2018       50
##      col 1590 col 1591 col 1592 col 1593 col 1594 col 1595 col 1596 col 1597
## 2151      348     0.13       14      5.7      3.7      5.7       14   Winter
## 7575     1841     2.43       14     16.5      1.4     16.5       14   Autumn
## 5295     1854     0.27       14     20.2      1.0     20.2       14   Summer
## 6873     2000     0.18        8     20.9      1.3     20.9        8   Autumn
## 1705      590     0.00        0      1.5      1.1      1.5        0   Winter
## 2941     1240     1.82       12     20.8      2.0     20.8       12   Spring
##      col 1598 col 1599 col 1600 col 1601 col 1602   col 1603 col 1604 col 1605
## 2151       14       14      2.5       17      Yes 28/02/2018       14       14
## 7575       14       14     -0.2     1187      Yes 12/10/2018       14       14
## 5295       14       14     18.3      110      Yes   9/7/2018       14       14
## 6873        8        8     14.7     2329      Yes 13/09/2018        8        8
## 1705        0        0     -3.1      197      Yes  10/2/2018        0        0
## 2941       12       12      9.9      818      Yes   2/4/2018       12       12
##      col 1606 col 1607 col 1608 col 1609 col 1610 col 1611 col 1612 col 1613
## 2151       14      3.7     0.13      5.7      5.7       17       80        0
## 7575       14      1.4     2.43     16.5     16.5     1187       32        0
## 5295       14      1.0     0.27     20.2     20.2      110       89        0
## 6873        8      1.3     0.18     20.9     20.9     2329       68        0
## 1705        0      1.1     0.00      1.5      1.5      197       71        0
## 2941       12      2.0     1.82     20.8     20.8      818       50        0
##      col 1614 col 1615   col 1616   col 1617 col 1618 col 1619 col 1620
## 2151      2.5      Yes 28/02/2018 28/02/2018        0       17   Winter
## 7575     -0.2      Yes 12/10/2018 12/10/2018        0     1187   Autumn
## 5295     18.3      Yes   9/7/2018   9/7/2018        0      110   Summer
## 6873     14.7      Yes 13/09/2018 13/09/2018        0     2329   Autumn
## 1705     -3.1      Yes  10/2/2018  10/2/2018        0      197   Winter
## 2941      9.9      Yes   2/4/2018   2/4/2018        0      818   Spring
##        col 1621 col 1622 col 1623 col 1624 col 1625   col 1626 col 1627
## 2151 No Holiday       17        0        0      0.0 28/02/2018      5.7
## 7575 No Holiday     1187        0        0      0.0 12/10/2018     16.5
## 5295 No Holiday      110        0        0      0.5   9/7/2018     20.2
## 6873 No Holiday     2329        0        0      0.0 13/09/2018     20.9
## 1705 No Holiday      197        0        0      0.0  10/2/2018      1.5
## 2941 No Holiday      818        0        0      0.0   2/4/2018     20.8
##      col 1628 col 1629 col 1630 col 1631 col 1632 col 1633 col 1634 col 1635
## 2151        0       17      Yes      3.7      348       17        0       80
## 7575        0     1187      Yes      1.4     1841     1187        0       32
## 5295        0      110      Yes      1.0     1854      110        0       89
## 6873        0     2329      Yes      1.3     2000     2329        0       68
## 1705        0      197      Yes      1.1      590      197        0       71
## 2941        0      818      Yes      2.0     1240      818        0       50
##      col 1636 col 1637 col 1638 col 1639 col 1640 col 1641   col 1642 col 1643
## 2151       80        0     0.13       80       80       80 28/02/2018   Winter
## 7575       32        0     2.43       32       32       32 12/10/2018   Autumn
## 5295       89        0     0.27       89       89       89   9/7/2018   Summer
## 6873       68        0     0.18       68       68       68 13/09/2018   Autumn
## 1705       71        0     0.00       71       71       71  10/2/2018   Winter
## 2941       50        0     1.82       50       50       50   2/4/2018   Spring
##      col 1644 col 1645   col 1646 col 1647 col 1648 col 1649 col 1650 col 1651
## 2151      Yes       17 No Holiday      Yes      3.7      3.7       14        0
## 7575      Yes     1187 No Holiday      Yes      1.4      1.4       14        0
## 5295      Yes      110 No Holiday      Yes      1.0      1.0       14        0
## 6873      Yes     2329 No Holiday      Yes      1.3      1.3        8        0
## 1705      Yes      197 No Holiday      Yes      1.1      1.1        0        0
## 2941      Yes      818 No Holiday      Yes      2.0      2.0       12        0
##      col 1652 col 1653 col 1654   col 1655 col 1656 col 1657 col 1658 col 1659
## 2151      3.7       80       80 28/02/2018      2.5       14      2.5      348
## 7575      1.4       32       32 12/10/2018     -0.2       14     -0.2     1841
## 5295      1.0       89       89   9/7/2018     18.3       14     18.3     1854
## 6873      1.3       68       68 13/09/2018     14.7        8     14.7     2000
## 1705      1.1       71       71  10/2/2018     -3.1        0     -3.1      590
## 2941      2.0       50       50   2/4/2018      9.9       12      9.9     1240
##        col 1660 col 1661 col 1662 col 1663 col 1664 col 1665 col 1666 col 1667
## 2151 No Holiday      3.7       80      2.5     0.13       17      348       17
## 7575 No Holiday      1.4       32     -0.2     2.43     1187     1841     1187
## 5295 No Holiday      1.0       89     18.3     0.27      110     1854      110
## 6873 No Holiday      1.3       68     14.7     0.18     2329     2000     2329
## 1705 No Holiday      1.1       71     -3.1     0.00      197      590      197
## 2941 No Holiday      2.0       50      9.9     1.82      818     1240      818
##        col 1668 col 1669   col 1670 col 1671   col 1672 col 1673   col 1674
## 2151 28/02/2018       17 28/02/2018       80 28/02/2018     0.13 28/02/2018
## 7575 12/10/2018     1187 12/10/2018       32 12/10/2018     2.43 12/10/2018
## 5295   9/7/2018      110   9/7/2018       89   9/7/2018     0.27   9/7/2018
## 6873 13/09/2018     2329 13/09/2018       68 13/09/2018     0.18 13/09/2018
## 1705  10/2/2018      197  10/2/2018       71  10/2/2018     0.00  10/2/2018
## 2941   2/4/2018      818   2/4/2018       50   2/4/2018     1.82   2/4/2018
##      col 1675 col 1676 col 1677 col 1678 col 1679 col 1680 col 1681 col 1682
## 2151        0   Winter   Winter       14      0.0     0.13      3.7      0.0
## 7575        0   Autumn   Autumn       14      0.0     2.43      1.4      0.0
## 5295        0   Summer   Summer       14      0.5     0.27      1.0      0.5
## 6873        0   Autumn   Autumn        8      0.0     0.18      1.3      0.0
## 1705        0   Winter   Winter        0      0.0     0.00      1.1      0.0
## 2941        0   Spring   Spring       12      0.0     1.82      2.0      0.0
##      col 1683 col 1684 col 1685 col 1686 col 1687 col 1688 col 1689 col 1690
## 2151       17   Winter   Winter      5.7       17      2.5        0      0.0
## 7575     1187   Autumn   Autumn     16.5     1187     -0.2        0      0.0
## 5295      110   Summer   Summer     20.2      110     18.3        0      0.5
## 6873     2329   Autumn   Autumn     20.9     2329     14.7        0      0.0
## 1705      197   Winter   Winter      1.5      197     -3.1        0      0.0
## 2941      818   Spring   Spring     20.8      818      9.9        0      0.0
##      col 1691 col 1692 col 1693 col 1694 col 1695 col 1696 col 1697 col 1698
## 2151     0.13      Yes      Yes      348   Winter        0      Yes      Yes
## 7575     2.43      Yes      Yes     1841   Autumn        0      Yes      Yes
## 5295     0.27      Yes      Yes     1854   Summer        0      Yes      Yes
## 6873     0.18      Yes      Yes     2000   Autumn        0      Yes      Yes
## 1705     0.00      Yes      Yes      590   Winter        0      Yes      Yes
## 2941     1.82      Yes      Yes     1240   Spring        0      Yes      Yes
##        col 1699 col 1700   col 1701 col 1702 col 1703 col 1704 col 1705
## 2151 28/02/2018      2.5 28/02/2018      3.7      3.7      3.7     0.13
## 7575 12/10/2018     -0.2 12/10/2018      1.4      1.4      1.4     2.43
## 5295   9/7/2018     18.3   9/7/2018      1.0      1.0      1.0     0.27
## 6873 13/09/2018     14.7 13/09/2018      1.3      1.3      1.3     0.18
## 1705  10/2/2018     -3.1  10/2/2018      1.1      1.1      1.1     0.00
## 2941   2/4/2018      9.9   2/4/2018      2.0      2.0      2.0     1.82
##      col 1706 col 1707 col 1708 col 1709   col 1710 col 1711 col 1712 col 1713
## 2151      2.5      348     0.13       17 28/02/2018      2.5      348   Winter
## 7575     -0.2     1841     2.43     1187 12/10/2018     -0.2     1841   Autumn
## 5295     18.3     1854     0.27      110   9/7/2018     18.3     1854   Summer
## 6873     14.7     2000     0.18     2329 13/09/2018     14.7     2000   Autumn
## 1705     -3.1      590     0.00      197  10/2/2018     -3.1      590   Winter
## 2941      9.9     1240     1.82      818   2/4/2018      9.9     1240   Spring
##      col 1714   col 1715 col 1716 col 1717 col 1718 col 1719   col 1720
## 2151      2.5 No Holiday      3.7      3.7       17      Yes 28/02/2018
## 7575     -0.2 No Holiday      1.4      1.4     1187      Yes 12/10/2018
## 5295     18.3 No Holiday      1.0      1.0      110      Yes   9/7/2018
## 6873     14.7 No Holiday      1.3      1.3     2329      Yes 13/09/2018
## 1705     -3.1 No Holiday      1.1      1.1      197      Yes  10/2/2018
## 2941      9.9 No Holiday      2.0      2.0      818      Yes   2/4/2018
##      col 1721 col 1722 col 1723 col 1724 col 1725 col 1726 col 1727 col 1728
## 2151     0.13      Yes     0.13      2.5   Winter      Yes      3.7      2.5
## 7575     2.43      Yes     2.43     -0.2   Autumn      Yes      1.4     -0.2
## 5295     0.27      Yes     0.27     18.3   Summer      Yes      1.0     18.3
## 6873     0.18      Yes     0.18     14.7   Autumn      Yes      1.3     14.7
## 1705     0.00      Yes     0.00     -3.1   Winter      Yes      1.1     -3.1
## 2941     1.82      Yes     1.82      9.9   Spring      Yes      2.0      9.9
##      col 1729 col 1730 col 1731 col 1732   col 1733 col 1734   col 1735
## 2151      5.7      0.0       17      0.0 No Holiday      3.7 28/02/2018
## 7575     16.5      0.0     1187      0.0 No Holiday      1.4 12/10/2018
## 5295     20.2      0.5      110      0.5 No Holiday      1.0   9/7/2018
## 6873     20.9      0.0     2329      0.0 No Holiday      1.3 13/09/2018
## 1705      1.5      0.0      197      0.0 No Holiday      1.1  10/2/2018
## 2941     20.8      0.0      818      0.0 No Holiday      2.0   2/4/2018
##      col 1736 col 1737 col 1738 col 1739 col 1740   col 1741   col 1742
## 2151     0.13      348       17     0.13      5.7 No Holiday 28/02/2018
## 7575     2.43     1841     1187     2.43     16.5 No Holiday 12/10/2018
## 5295     0.27     1854      110     0.27     20.2 No Holiday   9/7/2018
## 6873     0.18     2000     2329     0.18     20.9 No Holiday 13/09/2018
## 1705     0.00      590      197     0.00      1.5 No Holiday  10/2/2018
## 2941     1.82     1240      818     1.82     20.8 No Holiday   2/4/2018
##      col 1743 col 1744 col 1745   col 1746 col 1747 col 1748 col 1749 col 1750
## 2151      0.0       80      0.0 No Holiday       14     0.13       80       80
## 7575      0.0       32      0.0 No Holiday       14     2.43       32       32
## 5295      0.5       89      0.5 No Holiday       14     0.27       89       89
## 6873      0.0       68      0.0 No Holiday        8     0.18       68       68
## 1705      0.0       71      0.0 No Holiday        0     0.00       71       71
## 2941      0.0       50      0.0 No Holiday       12     1.82       50       50
##      col 1751 col 1752   col 1753 col 1754 col 1755 col 1756 col 1757 col 1758
## 2151      2.5      Yes No Holiday       17        0     0.13      348       17
## 7575     -0.2      Yes No Holiday     1187        0     2.43     1841     1187
## 5295     18.3      Yes No Holiday      110        0     0.27     1854      110
## 6873     14.7      Yes No Holiday     2329        0     0.18     2000     2329
## 1705     -3.1      Yes No Holiday      197        0     0.00      590      197
## 2941      9.9      Yes No Holiday      818        0     1.82     1240      818
##      col 1759 col 1760 col 1761 col 1762 col 1763   col 1764 col 1765 col 1766
## 2151      2.5      2.5        0      0.0     0.13 28/02/2018        0        0
## 7575     -0.2     -0.2        0      0.0     2.43 12/10/2018        0        0
## 5295     18.3     18.3        0      0.5     0.27   9/7/2018        0        0
## 6873     14.7     14.7        0      0.0     0.18 13/09/2018        0        0
## 1705     -3.1     -3.1        0      0.0     0.00  10/2/2018        0        0
## 2941      9.9      9.9        0      0.0     1.82   2/4/2018        0        0
##      col 1767 col 1768 col 1769 col 1770 col 1771 col 1772 col 1773 col 1774
## 2151      5.7      2.5      3.7      5.7   Winter      3.7       80      Yes
## 7575     16.5     -0.2      1.4     16.5   Autumn      1.4       32      Yes
## 5295     20.2     18.3      1.0     20.2   Summer      1.0       89      Yes
## 6873     20.9     14.7      1.3     20.9   Autumn      1.3       68      Yes
## 1705      1.5     -3.1      1.1      1.5   Winter      1.1       71      Yes
## 2941     20.8      9.9      2.0     20.8   Spring      2.0       50      Yes
##      col 1775 col 1776 col 1777 col 1778 col 1779 col 1780 col 1781 col 1782
## 2151     0.13      3.7       14      3.7      348      3.7     0.13     0.13
## 7575     2.43      1.4       14      1.4     1841      1.4     2.43     2.43
## 5295     0.27      1.0       14      1.0     1854      1.0     0.27     0.27
## 6873     0.18      1.3        8      1.3     2000      1.3     0.18     0.18
## 1705     0.00      1.1        0      1.1      590      1.1     0.00     0.00
## 2941     1.82      2.0       12      2.0     1240      2.0     1.82     1.82
##      col 1783   col 1784 col 1785 col 1786 col 1787 col 1788 col 1789 col 1790
## 2151      2.5 No Holiday      3.7        0        0   Winter     0.13      3.7
## 7575     -0.2 No Holiday      1.4        0        0   Autumn     2.43      1.4
## 5295     18.3 No Holiday      1.0        0        0   Summer     0.27      1.0
## 6873     14.7 No Holiday      1.3        0        0   Autumn     0.18      1.3
## 1705     -3.1 No Holiday      1.1        0        0   Winter     0.00      1.1
## 2941      9.9 No Holiday      2.0        0        0   Spring     1.82      2.0
##        col 1791 col 1792 col 1793 col 1794 col 1795 col 1796 col 1797 col 1798
## 2151 28/02/2018      2.5      348      2.5       80        0      3.7      0.0
## 7575 12/10/2018     -0.2     1841     -0.2       32        0      1.4      0.0
## 5295   9/7/2018     18.3     1854     18.3       89        0      1.0      0.5
## 6873 13/09/2018     14.7     2000     14.7       68        0      1.3      0.0
## 1705  10/2/2018     -3.1      590     -3.1       71        0      1.1      0.0
## 2941   2/4/2018      9.9     1240      9.9       50        0      2.0      0.0
##      col 1799 col 1800 col 1801 col 1802   col 1803   col 1804 col 1805
## 2151   Winter   Winter        0       14 28/02/2018 28/02/2018      3.7
## 7575   Autumn   Autumn        0       14 12/10/2018 12/10/2018      1.4
## 5295   Summer   Summer        0       14   9/7/2018   9/7/2018      1.0
## 6873   Autumn   Autumn        0        8 13/09/2018 13/09/2018      1.3
## 1705   Winter   Winter        0        0  10/2/2018  10/2/2018      1.1
## 2941   Spring   Spring        0       12   2/4/2018   2/4/2018      2.0
##      col 1806 col 1807   col 1808 col 1809   col 1810 col 1811 col 1812
## 2151       14        0 28/02/2018       17 No Holiday       17      Yes
## 7575       14        0 12/10/2018     1187 No Holiday     1187      Yes
## 5295       14        0   9/7/2018      110 No Holiday      110      Yes
## 6873        8        0 13/09/2018     2329 No Holiday     2329      Yes
## 1705        0        0  10/2/2018      197 No Holiday      197      Yes
## 2941       12        0   2/4/2018      818 No Holiday      818      Yes
##      col 1813 col 1814 col 1815 col 1816 col 1817 col 1818 col 1819 col 1820
## 2151      Yes      5.7      5.7      2.5      2.5      Yes      2.5      0.0
## 7575      Yes     16.5     16.5     -0.2     -0.2      Yes     -0.2      0.0
## 5295      Yes     20.2     20.2     18.3     18.3      Yes     18.3      0.5
## 6873      Yes     20.9     20.9     14.7     14.7      Yes     14.7      0.0
## 1705      Yes      1.5      1.5     -3.1     -3.1      Yes     -3.1      0.0
## 2941      Yes     20.8     20.8      9.9      9.9      Yes      9.9      0.0
##      col 1821 col 1822 col 1823   col 1824 col 1825 col 1826 col 1827 col 1828
## 2151      3.7      Yes   Winter No Holiday      348      2.5       80      Yes
## 7575      1.4      Yes   Autumn No Holiday     1841     -0.2       32      Yes
## 5295      1.0      Yes   Summer No Holiday     1854     18.3       89      Yes
## 6873      1.3      Yes   Autumn No Holiday     2000     14.7       68      Yes
## 1705      1.1      Yes   Winter No Holiday      590     -3.1       71      Yes
## 2941      2.0      Yes   Spring No Holiday     1240      9.9       50      Yes
##      col 1829 col 1830 col 1831 col 1832 col 1833 col 1834 col 1835 col 1836
## 2151      2.5   Winter   Winter      3.7       80        0     0.13       14
## 7575     -0.2   Autumn   Autumn      1.4       32        0     2.43       14
## 5295     18.3   Summer   Summer      1.0       89        0     0.27       14
## 6873     14.7   Autumn   Autumn      1.3       68        0     0.18        8
## 1705     -3.1   Winter   Winter      1.1       71        0     0.00        0
## 2941      9.9   Spring   Spring      2.0       50        0     1.82       12
##      col 1837 col 1838 col 1839 col 1840 col 1841 col 1842 col 1843   col 1844
## 2151       17       14      5.7       80   Winter       14      348 28/02/2018
## 7575     1187       14     16.5       32   Autumn       14     1841 12/10/2018
## 5295      110       14     20.2       89   Summer       14     1854   9/7/2018
## 6873     2329        8     20.9       68   Autumn        8     2000 13/09/2018
## 1705      197        0      1.5       71   Winter        0      590  10/2/2018
## 2941      818       12     20.8       50   Spring       12     1240   2/4/2018
##      col 1845   col 1846 col 1847 col 1848 col 1849 col 1850 col 1851
## 2151     0.13 28/02/2018      348      5.7     0.13      5.7      2.5
## 7575     2.43 12/10/2018     1841     16.5     2.43     16.5     -0.2
## 5295     0.27   9/7/2018     1854     20.2     0.27     20.2     18.3
## 6873     0.18 13/09/2018     2000     20.9     0.18     20.9     14.7
## 1705     0.00  10/2/2018      590      1.5     0.00      1.5     -3.1
## 2941     1.82   2/4/2018     1240     20.8     1.82     20.8      9.9
##        col 1852 col 1853 col 1854 col 1855   col 1856 col 1857 col 1858
## 2151 28/02/2018      3.7      348   Winter 28/02/2018      3.7       14
## 7575 12/10/2018      1.4     1841   Autumn 12/10/2018      1.4       14
## 5295   9/7/2018      1.0     1854   Summer   9/7/2018      1.0       14
## 6873 13/09/2018      1.3     2000   Autumn 13/09/2018      1.3        8
## 1705  10/2/2018      1.1      590   Winter  10/2/2018      1.1        0
## 2941   2/4/2018      2.0     1240   Spring   2/4/2018      2.0       12
##      col 1859 col 1860 col 1861 col 1862 col 1863 col 1864 col 1865 col 1866
## 2151     0.13      0.0     0.13      3.7     0.13       80     0.13      Yes
## 7575     2.43      0.0     2.43      1.4     2.43       32     2.43      Yes
## 5295     0.27      0.5     0.27      1.0     0.27       89     0.27      Yes
## 6873     0.18      0.0     0.18      1.3     0.18       68     0.18      Yes
## 1705     0.00      0.0     0.00      1.1     0.00       71     0.00      Yes
## 2941     1.82      0.0     1.82      2.0     1.82       50     1.82      Yes
##      col 1867 col 1868 col 1869 col 1870 col 1871 col 1872   col 1873 col 1874
## 2151       17   Winter       80       17      0.0       14 28/02/2018        0
## 7575     1187   Autumn       32     1187      0.0       14 12/10/2018        0
## 5295      110   Summer       89      110      0.5       14   9/7/2018        0
## 6873     2329   Autumn       68     2329      0.0        8 13/09/2018        0
## 1705      197   Winter       71      197      0.0        0  10/2/2018        0
## 2941      818   Spring       50      818      0.0       12   2/4/2018        0
##      col 1875 col 1876   col 1877 col 1878 col 1879 col 1880 col 1881 col 1882
## 2151       80      348 28/02/2018       14       17       17       14      2.5
## 7575       32     1841 12/10/2018       14     1187     1187       14     -0.2
## 5295       89     1854   9/7/2018       14      110      110       14     18.3
## 6873       68     2000 13/09/2018        8     2329     2329        8     14.7
## 1705       71      590  10/2/2018        0      197      197        0     -3.1
## 2941       50     1240   2/4/2018       12      818      818       12      9.9
##      col 1883 col 1884 col 1885 col 1886 col 1887 col 1888 col 1889 col 1890
## 2151      348      348        0     0.13      Yes      Yes      2.5     0.13
## 7575     1841     1841        0     2.43      Yes      Yes     -0.2     2.43
## 5295     1854     1854        0     0.27      Yes      Yes     18.3     0.27
## 6873     2000     2000        0     0.18      Yes      Yes     14.7     0.18
## 1705      590      590        0     0.00      Yes      Yes     -3.1     0.00
## 2941     1240     1240        0     1.82      Yes      Yes      9.9     1.82
##      col 1891 col 1892 col 1893 col 1894 col 1895   col 1896 col 1897 col 1898
## 2151      5.7      3.7        0      348      5.7 No Holiday       17      5.7
## 7575     16.5      1.4        0     1841     16.5 No Holiday     1187     16.5
## 5295     20.2      1.0        0     1854     20.2 No Holiday      110     20.2
## 6873     20.9      1.3        0     2000     20.9 No Holiday     2329     20.9
## 1705      1.5      1.1        0      590      1.5 No Holiday      197      1.5
## 2941     20.8      2.0        0     1240     20.8 No Holiday      818     20.8
##        col 1899 col 1900 col 1901 col 1902 col 1903 col 1904 col 1905
## 2151 No Holiday      3.7      Yes     0.13      5.7       80      2.5
## 7575 No Holiday      1.4      Yes     2.43     16.5       32     -0.2
## 5295 No Holiday      1.0      Yes     0.27     20.2       89     18.3
## 6873 No Holiday      1.3      Yes     0.18     20.9       68     14.7
## 1705 No Holiday      1.1      Yes     0.00      1.5       71     -3.1
## 2941 No Holiday      2.0      Yes     1.82     20.8       50      9.9
##        col 1906 col 1907 col 1908 col 1909 col 1910 col 1911 col 1912 col 1913
## 2151 No Holiday       17      348       80      2.5       17   Winter       14
## 7575 No Holiday     1187     1841       32     -0.2     1187   Autumn       14
## 5295 No Holiday      110     1854       89     18.3      110   Summer       14
## 6873 No Holiday     2329     2000       68     14.7     2329   Autumn        8
## 1705 No Holiday      197      590       71     -3.1      197   Winter        0
## 2941 No Holiday      818     1240       50      9.9      818   Spring       12
##      col 1914 col 1915 col 1916   col 1917   col 1918   col 1919 col 1920
## 2151      Yes      348     0.13 No Holiday 28/02/2018 28/02/2018        0
## 7575      Yes     1841     2.43 No Holiday 12/10/2018 12/10/2018        0
## 5295      Yes     1854     0.27 No Holiday   9/7/2018   9/7/2018        0
## 6873      Yes     2000     0.18 No Holiday 13/09/2018 13/09/2018        0
## 1705      Yes      590     0.00 No Holiday  10/2/2018  10/2/2018        0
## 2941      Yes     1240     1.82 No Holiday   2/4/2018   2/4/2018        0
##      col 1921 col 1922 col 1923 col 1924 col 1925 col 1926 col 1927 col 1928
## 2151       80      3.7       17      3.7   Winter      3.7      3.7   Winter
## 7575       32      1.4     1187      1.4   Autumn      1.4      1.4   Autumn
## 5295       89      1.0      110      1.0   Summer      1.0      1.0   Summer
## 6873       68      1.3     2329      1.3   Autumn      1.3      1.3   Autumn
## 1705       71      1.1      197      1.1   Winter      1.1      1.1   Winter
## 2941       50      2.0      818      2.0   Spring      2.0      2.0   Spring
##      col 1929 col 1930 col 1931 col 1932 col 1933 col 1934 col 1935   col 1936
## 2151      3.7       14      2.5      5.7      2.5      5.7      0.0 No Holiday
## 7575      1.4       14     -0.2     16.5     -0.2     16.5      0.0 No Holiday
## 5295      1.0       14     18.3     20.2     18.3     20.2      0.5 No Holiday
## 6873      1.3        8     14.7     20.9     14.7     20.9      0.0 No Holiday
## 1705      1.1        0     -3.1      1.5     -3.1      1.5      0.0 No Holiday
## 2941      2.0       12      9.9     20.8      9.9     20.8      0.0 No Holiday
##      col 1937 col 1938 col 1939 col 1940   col 1941 col 1942 col 1943
## 2151      5.7      5.7      2.5       80 No Holiday      5.7      Yes
## 7575     16.5     16.5     -0.2       32 No Holiday     16.5      Yes
## 5295     20.2     20.2     18.3       89 No Holiday     20.2      Yes
## 6873     20.9     20.9     14.7       68 No Holiday     20.9      Yes
## 1705      1.5      1.5     -3.1       71 No Holiday      1.5      Yes
## 2941     20.8     20.8      9.9       50 No Holiday     20.8      Yes
##        col 1944 col 1945 col 1946 col 1947 col 1948 col 1949 col 1950
## 2151 28/02/2018      2.5     0.13       17      2.5       80       80
## 7575 12/10/2018     -0.2     2.43     1187     -0.2       32       32
## 5295   9/7/2018     18.3     0.27      110     18.3       89       89
## 6873 13/09/2018     14.7     0.18     2329     14.7       68       68
## 1705  10/2/2018     -3.1     0.00      197     -3.1       71       71
## 2941   2/4/2018      9.9     1.82      818      9.9       50       50
##        col 1951 col 1952 col 1953 col 1954 col 1955 col 1956 col 1957
## 2151 No Holiday      348      348       17   Winter      348      5.7
## 7575 No Holiday     1841     1841     1187   Autumn     1841     16.5
## 5295 No Holiday     1854     1854      110   Summer     1854     20.2
## 6873 No Holiday     2000     2000     2329   Autumn     2000     20.9
## 1705 No Holiday      590      590      197   Winter      590      1.5
## 2941 No Holiday     1240     1240      818   Spring     1240     20.8
##        col 1958   col 1959 col 1960 col 1961 col 1962 col 1963 col 1964
## 2151 28/02/2018 No Holiday   Winter      3.7       14       17      Yes
## 7575 12/10/2018 No Holiday   Autumn      1.4       14     1187      Yes
## 5295   9/7/2018 No Holiday   Summer      1.0       14      110      Yes
## 6873 13/09/2018 No Holiday   Autumn      1.3        8     2329      Yes
## 1705  10/2/2018 No Holiday   Winter      1.1        0      197      Yes
## 2941   2/4/2018 No Holiday   Spring      2.0       12      818      Yes
##        col 1965 col 1966 col 1967 col 1968 col 1969   col 1970 col 1971
## 2151 No Holiday        0       80      Yes        0 No Holiday       17
## 7575 No Holiday        0       32      Yes        0 No Holiday     1187
## 5295 No Holiday        0       89      Yes        0 No Holiday      110
## 6873 No Holiday        0       68      Yes        0 No Holiday     2329
## 1705 No Holiday        0       71      Yes        0 No Holiday      197
## 2941 No Holiday        0       50      Yes        0 No Holiday      818
##      col 1972   col 1973 col 1974 col 1975 col 1976 col 1977   col 1978
## 2151      0.0 No Holiday       17       14      5.7       17 No Holiday
## 7575      0.0 No Holiday     1187       14     16.5     1187 No Holiday
## 5295      0.5 No Holiday      110       14     20.2      110 No Holiday
## 6873      0.0 No Holiday     2329        8     20.9     2329 No Holiday
## 1705      0.0 No Holiday      197        0      1.5      197 No Holiday
## 2941      0.0 No Holiday      818       12     20.8      818 No Holiday
##      col 1979 col 1980 col 1981   col 1982 col 1983 col 1984   col 1985
## 2151      3.7      3.7      5.7 28/02/2018      5.7      3.7 No Holiday
## 7575      1.4      1.4     16.5 12/10/2018     16.5      1.4 No Holiday
## 5295      1.0      1.0     20.2   9/7/2018     20.2      1.0 No Holiday
## 6873      1.3      1.3     20.9 13/09/2018     20.9      1.3 No Holiday
## 1705      1.1      1.1      1.5  10/2/2018      1.5      1.1 No Holiday
## 2941      2.0      2.0     20.8   2/4/2018     20.8      2.0 No Holiday
##        col 1986 col 1987 col 1988   col 1989 col 1990 col 1991 col 1992
## 2151 No Holiday       14      5.7 28/02/2018       14      2.5       17
## 7575 No Holiday       14     16.5 12/10/2018       14     -0.2     1187
## 5295 No Holiday       14     20.2   9/7/2018       14     18.3      110
## 6873 No Holiday        8     20.9 13/09/2018        8     14.7     2329
## 1705 No Holiday        0      1.5  10/2/2018        0     -3.1      197
## 2941 No Holiday       12     20.8   2/4/2018       12      9.9      818
##      col 1993   col 1994   col 1995 col 1996 col 1997   col 1998 col 1999
## 2151      5.7 28/02/2018 No Holiday     0.13       80 28/02/2018   Winter
## 7575     16.5 12/10/2018 No Holiday     2.43       32 12/10/2018   Autumn
## 5295     20.2   9/7/2018 No Holiday     0.27       89   9/7/2018   Summer
## 6873     20.9 13/09/2018 No Holiday     0.18       68 13/09/2018   Autumn
## 1705      1.5  10/2/2018 No Holiday     0.00       71  10/2/2018   Winter
## 2941     20.8   2/4/2018 No Holiday     1.82       50   2/4/2018   Spring
##        col 2000 col 2001 col 2002 col 2003 col 2004 col 2005 col 2006 col 2007
## 2151 No Holiday      348       14       17      348     0.13      Yes      3.7
## 7575 No Holiday     1841       14     1187     1841     2.43      Yes      1.4
## 5295 No Holiday     1854       14      110     1854     0.27      Yes      1.0
## 6873 No Holiday     2000        8     2329     2000     0.18      Yes      1.3
## 1705 No Holiday      590        0      197      590     0.00      Yes      1.1
## 2941 No Holiday     1240       12      818     1240     1.82      Yes      2.0
##      col 2008 col 2009 col 2010 col 2011 col 2012 col 2013 col 2014 col 2015
## 2151       17      3.7      348      5.7      5.7     0.13       17      348
## 7575     1187      1.4     1841     16.5     16.5     2.43     1187     1841
## 5295      110      1.0     1854     20.2     20.2     0.27      110     1854
## 6873     2329      1.3     2000     20.9     20.9     0.18     2329     2000
## 1705      197      1.1      590      1.5      1.5     0.00      197      590
## 2941      818      2.0     1240     20.8     20.8     1.82      818     1240
##        col 2016 col 2017 col 2018 col 2019   col 2020 col 2021 col 2022
## 2151 No Holiday      2.5      3.7      2.5 No Holiday     0.13      Yes
## 7575 No Holiday     -0.2      1.4     -0.2 No Holiday     2.43      Yes
## 5295 No Holiday     18.3      1.0     18.3 No Holiday     0.27      Yes
## 6873 No Holiday     14.7      1.3     14.7 No Holiday     0.18      Yes
## 1705 No Holiday     -3.1      1.1     -3.1 No Holiday     0.00      Yes
## 2941 No Holiday      9.9      2.0      9.9 No Holiday     1.82      Yes
##      col 2023 col 2024 col 2025 col 2026 col 2027 col 2028 col 2029 col 2030
## 2151       14     0.13   Winter      5.7      Yes      348     0.13      5.7
## 7575       14     2.43   Autumn     16.5      Yes     1841     2.43     16.5
## 5295       14     0.27   Summer     20.2      Yes     1854     0.27     20.2
## 6873        8     0.18   Autumn     20.9      Yes     2000     0.18     20.9
## 1705        0     0.00   Winter      1.5      Yes      590     0.00      1.5
## 2941       12     1.82   Spring     20.8      Yes     1240     1.82     20.8
##      col 2031 col 2032   col 2033 col 2034 col 2035 col 2036 col 2037 col 2038
## 2151      3.7      0.0 No Holiday      2.5        0      5.7     0.13        0
## 7575      1.4      0.0 No Holiday     -0.2        0     16.5     2.43        0
## 5295      1.0      0.5 No Holiday     18.3        0     20.2     0.27        0
## 6873      1.3      0.0 No Holiday     14.7        0     20.9     0.18        0
## 1705      1.1      0.0 No Holiday     -3.1        0      1.5     0.00        0
## 2941      2.0      0.0 No Holiday      9.9        0     20.8     1.82        0
##      col 2039 col 2040 col 2041 col 2042 col 2043 col 2044 col 2045 col 2046
## 2151   Winter   Winter      3.7   Winter       80      2.5       80        0
## 7575   Autumn   Autumn      1.4   Autumn       32     -0.2       32        0
## 5295   Summer   Summer      1.0   Summer       89     18.3       89        0
## 6873   Autumn   Autumn      1.3   Autumn       68     14.7       68        0
## 1705   Winter   Winter      1.1   Winter       71     -3.1       71        0
## 2941   Spring   Spring      2.0   Spring       50      9.9       50        0
##      col 2047 col 2048 col 2049 col 2050 col 2051 col 2052   col 2053 col 2054
## 2151       14      0.0   Winter        0       14        0 28/02/2018      348
## 7575       14      0.0   Autumn        0       14        0 12/10/2018     1841
## 5295       14      0.5   Summer        0       14        0   9/7/2018     1854
## 6873        8      0.0   Autumn        0        8        0 13/09/2018     2000
## 1705        0      0.0   Winter        0        0        0  10/2/2018      590
## 2941       12      0.0   Spring        0       12        0   2/4/2018     1240
##        col 2055 col 2056 col 2057 col 2058 col 2059 col 2060 col 2061 col 2062
## 2151 No Holiday      5.7   Winter       17       14       17       14      348
## 7575 No Holiday     16.5   Autumn     1187       14     1187       14     1841
## 5295 No Holiday     20.2   Summer      110       14      110       14     1854
## 6873 No Holiday     20.9   Autumn     2329        8     2329        8     2000
## 1705 No Holiday      1.5   Winter      197        0      197        0      590
## 2941 No Holiday     20.8   Spring      818       12      818       12     1240
##        col 2063 col 2064 col 2065 col 2066   col 2067   col 2068 col 2069
## 2151 28/02/2018      348       80       17 28/02/2018 No Holiday       14
## 7575 12/10/2018     1841       32     1187 12/10/2018 No Holiday       14
## 5295   9/7/2018     1854       89      110   9/7/2018 No Holiday       14
## 6873 13/09/2018     2000       68     2329 13/09/2018 No Holiday        8
## 1705  10/2/2018      590       71      197  10/2/2018 No Holiday        0
## 2941   2/4/2018     1240       50      818   2/4/2018 No Holiday       12
##      col 2070 col 2071 col 2072 col 2073 col 2074 col 2075   col 2076 col 2077
## 2151        0      5.7      348      348      2.5      0.0 No Holiday   Winter
## 7575        0     16.5     1841     1841     -0.2      0.0 No Holiday   Autumn
## 5295        0     20.2     1854     1854     18.3      0.5 No Holiday   Summer
## 6873        0     20.9     2000     2000     14.7      0.0 No Holiday   Autumn
## 1705        0      1.5      590      590     -3.1      0.0 No Holiday   Winter
## 2941        0     20.8     1240     1240      9.9      0.0 No Holiday   Spring
##        col 2078 col 2079 col 2080 col 2081 col 2082 col 2083 col 2084 col 2085
## 2151 No Holiday        0      2.5      3.7      5.7       80   Winter      Yes
## 7575 No Holiday        0     -0.2      1.4     16.5       32   Autumn      Yes
## 5295 No Holiday        0     18.3      1.0     20.2       89   Summer      Yes
## 6873 No Holiday        0     14.7      1.3     20.9       68   Autumn      Yes
## 1705 No Holiday        0     -3.1      1.1      1.5       71   Winter      Yes
## 2941 No Holiday        0      9.9      2.0     20.8       50   Spring      Yes
##      col 2086 col 2087 col 2088 col 2089   col 2090 col 2091 col 2092 col 2093
## 2151      348      3.7   Winter      0.0 No Holiday        0     0.13        0
## 7575     1841      1.4   Autumn      0.0 No Holiday        0     2.43        0
## 5295     1854      1.0   Summer      0.5 No Holiday        0     0.27        0
## 6873     2000      1.3   Autumn      0.0 No Holiday        0     0.18        0
## 1705      590      1.1   Winter      0.0 No Holiday        0     0.00        0
## 2941     1240      2.0   Spring      0.0 No Holiday        0     1.82        0
##        col 2094 col 2095 col 2096 col 2097   col 2098 col 2099 col 2100
## 2151 28/02/2018       14   Winter       80 28/02/2018      2.5       17
## 7575 12/10/2018       14   Autumn       32 12/10/2018     -0.2     1187
## 5295   9/7/2018       14   Summer       89   9/7/2018     18.3      110
## 6873 13/09/2018        8   Autumn       68 13/09/2018     14.7     2329
## 1705  10/2/2018        0   Winter       71  10/2/2018     -3.1      197
## 2941   2/4/2018       12   Spring       50   2/4/2018      9.9      818
##      col 2101 col 2102 col 2103 col 2104 col 2105 col 2106 col 2107 col 2108
## 2151      348   Winter      Yes      5.7      Yes      3.7     0.13      Yes
## 7575     1841   Autumn      Yes     16.5      Yes      1.4     2.43      Yes
## 5295     1854   Summer      Yes     20.2      Yes      1.0     0.27      Yes
## 6873     2000   Autumn      Yes     20.9      Yes      1.3     0.18      Yes
## 1705      590   Winter      Yes      1.5      Yes      1.1     0.00      Yes
## 2941     1240   Spring      Yes     20.8      Yes      2.0     1.82      Yes
##      col 2109 col 2110 col 2111 col 2112 col 2113 col 2114   col 2115 col 2116
## 2151       80      5.7      5.7     0.13      2.5        0 28/02/2018       17
## 7575       32     16.5     16.5     2.43     -0.2        0 12/10/2018     1187
## 5295       89     20.2     20.2     0.27     18.3        0   9/7/2018      110
## 6873       68     20.9     20.9     0.18     14.7        0 13/09/2018     2329
## 1705       71      1.5      1.5     0.00     -3.1        0  10/2/2018      197
## 2941       50     20.8     20.8     1.82      9.9        0   2/4/2018      818
##      col 2117 col 2118 col 2119 col 2120 col 2121 col 2122 col 2123 col 2124
## 2151      3.7      2.5      3.7      3.7      3.7      Yes   Winter      0.0
## 7575      1.4     -0.2      1.4      1.4      1.4      Yes   Autumn      0.0
## 5295      1.0     18.3      1.0      1.0      1.0      Yes   Summer      0.5
## 6873      1.3     14.7      1.3      1.3      1.3      Yes   Autumn      0.0
## 1705      1.1     -3.1      1.1      1.1      1.1      Yes   Winter      0.0
## 2941      2.0      9.9      2.0      2.0      2.0      Yes   Spring      0.0
##      col 2125 col 2126   col 2127 col 2128   col 2129 col 2130 col 2131
## 2151      5.7      2.5 No Holiday       14 28/02/2018      0.0        0
## 7575     16.5     -0.2 No Holiday       14 12/10/2018      0.0        0
## 5295     20.2     18.3 No Holiday       14   9/7/2018      0.5        0
## 6873     20.9     14.7 No Holiday        8 13/09/2018      0.0        0
## 1705      1.5     -3.1 No Holiday        0  10/2/2018      0.0        0
## 2941     20.8      9.9 No Holiday       12   2/4/2018      0.0        0
##      col 2132 col 2133 col 2134 col 2135 col 2136 col 2137 col 2138 col 2139
## 2151       14      0.0      3.7      0.0      348       17       14        0
## 7575       14      0.0      1.4      0.0     1841     1187       14        0
## 5295       14      0.5      1.0      0.5     1854      110       14        0
## 6873        8      0.0      1.3      0.0     2000     2329        8        0
## 1705        0      0.0      1.1      0.0      590      197        0        0
## 2941       12      0.0      2.0      0.0     1240      818       12        0
##      col 2140 col 2141 col 2142 col 2143 col 2144 col 2145 col 2146 col 2147
## 2151       14        0        0   Winter      2.5       80      3.7      2.5
## 7575       14        0        0   Autumn     -0.2       32      1.4     -0.2
## 5295       14        0        0   Summer     18.3       89      1.0     18.3
## 6873        8        0        0   Autumn     14.7       68      1.3     14.7
## 1705        0        0        0   Winter     -3.1       71      1.1     -3.1
## 2941       12        0        0   Spring      9.9       50      2.0      9.9
##        col 2148 col 2149 col 2150 col 2151 col 2152 col 2153 col 2154 col 2155
## 2151 No Holiday      5.7      Yes   Winter      3.7      0.0       14       17
## 7575 No Holiday     16.5      Yes   Autumn      1.4      0.0       14     1187
## 5295 No Holiday     20.2      Yes   Summer      1.0      0.5       14      110
## 6873 No Holiday     20.9      Yes   Autumn      1.3      0.0        8     2329
## 1705 No Holiday      1.5      Yes   Winter      1.1      0.0        0      197
## 2941 No Holiday     20.8      Yes   Spring      2.0      0.0       12      818
##      col 2156 col 2157 col 2158 col 2159 col 2160 col 2161 col 2162   col 2163
## 2151       14      5.7      0.0      5.7       14      2.5      0.0 28/02/2018
## 7575       14     16.5      0.0     16.5       14     -0.2      0.0 12/10/2018
## 5295       14     20.2      0.5     20.2       14     18.3      0.5   9/7/2018
## 6873        8     20.9      0.0     20.9        8     14.7      0.0 13/09/2018
## 1705        0      1.5      0.0      1.5        0     -3.1      0.0  10/2/2018
## 2941       12     20.8      0.0     20.8       12      9.9      0.0   2/4/2018
##      col 2164 col 2165 col 2166   col 2167 col 2168 col 2169 col 2170 col 2171
## 2151        0      Yes       14 No Holiday       17      0.0      0.0       80
## 7575        0      Yes       14 No Holiday     1187      0.0      0.0       32
## 5295        0      Yes       14 No Holiday      110      0.5      0.5       89
## 6873        0      Yes        8 No Holiday     2329      0.0      0.0       68
## 1705        0      Yes        0 No Holiday      197      0.0      0.0       71
## 2941        0      Yes       12 No Holiday      818      0.0      0.0       50
##      col 2172 col 2173 col 2174 col 2175 col 2176 col 2177 col 2178 col 2179
## 2151       14     0.13      3.7      2.5       17      Yes      2.5        0
## 7575       14     2.43      1.4     -0.2     1187      Yes     -0.2        0
## 5295       14     0.27      1.0     18.3      110      Yes     18.3        0
## 6873        8     0.18      1.3     14.7     2329      Yes     14.7        0
## 1705        0     0.00      1.1     -3.1      197      Yes     -3.1        0
## 2941       12     1.82      2.0      9.9      818      Yes      9.9        0
##      col 2180   col 2181 col 2182 col 2183 col 2184 col 2185 col 2186 col 2187
## 2151      2.5 No Holiday      348     0.13      348   Winter        0     0.13
## 7575     -0.2 No Holiday     1841     2.43     1841   Autumn        0     2.43
## 5295     18.3 No Holiday     1854     0.27     1854   Summer        0     0.27
## 6873     14.7 No Holiday     2000     0.18     2000   Autumn        0     0.18
## 1705     -3.1 No Holiday      590     0.00      590   Winter        0     0.00
## 2941      9.9 No Holiday     1240     1.82     1240   Spring        0     1.82
##      col 2188 col 2189 col 2190 col 2191 col 2192   col 2193 col 2194 col 2195
## 2151      3.7        0      0.0       14      2.5 28/02/2018       14     0.13
## 7575      1.4        0      0.0       14     -0.2 12/10/2018       14     2.43
## 5295      1.0        0      0.5       14     18.3   9/7/2018       14     0.27
## 6873      1.3        0      0.0        8     14.7 13/09/2018        8     0.18
## 1705      1.1        0      0.0        0     -3.1  10/2/2018        0     0.00
## 2941      2.0        0      0.0       12      9.9   2/4/2018       12     1.82
##      col 2196 col 2197 col 2198 col 2199 col 2200 col 2201 col 2202 col 2203
## 2151   Winter      2.5       17      2.5      348      348      348      348
## 7575   Autumn     -0.2     1187     -0.2     1841     1841     1841     1841
## 5295   Summer     18.3      110     18.3     1854     1854     1854     1854
## 6873   Autumn     14.7     2329     14.7     2000     2000     2000     2000
## 1705   Winter     -3.1      197     -3.1      590      590      590      590
## 2941   Spring      9.9      818      9.9     1240     1240     1240     1240
##      col 2204 col 2205 col 2206 col 2207 col 2208 col 2209 col 2210 col 2211
## 2151      0.0        0       17       14      3.7     0.13      348      5.7
## 7575      0.0        0     1187       14      1.4     2.43     1841     16.5
## 5295      0.5        0      110       14      1.0     0.27     1854     20.2
## 6873      0.0        0     2329        8      1.3     0.18     2000     20.9
## 1705      0.0        0      197        0      1.1     0.00      590      1.5
## 2941      0.0        0      818       12      2.0     1.82     1240     20.8
##      col 2212 col 2213 col 2214   col 2215   col 2216 col 2217 col 2218
## 2151      0.0      Yes      348 28/02/2018 28/02/2018      Yes        0
## 7575      0.0      Yes     1841 12/10/2018 12/10/2018      Yes        0
## 5295      0.5      Yes     1854   9/7/2018   9/7/2018      Yes        0
## 6873      0.0      Yes     2000 13/09/2018 13/09/2018      Yes        0
## 1705      0.0      Yes      590  10/2/2018  10/2/2018      Yes        0
## 2941      0.0      Yes     1240   2/4/2018   2/4/2018      Yes        0
##      col 2219 col 2220 col 2221 col 2222 col 2223   col 2224 col 2225
## 2151      2.5       17       17      2.5       17 28/02/2018       14
## 7575     -0.2     1187     1187     -0.2     1187 12/10/2018       14
## 5295     18.3      110      110     18.3      110   9/7/2018       14
## 6873     14.7     2329     2329     14.7     2329 13/09/2018        8
## 1705     -3.1      197      197     -3.1      197  10/2/2018        0
## 2941      9.9      818      818      9.9      818   2/4/2018       12
##        col 2226   col 2227 col 2228 col 2229 col 2230 col 2231 col 2232
## 2151 No Holiday No Holiday       14   Winter      Yes      5.7        0
## 7575 No Holiday No Holiday       14   Autumn      Yes     16.5        0
## 5295 No Holiday No Holiday       14   Summer      Yes     20.2        0
## 6873 No Holiday No Holiday        8   Autumn      Yes     20.9        0
## 1705 No Holiday No Holiday        0   Winter      Yes      1.5        0
## 2941 No Holiday No Holiday       12   Spring      Yes     20.8        0
##      col 2233 col 2234   col 2235 col 2236   col 2237 col 2238 col 2239
## 2151     0.13        0 No Holiday      5.7 28/02/2018      0.0        0
## 7575     2.43        0 No Holiday     16.5 12/10/2018      0.0        0
## 5295     0.27        0 No Holiday     20.2   9/7/2018      0.5        0
## 6873     0.18        0 No Holiday     20.9 13/09/2018      0.0        0
## 1705     0.00        0 No Holiday      1.5  10/2/2018      0.0        0
## 2941     1.82        0 No Holiday     20.8   2/4/2018      0.0        0
##      col 2240 col 2241   col 2242 col 2243 col 2244 col 2245 col 2246 col 2247
## 2151   Winter      2.5 28/02/2018   Winter      Yes       14      2.5      5.7
## 7575   Autumn     -0.2 12/10/2018   Autumn      Yes       14     -0.2     16.5
## 5295   Summer     18.3   9/7/2018   Summer      Yes       14     18.3     20.2
## 6873   Autumn     14.7 13/09/2018   Autumn      Yes        8     14.7     20.9
## 1705   Winter     -3.1  10/2/2018   Winter      Yes        0     -3.1      1.5
## 2941   Spring      9.9   2/4/2018   Spring      Yes       12      9.9     20.8
##      col 2248 col 2249 col 2250 col 2251 col 2252 col 2253 col 2254 col 2255
## 2151      0.0      2.5   Winter        0   Winter       17      Yes      Yes
## 7575      0.0     -0.2   Autumn        0   Autumn     1187      Yes      Yes
## 5295      0.5     18.3   Summer        0   Summer      110      Yes      Yes
## 6873      0.0     14.7   Autumn        0   Autumn     2329      Yes      Yes
## 1705      0.0     -3.1   Winter        0   Winter      197      Yes      Yes
## 2941      0.0      9.9   Spring        0   Spring      818      Yes      Yes
##      col 2256 col 2257 col 2258 col 2259 col 2260 col 2261 col 2262 col 2263
## 2151       17       17       14     0.13      3.7      348     0.13     0.13
## 7575     1187     1187       14     2.43      1.4     1841     2.43     2.43
## 5295      110      110       14     0.27      1.0     1854     0.27     0.27
## 6873     2329     2329        8     0.18      1.3     2000     0.18     0.18
## 1705      197      197        0     0.00      1.1      590     0.00     0.00
## 2941      818      818       12     1.82      2.0     1240     1.82     1.82
##      col 2264 col 2265 col 2266 col 2267 col 2268 col 2269 col 2270 col 2271
## 2151       80        0      2.5      0.0     0.13      3.7        0   Winter
## 7575       32        0     -0.2      0.0     2.43      1.4        0   Autumn
## 5295       89        0     18.3      0.5     0.27      1.0        0   Summer
## 6873       68        0     14.7      0.0     0.18      1.3        0   Autumn
## 1705       71        0     -3.1      0.0     0.00      1.1        0   Winter
## 2941       50        0      9.9      0.0     1.82      2.0        0   Spring
##      col 2272   col 2273 col 2274   col 2275 col 2276 col 2277   col 2278
## 2151      0.0 No Holiday       14 28/02/2018   Winter       80 28/02/2018
## 7575      0.0 No Holiday       14 12/10/2018   Autumn       32 12/10/2018
## 5295      0.5 No Holiday       14   9/7/2018   Summer       89   9/7/2018
## 6873      0.0 No Holiday        8 13/09/2018   Autumn       68 13/09/2018
## 1705      0.0 No Holiday        0  10/2/2018   Winter       71  10/2/2018
## 2941      0.0 No Holiday       12   2/4/2018   Spring       50   2/4/2018
##      col 2279 col 2280 col 2281 col 2282 col 2283 col 2284 col 2285   col 2286
## 2151      0.0      2.5      5.7        0       14      0.0   Winter No Holiday
## 7575      0.0     -0.2     16.5        0       14      0.0   Autumn No Holiday
## 5295      0.5     18.3     20.2        0       14      0.5   Summer No Holiday
## 6873      0.0     14.7     20.9        0        8      0.0   Autumn No Holiday
## 1705      0.0     -3.1      1.5        0        0      0.0   Winter No Holiday
## 2941      0.0      9.9     20.8        0       12      0.0   Spring No Holiday
##      col 2287   col 2288 col 2289 col 2290   col 2291 col 2292 col 2293
## 2151      348 28/02/2018      348      Yes No Holiday      Yes      348
## 7575     1841 12/10/2018     1841      Yes No Holiday      Yes     1841
## 5295     1854   9/7/2018     1854      Yes No Holiday      Yes     1854
## 6873     2000 13/09/2018     2000      Yes No Holiday      Yes     2000
## 1705      590  10/2/2018      590      Yes No Holiday      Yes      590
## 2941     1240   2/4/2018     1240      Yes No Holiday      Yes     1240
##      col 2294   col 2295 col 2296 col 2297 col 2298 col 2299 col 2300 col 2301
## 2151       14 No Holiday      3.7      0.0       14      2.5      5.7     0.13
## 7575       14 No Holiday      1.4      0.0       14     -0.2     16.5     2.43
## 5295       14 No Holiday      1.0      0.5       14     18.3     20.2     0.27
## 6873        8 No Holiday      1.3      0.0        8     14.7     20.9     0.18
## 1705        0 No Holiday      1.1      0.0        0     -3.1      1.5     0.00
## 2941       12 No Holiday      2.0      0.0       12      9.9     20.8     1.82
##      col 2302 col 2303 col 2304 col 2305 col 2306 col 2307 col 2308 col 2309
## 2151       14      3.7        0      3.7   Winter       80   Winter       14
## 7575       14      1.4        0      1.4   Autumn       32   Autumn       14
## 5295       14      1.0        0      1.0   Summer       89   Summer       14
## 6873        8      1.3        0      1.3   Autumn       68   Autumn        8
## 1705        0      1.1        0      1.1   Winter       71   Winter        0
## 2941       12      2.0        0      2.0   Spring       50   Spring       12
##      col 2310 col 2311 col 2312 col 2313 col 2314 col 2315 col 2316 col 2317
## 2151       80      3.7   Winter      3.7        0       14   Winter       80
## 7575       32      1.4   Autumn      1.4        0       14   Autumn       32
## 5295       89      1.0   Summer      1.0        0       14   Summer       89
## 6873       68      1.3   Autumn      1.3        0        8   Autumn       68
## 1705       71      1.1   Winter      1.1        0        0   Winter       71
## 2941       50      2.0   Spring      2.0        0       12   Spring       50
##      col 2318 col 2319 col 2320 col 2321   col 2322   col 2323 col 2324
## 2151        0      5.7      3.7      348 28/02/2018 28/02/2018      3.7
## 7575        0     16.5      1.4     1841 12/10/2018 12/10/2018      1.4
## 5295        0     20.2      1.0     1854   9/7/2018   9/7/2018      1.0
## 6873        0     20.9      1.3     2000 13/09/2018 13/09/2018      1.3
## 1705        0      1.5      1.1      590  10/2/2018  10/2/2018      1.1
## 2941        0     20.8      2.0     1240   2/4/2018   2/4/2018      2.0
##      col 2325 col 2326 col 2327 col 2328 col 2329 col 2330 col 2331   col 2332
## 2151      2.5     0.13      3.7      5.7       80      348     0.13 28/02/2018
## 7575     -0.2     2.43      1.4     16.5       32     1841     2.43 12/10/2018
## 5295     18.3     0.27      1.0     20.2       89     1854     0.27   9/7/2018
## 6873     14.7     0.18      1.3     20.9       68     2000     0.18 13/09/2018
## 1705     -3.1     0.00      1.1      1.5       71      590     0.00  10/2/2018
## 2941      9.9     1.82      2.0     20.8       50     1240     1.82   2/4/2018
##      col 2333 col 2334 col 2335 col 2336 col 2337   col 2338 col 2339 col 2340
## 2151      5.7   Winter       14       14       17 28/02/2018      3.7       80
## 7575     16.5   Autumn       14       14     1187 12/10/2018      1.4       32
## 5295     20.2   Summer       14       14      110   9/7/2018      1.0       89
## 6873     20.9   Autumn        8        8     2329 13/09/2018      1.3       68
## 1705      1.5   Winter        0        0      197  10/2/2018      1.1       71
## 2941     20.8   Spring       12       12      818   2/4/2018      2.0       50
##      col 2341 col 2342 col 2343 col 2344   col 2345 col 2346 col 2347 col 2348
## 2151      2.5      3.7        0       14 No Holiday      348     0.13       80
## 7575     -0.2      1.4        0       14 No Holiday     1841     2.43       32
## 5295     18.3      1.0        0       14 No Holiday     1854     0.27       89
## 6873     14.7      1.3        0        8 No Holiday     2000     0.18       68
## 1705     -3.1      1.1        0        0 No Holiday      590     0.00       71
## 2941      9.9      2.0        0       12 No Holiday     1240     1.82       50
##        col 2349 col 2350 col 2351 col 2352 col 2353 col 2354 col 2355 col 2356
## 2151 28/02/2018        0      348      2.5   Winter        0      Yes      2.5
## 7575 12/10/2018        0     1841     -0.2   Autumn        0      Yes     -0.2
## 5295   9/7/2018        0     1854     18.3   Summer        0      Yes     18.3
## 6873 13/09/2018        0     2000     14.7   Autumn        0      Yes     14.7
## 1705  10/2/2018        0      590     -3.1   Winter        0      Yes     -3.1
## 2941   2/4/2018        0     1240      9.9   Spring        0      Yes      9.9
##        col 2357 col 2358 col 2359 col 2360 col 2361 col 2362 col 2363 col 2364
## 2151 No Holiday       80      5.7       14      348       80   Winter       80
## 7575 No Holiday       32     16.5       14     1841       32   Autumn       32
## 5295 No Holiday       89     20.2       14     1854       89   Summer       89
## 6873 No Holiday       68     20.9        8     2000       68   Autumn       68
## 1705 No Holiday       71      1.5        0      590       71   Winter       71
## 2941 No Holiday       50     20.8       12     1240       50   Spring       50
##      col 2365 col 2366 col 2367 col 2368 col 2369 col 2370 col 2371 col 2372
## 2151      Yes   Winter       80      5.7   Winter       17      5.7   Winter
## 7575      Yes   Autumn       32     16.5   Autumn     1187     16.5   Autumn
## 5295      Yes   Summer       89     20.2   Summer      110     20.2   Summer
## 6873      Yes   Autumn       68     20.9   Autumn     2329     20.9   Autumn
## 1705      Yes   Winter       71      1.5   Winter      197      1.5   Winter
## 2941      Yes   Spring       50     20.8   Spring      818     20.8   Spring
##      col 2373   col 2374 col 2375 col 2376   col 2377 col 2378 col 2379
## 2151        0 28/02/2018      348      Yes 28/02/2018       14      0.0
## 7575        0 12/10/2018     1841      Yes 12/10/2018       14      0.0
## 5295        0   9/7/2018     1854      Yes   9/7/2018       14      0.5
## 6873        0 13/09/2018     2000      Yes 13/09/2018        8      0.0
## 1705        0  10/2/2018      590      Yes  10/2/2018        0      0.0
## 2941        0   2/4/2018     1240      Yes   2/4/2018       12      0.0
##      col 2380   col 2381 col 2382 col 2383 col 2384   col 2385 col 2386
## 2151       17 No Holiday       17       80      5.7 28/02/2018      348
## 7575     1187 No Holiday     1187       32     16.5 12/10/2018     1841
## 5295      110 No Holiday      110       89     20.2   9/7/2018     1854
## 6873     2329 No Holiday     2329       68     20.9 13/09/2018     2000
## 1705      197 No Holiday      197       71      1.5  10/2/2018      590
## 2941      818 No Holiday      818       50     20.8   2/4/2018     1240
##      col 2387 col 2388 col 2389 col 2390 col 2391 col 2392 col 2393 col 2394
## 2151     0.13      3.7       17       14     0.13      5.7     0.13        0
## 7575     2.43      1.4     1187       14     2.43     16.5     2.43        0
## 5295     0.27      1.0      110       14     0.27     20.2     0.27        0
## 6873     0.18      1.3     2329        8     0.18     20.9     0.18        0
## 1705     0.00      1.1      197        0     0.00      1.5     0.00        0
## 2941     1.82      2.0      818       12     1.82     20.8     1.82        0
##      col 2395 col 2396 col 2397 col 2398   col 2399 col 2400 col 2401 col 2402
## 2151     0.13       17      348       80 28/02/2018   Winter      3.7      348
## 7575     2.43     1187     1841       32 12/10/2018   Autumn      1.4     1841
## 5295     0.27      110     1854       89   9/7/2018   Summer      1.0     1854
## 6873     0.18     2329     2000       68 13/09/2018   Autumn      1.3     2000
## 1705     0.00      197      590       71  10/2/2018   Winter      1.1      590
## 2941     1.82      818     1240       50   2/4/2018   Spring      2.0     1240
##      col 2403 col 2404 col 2405 col 2406   col 2407 col 2408   col 2409
## 2151      Yes   Winter        0   Winter No Holiday      5.7 28/02/2018
## 7575      Yes   Autumn        0   Autumn No Holiday     16.5 12/10/2018
## 5295      Yes   Summer        0   Summer No Holiday     20.2   9/7/2018
## 6873      Yes   Autumn        0   Autumn No Holiday     20.9 13/09/2018
## 1705      Yes   Winter        0   Winter No Holiday      1.5  10/2/2018
## 2941      Yes   Spring        0   Spring No Holiday     20.8   2/4/2018
##        col 2410 col 2411 col 2412 col 2413 col 2414 col 2415 col 2416 col 2417
## 2151 28/02/2018        0       17      5.7      5.7        0       80       14
## 7575 12/10/2018        0     1187     16.5     16.5        0       32       14
## 5295   9/7/2018        0      110     20.2     20.2        0       89       14
## 6873 13/09/2018        0     2329     20.9     20.9        0       68        8
## 1705  10/2/2018        0      197      1.5      1.5        0       71        0
## 2941   2/4/2018        0      818     20.8     20.8        0       50       12
##      col 2418 col 2419 col 2420 col 2421 col 2422 col 2423 col 2424 col 2425
## 2151        0      348      2.5        0        0       80       14      348
## 7575        0     1841     -0.2        0        0       32       14     1841
## 5295        0     1854     18.3        0        0       89       14     1854
## 6873        0     2000     14.7        0        0       68        8     2000
## 1705        0      590     -3.1        0        0       71        0      590
## 2941        0     1240      9.9        0        0       50       12     1240
##      col 2426 col 2427 col 2428 col 2429 col 2430 col 2431 col 2432 col 2433
## 2151   Winter       17      5.7       80      Yes     0.13      2.5      0.0
## 7575   Autumn     1187     16.5       32      Yes     2.43     -0.2      0.0
## 5295   Summer      110     20.2       89      Yes     0.27     18.3      0.5
## 6873   Autumn     2329     20.9       68      Yes     0.18     14.7      0.0
## 1705   Winter      197      1.5       71      Yes     0.00     -3.1      0.0
## 2941   Spring      818     20.8       50      Yes     1.82      9.9      0.0
##      col 2434 col 2435   col 2436 col 2437 col 2438 col 2439 col 2440 col 2441
## 2151   Winter      5.7 28/02/2018   Winter      3.7     0.13        0      0.0
## 7575   Autumn     16.5 12/10/2018   Autumn      1.4     2.43        0      0.0
## 5295   Summer     20.2   9/7/2018   Summer      1.0     0.27        0      0.5
## 6873   Autumn     20.9 13/09/2018   Autumn      1.3     0.18        0      0.0
## 1705   Winter      1.5  10/2/2018   Winter      1.1     0.00        0      0.0
## 2941   Spring     20.8   2/4/2018   Spring      2.0     1.82        0      0.0
##      col 2442   col 2443 col 2444 col 2445 col 2446 col 2447 col 2448 col 2449
## 2151      2.5 28/02/2018   Winter      Yes      0.0       17       17      2.5
## 7575     -0.2 12/10/2018   Autumn      Yes      0.0     1187     1187     -0.2
## 5295     18.3   9/7/2018   Summer      Yes      0.5      110      110     18.3
## 6873     14.7 13/09/2018   Autumn      Yes      0.0     2329     2329     14.7
## 1705     -3.1  10/2/2018   Winter      Yes      0.0      197      197     -3.1
## 2941      9.9   2/4/2018   Spring      Yes      0.0      818      818      9.9
##      col 2450 col 2451 col 2452 col 2453 col 2454   col 2455 col 2456
## 2151      348       80       14      5.7   Winter 28/02/2018       17
## 7575     1841       32       14     16.5   Autumn 12/10/2018     1187
## 5295     1854       89       14     20.2   Summer   9/7/2018      110
## 6873     2000       68        8     20.9   Autumn 13/09/2018     2329
## 1705      590       71        0      1.5   Winter  10/2/2018      197
## 2941     1240       50       12     20.8   Spring   2/4/2018      818
##        col 2457 col 2458   col 2459 col 2460 col 2461 col 2462 col 2463
## 2151 No Holiday     0.13 No Holiday      3.7      3.7      0.0   Winter
## 7575 No Holiday     2.43 No Holiday      1.4      1.4      0.0   Autumn
## 5295 No Holiday     0.27 No Holiday      1.0      1.0      0.5   Summer
## 6873 No Holiday     0.18 No Holiday      1.3      1.3      0.0   Autumn
## 1705 No Holiday     0.00 No Holiday      1.1      1.1      0.0   Winter
## 2941 No Holiday     1.82 No Holiday      2.0      2.0      0.0   Spring
##      col 2464   col 2465 col 2466 col 2467   col 2468 col 2469 col 2470
## 2151      348 28/02/2018   Winter       17 No Holiday      2.5   Winter
## 7575     1841 12/10/2018   Autumn     1187 No Holiday     -0.2   Autumn
## 5295     1854   9/7/2018   Summer      110 No Holiday     18.3   Summer
## 6873     2000 13/09/2018   Autumn     2329 No Holiday     14.7   Autumn
## 1705      590  10/2/2018   Winter      197 No Holiday     -3.1   Winter
## 2941     1240   2/4/2018   Spring      818 No Holiday      9.9   Spring
##      col 2471 col 2472 col 2473 col 2474   col 2475 col 2476 col 2477 col 2478
## 2151       14      3.7      Yes      2.5 No Holiday      3.7      5.7       14
## 7575       14      1.4      Yes     -0.2 No Holiday      1.4     16.5       14
## 5295       14      1.0      Yes     18.3 No Holiday      1.0     20.2       14
## 6873        8      1.3      Yes     14.7 No Holiday      1.3     20.9        8
## 1705        0      1.1      Yes     -3.1 No Holiday      1.1      1.5        0
## 2941       12      2.0      Yes      9.9 No Holiday      2.0     20.8       12
##      col 2479 col 2480 col 2481 col 2482 col 2483 col 2484 col 2485 col 2486
## 2151      0.0        0        0   Winter   Winter       80      3.7       17
## 7575      0.0        0        0   Autumn   Autumn       32      1.4     1187
## 5295      0.5        0        0   Summer   Summer       89      1.0      110
## 6873      0.0        0        0   Autumn   Autumn       68      1.3     2329
## 1705      0.0        0        0   Winter   Winter       71      1.1      197
## 2941      0.0        0        0   Spring   Spring       50      2.0      818
##      col 2487 col 2488   col 2489 col 2490 col 2491 col 2492 col 2493 col 2494
## 2151        0      348 28/02/2018      348       17   Winter       17       17
## 7575        0     1841 12/10/2018     1841     1187   Autumn     1187     1187
## 5295        0     1854   9/7/2018     1854      110   Summer      110      110
## 6873        0     2000 13/09/2018     2000     2329   Autumn     2329     2329
## 1705        0      590  10/2/2018      590      197   Winter      197      197
## 2941        0     1240   2/4/2018     1240      818   Spring      818      818
##      col 2495 col 2496 col 2497 col 2498 col 2499 col 2500   col 2501 col 2502
## 2151       14      Yes      348      3.7      2.5        0 28/02/2018       17
## 7575       14      Yes     1841      1.4     -0.2        0 12/10/2018     1187
## 5295       14      Yes     1854      1.0     18.3        0   9/7/2018      110
## 6873        8      Yes     2000      1.3     14.7        0 13/09/2018     2329
## 1705        0      Yes      590      1.1     -3.1        0  10/2/2018      197
## 2941       12      Yes     1240      2.0      9.9        0   2/4/2018      818
##      col 2503 col 2504 col 2505 col 2506 col 2507 col 2508 col 2509 col 2510
## 2151        0        0      2.5       14        0     0.13        0      Yes
## 7575        0        0     -0.2       14        0     2.43        0      Yes
## 5295        0        0     18.3       14        0     0.27        0      Yes
## 6873        0        0     14.7        8        0     0.18        0      Yes
## 1705        0        0     -3.1        0        0     0.00        0      Yes
## 2941        0        0      9.9       12        0     1.82        0      Yes
##      col 2511 col 2512 col 2513 col 2514 col 2515 col 2516   col 2517 col 2518
## 2151      2.5     0.13      2.5       17      0.0       14 28/02/2018      2.5
## 7575     -0.2     2.43     -0.2     1187      0.0       14 12/10/2018     -0.2
## 5295     18.3     0.27     18.3      110      0.5       14   9/7/2018     18.3
## 6873     14.7     0.18     14.7     2329      0.0        8 13/09/2018     14.7
## 1705     -3.1     0.00     -3.1      197      0.0        0  10/2/2018     -3.1
## 2941      9.9     1.82      9.9      818      0.0       12   2/4/2018      9.9
##      col 2519 col 2520 col 2521   col 2522 col 2523   col 2524 col 2525
## 2151        0       80      348 No Holiday      Yes 28/02/2018       14
## 7575        0       32     1841 No Holiday      Yes 12/10/2018       14
## 5295        0       89     1854 No Holiday      Yes   9/7/2018       14
## 6873        0       68     2000 No Holiday      Yes 13/09/2018        8
## 1705        0       71      590 No Holiday      Yes  10/2/2018        0
## 2941        0       50     1240 No Holiday      Yes   2/4/2018       12
##        col 2526   col 2527 col 2528 col 2529 col 2530 col 2531 col 2532
## 2151 28/02/2018 No Holiday      3.7      5.7      0.0      3.7       17
## 7575 12/10/2018 No Holiday      1.4     16.5      0.0      1.4     1187
## 5295   9/7/2018 No Holiday      1.0     20.2      0.5      1.0      110
## 6873 13/09/2018 No Holiday      1.3     20.9      0.0      1.3     2329
## 1705  10/2/2018 No Holiday      1.1      1.5      0.0      1.1      197
## 2941   2/4/2018 No Holiday      2.0     20.8      0.0      2.0      818
##      col 2533 col 2534 col 2535   col 2536 col 2537 col 2538 col 2539 col 2540
## 2151      348      Yes      2.5 28/02/2018      Yes      348      3.7      5.7
## 7575     1841      Yes     -0.2 12/10/2018      Yes     1841      1.4     16.5
## 5295     1854      Yes     18.3   9/7/2018      Yes     1854      1.0     20.2
## 6873     2000      Yes     14.7 13/09/2018      Yes     2000      1.3     20.9
## 1705      590      Yes     -3.1  10/2/2018      Yes      590      1.1      1.5
## 2941     1240      Yes      9.9   2/4/2018      Yes     1240      2.0     20.8
##        col 2541 col 2542   col 2543 col 2544   col 2545 col 2546 col 2547
## 2151 No Holiday       14 28/02/2018        0 No Holiday        0       17
## 7575 No Holiday       14 12/10/2018        0 No Holiday        0     1187
## 5295 No Holiday       14   9/7/2018        0 No Holiday        0      110
## 6873 No Holiday        8 13/09/2018        0 No Holiday        0     2329
## 1705 No Holiday        0  10/2/2018        0 No Holiday        0      197
## 2941 No Holiday       12   2/4/2018        0 No Holiday        0      818
##      col 2548 col 2549 col 2550 col 2551 col 2552 col 2553 col 2554   col 2555
## 2151      5.7      3.7   Winter       17      348      3.7      2.5 28/02/2018
## 7575     16.5      1.4   Autumn     1187     1841      1.4     -0.2 12/10/2018
## 5295     20.2      1.0   Summer      110     1854      1.0     18.3   9/7/2018
## 6873     20.9      1.3   Autumn     2329     2000      1.3     14.7 13/09/2018
## 1705      1.5      1.1   Winter      197      590      1.1     -3.1  10/2/2018
## 2941     20.8      2.0   Spring      818     1240      2.0      9.9   2/4/2018
##      col 2556 col 2557 col 2558   col 2559 col 2560 col 2561 col 2562
## 2151      5.7      0.0      3.7 28/02/2018      2.5       17      5.7
## 7575     16.5      0.0      1.4 12/10/2018     -0.2     1187     16.5
## 5295     20.2      0.5      1.0   9/7/2018     18.3      110     20.2
## 6873     20.9      0.0      1.3 13/09/2018     14.7     2329     20.9
## 1705      1.5      0.0      1.1  10/2/2018     -3.1      197      1.5
## 2941     20.8      0.0      2.0   2/4/2018      9.9      818     20.8
##        col 2563   col 2564   col 2565 col 2566 col 2567 col 2568 col 2569
## 2151 28/02/2018 No Holiday 28/02/2018   Winter   Winter        0     0.13
## 7575 12/10/2018 No Holiday 12/10/2018   Autumn   Autumn        0     2.43
## 5295   9/7/2018 No Holiday   9/7/2018   Summer   Summer        0     0.27
## 6873 13/09/2018 No Holiday 13/09/2018   Autumn   Autumn        0     0.18
## 1705  10/2/2018 No Holiday  10/2/2018   Winter   Winter        0     0.00
## 2941   2/4/2018 No Holiday   2/4/2018   Spring   Spring        0     1.82
##        col 2570   col 2571 col 2572 col 2573 col 2574 col 2575 col 2576
## 2151 No Holiday No Holiday      Yes        0       14      2.5      5.7
## 7575 No Holiday No Holiday      Yes        0       14     -0.2     16.5
## 5295 No Holiday No Holiday      Yes        0       14     18.3     20.2
## 6873 No Holiday No Holiday      Yes        0        8     14.7     20.9
## 1705 No Holiday No Holiday      Yes        0        0     -3.1      1.5
## 2941 No Holiday No Holiday      Yes        0       12      9.9     20.8
##      col 2577 col 2578   col 2579 col 2580 col 2581 col 2582 col 2583 col 2584
## 2151   Winter      348 28/02/2018      2.5       17        0        0        0
## 7575   Autumn     1841 12/10/2018     -0.2     1187        0        0        0
## 5295   Summer     1854   9/7/2018     18.3      110        0        0        0
## 6873   Autumn     2000 13/09/2018     14.7     2329        0        0        0
## 1705   Winter      590  10/2/2018     -3.1      197        0        0        0
## 2941   Spring     1240   2/4/2018      9.9      818        0        0        0
##      col 2585   col 2586 col 2587 col 2588 col 2589 col 2590 col 2591 col 2592
## 2151      2.5 28/02/2018      3.7      2.5       14     0.13     0.13      0.0
## 7575     -0.2 12/10/2018      1.4     -0.2       14     2.43     2.43      0.0
## 5295     18.3   9/7/2018      1.0     18.3       14     0.27     0.27      0.5
## 6873     14.7 13/09/2018      1.3     14.7        8     0.18     0.18      0.0
## 1705     -3.1  10/2/2018      1.1     -3.1        0     0.00     0.00      0.0
## 2941      9.9   2/4/2018      2.0      9.9       12     1.82     1.82      0.0
##        col 2593 col 2594 col 2595   col 2596 col 2597 col 2598 col 2599
## 2151 No Holiday      3.7       14 28/02/2018      Yes       14      5.7
## 7575 No Holiday      1.4       14 12/10/2018      Yes       14     16.5
## 5295 No Holiday      1.0       14   9/7/2018      Yes       14     20.2
## 6873 No Holiday      1.3        8 13/09/2018      Yes        8     20.9
## 1705 No Holiday      1.1        0  10/2/2018      Yes        0      1.5
## 2941 No Holiday      2.0       12   2/4/2018      Yes       12     20.8
##      col 2600 col 2601 col 2602 col 2603 col 2604 col 2605 col 2606 col 2607
## 2151       14      348        0       14        0      348      3.7      2.5
## 7575       14     1841        0       14        0     1841      1.4     -0.2
## 5295       14     1854        0       14        0     1854      1.0     18.3
## 6873        8     2000        0        8        0     2000      1.3     14.7
## 1705        0      590        0        0        0      590      1.1     -3.1
## 2941       12     1240        0       12        0     1240      2.0      9.9
##      col 2608 col 2609 col 2610   col 2611 col 2612 col 2613 col 2614 col 2615
## 2151      0.0      2.5      2.5 No Holiday      5.7      2.5       14       17
## 7575      0.0     -0.2     -0.2 No Holiday     16.5     -0.2       14     1187
## 5295      0.5     18.3     18.3 No Holiday     20.2     18.3       14      110
## 6873      0.0     14.7     14.7 No Holiday     20.9     14.7        8     2329
## 1705      0.0     -3.1     -3.1 No Holiday      1.5     -3.1        0      197
## 2941      0.0      9.9      9.9 No Holiday     20.8      9.9       12      818
##        col 2616 col 2617 col 2618   col 2619 col 2620 col 2621 col 2622
## 2151 No Holiday   Winter      348 No Holiday       80      3.7       17
## 7575 No Holiday   Autumn     1841 No Holiday       32      1.4     1187
## 5295 No Holiday   Summer     1854 No Holiday       89      1.0      110
## 6873 No Holiday   Autumn     2000 No Holiday       68      1.3     2329
## 1705 No Holiday   Winter      590 No Holiday       71      1.1      197
## 2941 No Holiday   Spring     1240 No Holiday       50      2.0      818
##      col 2623 col 2624   col 2625   col 2626   col 2627 col 2628   col 2629
## 2151   Winter      Yes 28/02/2018 No Holiday 28/02/2018      3.7 28/02/2018
## 7575   Autumn      Yes 12/10/2018 No Holiday 12/10/2018      1.4 12/10/2018
## 5295   Summer      Yes   9/7/2018 No Holiday   9/7/2018      1.0   9/7/2018
## 6873   Autumn      Yes 13/09/2018 No Holiday 13/09/2018      1.3 13/09/2018
## 1705   Winter      Yes  10/2/2018 No Holiday  10/2/2018      1.1  10/2/2018
## 2941   Spring      Yes   2/4/2018 No Holiday   2/4/2018      2.0   2/4/2018
##      col 2630 col 2631 col 2632 col 2633 col 2634 col 2635   col 2636 col 2637
## 2151       80      2.5      2.5      3.7      348      Yes 28/02/2018      Yes
## 7575       32     -0.2     -0.2      1.4     1841      Yes 12/10/2018      Yes
## 5295       89     18.3     18.3      1.0     1854      Yes   9/7/2018      Yes
## 6873       68     14.7     14.7      1.3     2000      Yes 13/09/2018      Yes
## 1705       71     -3.1     -3.1      1.1      590      Yes  10/2/2018      Yes
## 2941       50      9.9      9.9      2.0     1240      Yes   2/4/2018      Yes
##      col 2638   col 2639 col 2640 col 2641 col 2642 col 2643 col 2644 col 2645
## 2151   Winter 28/02/2018   Winter      0.0      Yes   Winter      2.5       80
## 7575   Autumn 12/10/2018   Autumn      0.0      Yes   Autumn     -0.2       32
## 5295   Summer   9/7/2018   Summer      0.5      Yes   Summer     18.3       89
## 6873   Autumn 13/09/2018   Autumn      0.0      Yes   Autumn     14.7       68
## 1705   Winter  10/2/2018   Winter      0.0      Yes   Winter     -3.1       71
## 2941   Spring   2/4/2018   Spring      0.0      Yes   Spring      9.9       50
##      col 2646 col 2647 col 2648 col 2649 col 2650 col 2651 col 2652 col 2653
## 2151      5.7      Yes       17      3.7      0.0        0        0   Winter
## 7575     16.5      Yes     1187      1.4      0.0        0        0   Autumn
## 5295     20.2      Yes      110      1.0      0.5        0        0   Summer
## 6873     20.9      Yes     2329      1.3      0.0        0        0   Autumn
## 1705      1.5      Yes      197      1.1      0.0        0        0   Winter
## 2941     20.8      Yes      818      2.0      0.0        0        0   Spring
##      col 2654 col 2655 col 2656 col 2657 col 2658   col 2659 col 2660 col 2661
## 2151      Yes      2.5     0.13      Yes       17 28/02/2018      0.0      Yes
## 7575      Yes     -0.2     2.43      Yes     1187 12/10/2018      0.0      Yes
## 5295      Yes     18.3     0.27      Yes      110   9/7/2018      0.5      Yes
## 6873      Yes     14.7     0.18      Yes     2329 13/09/2018      0.0      Yes
## 1705      Yes     -3.1     0.00      Yes      197  10/2/2018      0.0      Yes
## 2941      Yes      9.9     1.82      Yes      818   2/4/2018      0.0      Yes
##      col 2662 col 2663 col 2664   col 2665 col 2666 col 2667 col 2668
## 2151     0.13     0.13     0.13 No Holiday      348      5.7      348
## 7575     2.43     2.43     2.43 No Holiday     1841     16.5     1841
## 5295     0.27     0.27     0.27 No Holiday     1854     20.2     1854
## 6873     0.18     0.18     0.18 No Holiday     2000     20.9     2000
## 1705     0.00     0.00     0.00 No Holiday      590      1.5      590
## 2941     1.82     1.82     1.82 No Holiday     1240     20.8     1240
##        col 2669 col 2670 col 2671   col 2672 col 2673 col 2674   col 2675
## 2151 No Holiday       17       80 28/02/2018      3.7       80 No Holiday
## 7575 No Holiday     1187       32 12/10/2018      1.4       32 No Holiday
## 5295 No Holiday      110       89   9/7/2018      1.0       89 No Holiday
## 6873 No Holiday     2329       68 13/09/2018      1.3       68 No Holiday
## 1705 No Holiday      197       71  10/2/2018      1.1       71 No Holiday
## 2941 No Holiday      818       50   2/4/2018      2.0       50 No Holiday
##      col 2676   col 2677 col 2678   col 2679 col 2680 col 2681 col 2682
## 2151      Yes 28/02/2018      0.0 No Holiday      348     0.13       14
## 7575      Yes 12/10/2018      0.0 No Holiday     1841     2.43       14
## 5295      Yes   9/7/2018      0.5 No Holiday     1854     0.27       14
## 6873      Yes 13/09/2018      0.0 No Holiday     2000     0.18        8
## 1705      Yes  10/2/2018      0.0 No Holiday      590     0.00        0
## 2941      Yes   2/4/2018      0.0 No Holiday     1240     1.82       12
##      col 2683 col 2684   col 2685 col 2686 col 2687 col 2688 col 2689 col 2690
## 2151       17      348 No Holiday      5.7      2.5       80      3.7     0.13
## 7575     1187     1841 No Holiday     16.5     -0.2       32      1.4     2.43
## 5295      110     1854 No Holiday     20.2     18.3       89      1.0     0.27
## 6873     2329     2000 No Holiday     20.9     14.7       68      1.3     0.18
## 1705      197      590 No Holiday      1.5     -3.1       71      1.1     0.00
## 2941      818     1240 No Holiday     20.8      9.9       50      2.0     1.82
##      col 2691 col 2692 col 2693 col 2694   col 2695 col 2696 col 2697 col 2698
## 2151     0.13      5.7        0      348 28/02/2018       17      5.7   Winter
## 7575     2.43     16.5        0     1841 12/10/2018     1187     16.5   Autumn
## 5295     0.27     20.2        0     1854   9/7/2018      110     20.2   Summer
## 6873     0.18     20.9        0     2000 13/09/2018     2329     20.9   Autumn
## 1705     0.00      1.5        0      590  10/2/2018      197      1.5   Winter
## 2941     1.82     20.8        0     1240   2/4/2018      818     20.8   Spring
##      col 2699 col 2700 col 2701 col 2702   col 2703 col 2704 col 2705 col 2706
## 2151       17      5.7      3.7      Yes 28/02/2018       17      Yes        0
## 7575     1187     16.5      1.4      Yes 12/10/2018     1187      Yes        0
## 5295      110     20.2      1.0      Yes   9/7/2018      110      Yes        0
## 6873     2329     20.9      1.3      Yes 13/09/2018     2329      Yes        0
## 1705      197      1.5      1.1      Yes  10/2/2018      197      Yes        0
## 2941      818     20.8      2.0      Yes   2/4/2018      818      Yes        0
##      col 2707 col 2708 col 2709 col 2710 col 2711 col 2712 col 2713 col 2714
## 2151      Yes      5.7      Yes      5.7       14      2.5      5.7   Winter
## 7575      Yes     16.5      Yes     16.5       14     -0.2     16.5   Autumn
## 5295      Yes     20.2      Yes     20.2       14     18.3     20.2   Summer
## 6873      Yes     20.9      Yes     20.9        8     14.7     20.9   Autumn
## 1705      Yes      1.5      Yes      1.5        0     -3.1      1.5   Winter
## 2941      Yes     20.8      Yes     20.8       12      9.9     20.8   Spring
##      col 2715 col 2716 col 2717 col 2718 col 2719 col 2720 col 2721 col 2722
## 2151      5.7      Yes     0.13      Yes     0.13      348      Yes      5.7
## 7575     16.5      Yes     2.43      Yes     2.43     1841      Yes     16.5
## 5295     20.2      Yes     0.27      Yes     0.27     1854      Yes     20.2
## 6873     20.9      Yes     0.18      Yes     0.18     2000      Yes     20.9
## 1705      1.5      Yes     0.00      Yes     0.00      590      Yes      1.5
## 2941     20.8      Yes     1.82      Yes     1.82     1240      Yes     20.8
##      col 2723 col 2724 col 2725 col 2726 col 2727 col 2728 col 2729 col 2730
## 2151       80      Yes       14       17       80      5.7      Yes       80
## 7575       32      Yes       14     1187       32     16.5      Yes       32
## 5295       89      Yes       14      110       89     20.2      Yes       89
## 6873       68      Yes        8     2329       68     20.9      Yes       68
## 1705       71      Yes        0      197       71      1.5      Yes       71
## 2941       50      Yes       12      818       50     20.8      Yes       50
##      col 2731 col 2732 col 2733 col 2734 col 2735 col 2736 col 2737 col 2738
## 2151      3.7       80       14      348   Winter      348      5.7      2.5
## 7575      1.4       32       14     1841   Autumn     1841     16.5     -0.2
## 5295      1.0       89       14     1854   Summer     1854     20.2     18.3
## 6873      1.3       68        8     2000   Autumn     2000     20.9     14.7
## 1705      1.1       71        0      590   Winter      590      1.5     -3.1
## 2941      2.0       50       12     1240   Spring     1240     20.8      9.9
##        col 2739 col 2740 col 2741 col 2742 col 2743 col 2744 col 2745 col 2746
## 2151 28/02/2018        0       14       80      3.7      3.7      348      2.5
## 7575 12/10/2018        0       14       32      1.4      1.4     1841     -0.2
## 5295   9/7/2018        0       14       89      1.0      1.0     1854     18.3
## 6873 13/09/2018        0        8       68      1.3      1.3     2000     14.7
## 1705  10/2/2018        0        0       71      1.1      1.1      590     -3.1
## 2941   2/4/2018        0       12       50      2.0      2.0     1240      9.9
##      col 2747   col 2748 col 2749 col 2750 col 2751 col 2752   col 2753
## 2151      Yes No Holiday      3.7       14   Winter       14 28/02/2018
## 7575      Yes No Holiday      1.4       14   Autumn       14 12/10/2018
## 5295      Yes No Holiday      1.0       14   Summer       14   9/7/2018
## 6873      Yes No Holiday      1.3        8   Autumn        8 13/09/2018
## 1705      Yes No Holiday      1.1        0   Winter        0  10/2/2018
## 2941      Yes No Holiday      2.0       12   Spring       12   2/4/2018
##        col 2754 col 2755 col 2756 col 2757 col 2758 col 2759 col 2760 col 2761
## 2151 No Holiday     0.13       14      348       17       14      3.7     0.13
## 7575 No Holiday     2.43       14     1841     1187       14      1.4     2.43
## 5295 No Holiday     0.27       14     1854      110       14      1.0     0.27
## 6873 No Holiday     0.18        8     2000     2329        8      1.3     0.18
## 1705 No Holiday     0.00        0      590      197        0      1.1     0.00
## 2941 No Holiday     1.82       12     1240      818       12      2.0     1.82
##      col 2762 col 2763 col 2764 col 2765 col 2766 col 2767   col 2768 col 2769
## 2151      2.5     0.13      348       14       14       80 No Holiday        0
## 7575     -0.2     2.43     1841       14       14       32 No Holiday        0
## 5295     18.3     0.27     1854       14       14       89 No Holiday        0
## 6873     14.7     0.18     2000        8        8       68 No Holiday        0
## 1705     -3.1     0.00      590        0        0       71 No Holiday        0
## 2941      9.9     1.82     1240       12       12       50 No Holiday        0
##      col 2770 col 2771 col 2772 col 2773 col 2774 col 2775 col 2776   col 2777
## 2151       17      2.5      348       80      5.7      Yes        0 28/02/2018
## 7575     1187     -0.2     1841       32     16.5      Yes        0 12/10/2018
## 5295      110     18.3     1854       89     20.2      Yes        0   9/7/2018
## 6873     2329     14.7     2000       68     20.9      Yes        0 13/09/2018
## 1705      197     -3.1      590       71      1.5      Yes        0  10/2/2018
## 2941      818      9.9     1240       50     20.8      Yes        0   2/4/2018
##        col 2778 col 2779 col 2780 col 2781 col 2782 col 2783 col 2784 col 2785
## 2151 28/02/2018      3.7      348      0.0     0.13      5.7      Yes      5.7
## 7575 12/10/2018      1.4     1841      0.0     2.43     16.5      Yes     16.5
## 5295   9/7/2018      1.0     1854      0.5     0.27     20.2      Yes     20.2
## 6873 13/09/2018      1.3     2000      0.0     0.18     20.9      Yes     20.9
## 1705  10/2/2018      1.1      590      0.0     0.00      1.5      Yes      1.5
## 2941   2/4/2018      2.0     1240      0.0     1.82     20.8      Yes     20.8
##      col 2786 col 2787 col 2788 col 2789 col 2790 col 2791 col 2792 col 2793
## 2151       14       14      348   Winter      Yes      5.7       14      0.0
## 7575       14       14     1841   Autumn      Yes     16.5       14      0.0
## 5295       14       14     1854   Summer      Yes     20.2       14      0.5
## 6873        8        8     2000   Autumn      Yes     20.9        8      0.0
## 1705        0        0      590   Winter      Yes      1.5        0      0.0
## 2941       12       12     1240   Spring      Yes     20.8       12      0.0
##      col 2794 col 2795   col 2796 col 2797 col 2798 col 2799 col 2800 col 2801
## 2151      0.0      348 No Holiday      0.0   Winter   Winter     0.13       14
## 7575      0.0     1841 No Holiday      0.0   Autumn   Autumn     2.43       14
## 5295      0.5     1854 No Holiday      0.5   Summer   Summer     0.27       14
## 6873      0.0     2000 No Holiday      0.0   Autumn   Autumn     0.18        8
## 1705      0.0      590 No Holiday      0.0   Winter   Winter     0.00        0
## 2941      0.0     1240 No Holiday      0.0   Spring   Spring     1.82       12
##      col 2802 col 2803 col 2804 col 2805 col 2806 col 2807 col 2808   col 2809
## 2151      2.5      3.7     0.13       80      348   Winter      348 No Holiday
## 7575     -0.2      1.4     2.43       32     1841   Autumn     1841 No Holiday
## 5295     18.3      1.0     0.27       89     1854   Summer     1854 No Holiday
## 6873     14.7      1.3     0.18       68     2000   Autumn     2000 No Holiday
## 1705     -3.1      1.1     0.00       71      590   Winter      590 No Holiday
## 2941      9.9      2.0     1.82       50     1240   Spring     1240 No Holiday
##      col 2810 col 2811   col 2812 col 2813 col 2814 col 2815   col 2816
## 2151      348   Winter 28/02/2018     0.13      348      348 No Holiday
## 7575     1841   Autumn 12/10/2018     2.43     1841     1841 No Holiday
## 5295     1854   Summer   9/7/2018     0.27     1854     1854 No Holiday
## 6873     2000   Autumn 13/09/2018     0.18     2000     2000 No Holiday
## 1705      590   Winter  10/2/2018     0.00      590      590 No Holiday
## 2941     1240   Spring   2/4/2018     1.82     1240     1240 No Holiday
##        col 2817 col 2818 col 2819 col 2820 col 2821 col 2822 col 2823 col 2824
## 2151 No Holiday       17      3.7       14       80      2.5      0.0       80
## 7575 No Holiday     1187      1.4       14       32     -0.2      0.0       32
## 5295 No Holiday      110      1.0       14       89     18.3      0.5       89
## 6873 No Holiday     2329      1.3        8       68     14.7      0.0       68
## 1705 No Holiday      197      1.1        0       71     -3.1      0.0       71
## 2941 No Holiday      818      2.0       12       50      9.9      0.0       50
##        col 2825   col 2826 col 2827 col 2828 col 2829 col 2830 col 2831
## 2151 28/02/2018 No Holiday      5.7      3.7      2.5       14      5.7
## 7575 12/10/2018 No Holiday     16.5      1.4     -0.2       14     16.5
## 5295   9/7/2018 No Holiday     20.2      1.0     18.3       14     20.2
## 6873 13/09/2018 No Holiday     20.9      1.3     14.7        8     20.9
## 1705  10/2/2018 No Holiday      1.5      1.1     -3.1        0      1.5
## 2941   2/4/2018 No Holiday     20.8      2.0      9.9       12     20.8
##      col 2832 col 2833 col 2834 col 2835 col 2836 col 2837 col 2838   col 2839
## 2151        0       80      3.7      3.7      0.0   Winter     0.13 28/02/2018
## 7575        0       32      1.4      1.4      0.0   Autumn     2.43 12/10/2018
## 5295        0       89      1.0      1.0      0.5   Summer     0.27   9/7/2018
## 6873        0       68      1.3      1.3      0.0   Autumn     0.18 13/09/2018
## 1705        0       71      1.1      1.1      0.0   Winter     0.00  10/2/2018
## 2941        0       50      2.0      2.0      0.0   Spring     1.82   2/4/2018
##        col 2840 col 2841   col 2842 col 2843   col 2844   col 2845 col 2846
## 2151 28/02/2018       17 28/02/2018       14 No Holiday 28/02/2018   Winter
## 7575 12/10/2018     1187 12/10/2018       14 No Holiday 12/10/2018   Autumn
## 5295   9/7/2018      110   9/7/2018       14 No Holiday   9/7/2018   Summer
## 6873 13/09/2018     2329 13/09/2018        8 No Holiday 13/09/2018   Autumn
## 1705  10/2/2018      197  10/2/2018        0 No Holiday  10/2/2018   Winter
## 2941   2/4/2018      818   2/4/2018       12 No Holiday   2/4/2018   Spring
##      col 2847 col 2848 col 2849 col 2850 col 2851 col 2852 col 2853 col 2854
## 2151        0      348       80       14   Winter      2.5      348       80
## 7575        0     1841       32       14   Autumn     -0.2     1841       32
## 5295        0     1854       89       14   Summer     18.3     1854       89
## 6873        0     2000       68        8   Autumn     14.7     2000       68
## 1705        0      590       71        0   Winter     -3.1      590       71
## 2941        0     1240       50       12   Spring      9.9     1240       50
##      col 2855 col 2856 col 2857 col 2858 col 2859   col 2860 col 2861 col 2862
## 2151      348        0       14       80        0 28/02/2018     0.13      5.7
## 7575     1841        0       14       32        0 12/10/2018     2.43     16.5
## 5295     1854        0       14       89        0   9/7/2018     0.27     20.2
## 6873     2000        0        8       68        0 13/09/2018     0.18     20.9
## 1705      590        0        0       71        0  10/2/2018     0.00      1.5
## 2941     1240        0       12       50        0   2/4/2018     1.82     20.8
##      col 2863 col 2864 col 2865 col 2866 col 2867 col 2868 col 2869 col 2870
## 2151      Yes       80      2.5      2.5      2.5      Yes      348       80
## 7575      Yes       32     -0.2     -0.2     -0.2      Yes     1841       32
## 5295      Yes       89     18.3     18.3     18.3      Yes     1854       89
## 6873      Yes       68     14.7     14.7     14.7      Yes     2000       68
## 1705      Yes       71     -3.1     -3.1     -3.1      Yes      590       71
## 2941      Yes       50      9.9      9.9      9.9      Yes     1240       50
##      col 2871 col 2872 col 2873 col 2874 col 2875 col 2876 col 2877 col 2878
## 2151      Yes      5.7      348      2.5        0       80      Yes      3.7
## 7575      Yes     16.5     1841     -0.2        0       32      Yes      1.4
## 5295      Yes     20.2     1854     18.3        0       89      Yes      1.0
## 6873      Yes     20.9     2000     14.7        0       68      Yes      1.3
## 1705      Yes      1.5      590     -3.1        0       71      Yes      1.1
## 2941      Yes     20.8     1240      9.9        0       50      Yes      2.0
##      col 2879 col 2880   col 2881 col 2882 col 2883 col 2884   col 2885
## 2151      348      Yes 28/02/2018   Winter       14      5.7 28/02/2018
## 7575     1841      Yes 12/10/2018   Autumn       14     16.5 12/10/2018
## 5295     1854      Yes   9/7/2018   Summer       14     20.2   9/7/2018
## 6873     2000      Yes 13/09/2018   Autumn        8     20.9 13/09/2018
## 1705      590      Yes  10/2/2018   Winter        0      1.5  10/2/2018
## 2941     1240      Yes   2/4/2018   Spring       12     20.8   2/4/2018
##      col 2886 col 2887 col 2888 col 2889 col 2890 col 2891 col 2892 col 2893
## 2151   Winter      348     0.13      5.7      348   Winter      348      0.0
## 7575   Autumn     1841     2.43     16.5     1841   Autumn     1841      0.0
## 5295   Summer     1854     0.27     20.2     1854   Summer     1854      0.5
## 6873   Autumn     2000     0.18     20.9     2000   Autumn     2000      0.0
## 1705   Winter      590     0.00      1.5      590   Winter      590      0.0
## 2941   Spring     1240     1.82     20.8     1240   Spring     1240      0.0
##      col 2894 col 2895 col 2896 col 2897 col 2898   col 2899 col 2900 col 2901
## 2151       14      2.5      348   Winter      348 No Holiday      2.5      348
## 7575       14     -0.2     1841   Autumn     1841 No Holiday     -0.2     1841
## 5295       14     18.3     1854   Summer     1854 No Holiday     18.3     1854
## 6873        8     14.7     2000   Autumn     2000 No Holiday     14.7     2000
## 1705        0     -3.1      590   Winter      590 No Holiday     -3.1      590
## 2941       12      9.9     1240   Spring     1240 No Holiday      9.9     1240
##      col 2902 col 2903 col 2904 col 2905 col 2906   col 2907 col 2908 col 2909
## 2151      Yes      3.7        0      Yes      0.0 28/02/2018       14       17
## 7575      Yes      1.4        0      Yes      0.0 12/10/2018       14     1187
## 5295      Yes      1.0        0      Yes      0.5   9/7/2018       14      110
## 6873      Yes      1.3        0      Yes      0.0 13/09/2018        8     2329
## 1705      Yes      1.1        0      Yes      0.0  10/2/2018        0      197
## 2941      Yes      2.0        0      Yes      0.0   2/4/2018       12      818
##      col 2910 col 2911 col 2912   col 2913 col 2914 col 2915 col 2916 col 2917
## 2151      5.7       17       80 28/02/2018   Winter       14     0.13       17
## 7575     16.5     1187       32 12/10/2018   Autumn       14     2.43     1187
## 5295     20.2      110       89   9/7/2018   Summer       14     0.27      110
## 6873     20.9     2329       68 13/09/2018   Autumn        8     0.18     2329
## 1705      1.5      197       71  10/2/2018   Winter        0     0.00      197
## 2941     20.8      818       50   2/4/2018   Spring       12     1.82      818
##      col 2918 col 2919   col 2920   col 2921 col 2922 col 2923 col 2924
## 2151      Yes      5.7 28/02/2018 No Holiday      0.0   Winter   Winter
## 7575      Yes     16.5 12/10/2018 No Holiday      0.0   Autumn   Autumn
## 5295      Yes     20.2   9/7/2018 No Holiday      0.5   Summer   Summer
## 6873      Yes     20.9 13/09/2018 No Holiday      0.0   Autumn   Autumn
## 1705      Yes      1.5  10/2/2018 No Holiday      0.0   Winter   Winter
## 2941      Yes     20.8   2/4/2018 No Holiday      0.0   Spring   Spring
##        col 2925 col 2926 col 2927 col 2928 col 2929 col 2930 col 2931
## 2151 No Holiday      0.0     0.13      5.7     0.13      2.5       14
## 7575 No Holiday      0.0     2.43     16.5     2.43     -0.2       14
## 5295 No Holiday      0.5     0.27     20.2     0.27     18.3       14
## 6873 No Holiday      0.0     0.18     20.9     0.18     14.7        8
## 1705 No Holiday      0.0     0.00      1.5     0.00     -3.1        0
## 2941 No Holiday      0.0     1.82     20.8     1.82      9.9       12
##        col 2932 col 2933   col 2934   col 2935 col 2936   col 2937 col 2938
## 2151 No Holiday      348 No Holiday 28/02/2018        0 28/02/2018       80
## 7575 No Holiday     1841 No Holiday 12/10/2018        0 12/10/2018       32
## 5295 No Holiday     1854 No Holiday   9/7/2018        0   9/7/2018       89
## 6873 No Holiday     2000 No Holiday 13/09/2018        0 13/09/2018       68
## 1705 No Holiday      590 No Holiday  10/2/2018        0  10/2/2018       71
## 2941 No Holiday     1240 No Holiday   2/4/2018        0   2/4/2018       50
##      col 2939 col 2940 col 2941 col 2942   col 2943 col 2944 col 2945 col 2946
## 2151      0.0      3.7   Winter       80 No Holiday       80       80      5.7
## 7575      0.0      1.4   Autumn       32 No Holiday       32       32     16.5
## 5295      0.5      1.0   Summer       89 No Holiday       89       89     20.2
## 6873      0.0      1.3   Autumn       68 No Holiday       68       68     20.9
## 1705      0.0      1.1   Winter       71 No Holiday       71       71      1.5
## 2941      0.0      2.0   Spring       50 No Holiday       50       50     20.8
##      col 2947 col 2948 col 2949   col 2950 col 2951   col 2952 col 2953
## 2151      5.7      Yes      2.5 28/02/2018      2.5 28/02/2018      5.7
## 7575     16.5      Yes     -0.2 12/10/2018     -0.2 12/10/2018     16.5
## 5295     20.2      Yes     18.3   9/7/2018     18.3   9/7/2018     20.2
## 6873     20.9      Yes     14.7 13/09/2018     14.7 13/09/2018     20.9
## 1705      1.5      Yes     -3.1  10/2/2018     -3.1  10/2/2018      1.5
## 2941     20.8      Yes      9.9   2/4/2018      9.9   2/4/2018     20.8
##        col 2954 col 2955 col 2956 col 2957   col 2958 col 2959   col 2960
## 2151 No Holiday       80      Yes      2.5 28/02/2018      2.5 No Holiday
## 7575 No Holiday       32      Yes     -0.2 12/10/2018     -0.2 No Holiday
## 5295 No Holiday       89      Yes     18.3   9/7/2018     18.3 No Holiday
## 6873 No Holiday       68      Yes     14.7 13/09/2018     14.7 No Holiday
## 1705 No Holiday       71      Yes     -3.1  10/2/2018     -3.1 No Holiday
## 2941 No Holiday       50      Yes      9.9   2/4/2018      9.9 No Holiday
##      col 2961 col 2962 col 2963 col 2964 col 2965 col 2966 col 2967 col 2968
## 2151       14   Winter        0     0.13     0.13        0       80      Yes
## 7575       14   Autumn        0     2.43     2.43        0       32      Yes
## 5295       14   Summer        0     0.27     0.27        0       89      Yes
## 6873        8   Autumn        0     0.18     0.18        0       68      Yes
## 1705        0   Winter        0     0.00     0.00        0       71      Yes
## 2941       12   Spring        0     1.82     1.82        0       50      Yes
##      col 2969 col 2970 col 2971 col 2972 col 2973 col 2974 col 2975 col 2976
## 2151   Winter      Yes        0      0.0      5.7      5.7      5.7      348
## 7575   Autumn      Yes        0      0.0     16.5     16.5     16.5     1841
## 5295   Summer      Yes        0      0.5     20.2     20.2     20.2     1854
## 6873   Autumn      Yes        0      0.0     20.9     20.9     20.9     2000
## 1705   Winter      Yes        0      0.0      1.5      1.5      1.5      590
## 2941   Spring      Yes        0      0.0     20.8     20.8     20.8     1240
##      col 2977 col 2978 col 2979 col 2980 col 2981 col 2982   col 2983
## 2151   Winter      5.7   Winter      348     0.13      5.7 28/02/2018
## 7575   Autumn     16.5   Autumn     1841     2.43     16.5 12/10/2018
## 5295   Summer     20.2   Summer     1854     0.27     20.2   9/7/2018
## 6873   Autumn     20.9   Autumn     2000     0.18     20.9 13/09/2018
## 1705   Winter      1.5   Winter      590     0.00      1.5  10/2/2018
## 2941   Spring     20.8   Spring     1240     1.82     20.8   2/4/2018
##        col 2984 col 2985   col 2986 col 2987 col 2988 col 2989 col 2990
## 2151 No Holiday       17 No Holiday     0.13      348       17      0.0
## 7575 No Holiday     1187 No Holiday     2.43     1841     1187      0.0
## 5295 No Holiday      110 No Holiday     0.27     1854      110      0.5
## 6873 No Holiday     2329 No Holiday     0.18     2000     2329      0.0
## 1705 No Holiday      197 No Holiday     0.00      590      197      0.0
## 2941 No Holiday      818 No Holiday     1.82     1240      818      0.0
##      col 2991 col 2992 col 2993   col 2994 col 2995 col 2996 col 2997 col 2998
## 2151      0.0      348      3.7 No Holiday      348       14      348      348
## 7575      0.0     1841      1.4 No Holiday     1841       14     1841     1841
## 5295      0.5     1854      1.0 No Holiday     1854       14     1854     1854
## 6873      0.0     2000      1.3 No Holiday     2000        8     2000     2000
## 1705      0.0      590      1.1 No Holiday      590        0      590      590
## 2941      0.0     1240      2.0 No Holiday     1240       12     1240     1240
##      col 2999   col 3000   col 3001   col 3002 col 3003 col 3004 col 3005
## 2151      2.5 28/02/2018 28/02/2018 28/02/2018      Yes     0.13       80
## 7575     -0.2 12/10/2018 12/10/2018 12/10/2018      Yes     2.43       32
## 5295     18.3   9/7/2018   9/7/2018   9/7/2018      Yes     0.27       89
## 6873     14.7 13/09/2018 13/09/2018 13/09/2018      Yes     0.18       68
## 1705     -3.1  10/2/2018  10/2/2018  10/2/2018      Yes     0.00       71
## 2941      9.9   2/4/2018   2/4/2018   2/4/2018      Yes     1.82       50
##      col 3006   col 3007 col 3008 col 3009 col 3010   col 3011 col 3012
## 2151   Winter No Holiday      348      348       14 No Holiday       14
## 7575   Autumn No Holiday     1841     1841       14 No Holiday       14
## 5295   Summer No Holiday     1854     1854       14 No Holiday       14
## 6873   Autumn No Holiday     2000     2000        8 No Holiday        8
## 1705   Winter No Holiday      590      590        0 No Holiday        0
## 2941   Spring No Holiday     1240     1240       12 No Holiday       12
##      col 3013 col 3014 col 3015 col 3016 col 3017   col 3018   col 3019
## 2151     0.13       14      348      2.5   Winter No Holiday 28/02/2018
## 7575     2.43       14     1841     -0.2   Autumn No Holiday 12/10/2018
## 5295     0.27       14     1854     18.3   Summer No Holiday   9/7/2018
## 6873     0.18        8     2000     14.7   Autumn No Holiday 13/09/2018
## 1705     0.00        0      590     -3.1   Winter No Holiday  10/2/2018
## 2941     1.82       12     1240      9.9   Spring No Holiday   2/4/2018
##        col 3020 col 3021 col 3022 col 3023 col 3024 col 3025 col 3026 col 3027
## 2151 No Holiday      5.7      3.7      0.0      2.5       14        0        0
## 7575 No Holiday     16.5      1.4      0.0     -0.2       14        0        0
## 5295 No Holiday     20.2      1.0      0.5     18.3       14        0        0
## 6873 No Holiday     20.9      1.3      0.0     14.7        8        0        0
## 1705 No Holiday      1.5      1.1      0.0     -3.1        0        0        0
## 2941 No Holiday     20.8      2.0      0.0      9.9       12        0        0
##        col 3028   col 3029 col 3030 col 3031 col 3032 col 3033 col 3034
## 2151 No Holiday 28/02/2018     0.13      0.0     0.13   Winter       17
## 7575 No Holiday 12/10/2018     2.43      0.0     2.43   Autumn     1187
## 5295 No Holiday   9/7/2018     0.27      0.5     0.27   Summer      110
## 6873 No Holiday 13/09/2018     0.18      0.0     0.18   Autumn     2329
## 1705 No Holiday  10/2/2018     0.00      0.0     0.00   Winter      197
## 2941 No Holiday   2/4/2018     1.82      0.0     1.82   Spring      818
##      col 3035 col 3036 col 3037 col 3038 col 3039 col 3040 col 3041 col 3042
## 2151     0.13       80      5.7      3.7       14   Winter      2.5      3.7
## 7575     2.43       32     16.5      1.4       14   Autumn     -0.2      1.4
## 5295     0.27       89     20.2      1.0       14   Summer     18.3      1.0
## 6873     0.18       68     20.9      1.3        8   Autumn     14.7      1.3
## 1705     0.00       71      1.5      1.1        0   Winter     -3.1      1.1
## 2941     1.82       50     20.8      2.0       12   Spring      9.9      2.0
##        col 3043   col 3044 col 3045 col 3046 col 3047 col 3048 col 3049
## 2151 No Holiday No Holiday      Yes      0.0      3.7      348      Yes
## 7575 No Holiday No Holiday      Yes      0.0      1.4     1841      Yes
## 5295 No Holiday No Holiday      Yes      0.5      1.0     1854      Yes
## 6873 No Holiday No Holiday      Yes      0.0      1.3     2000      Yes
## 1705 No Holiday No Holiday      Yes      0.0      1.1      590      Yes
## 2941 No Holiday No Holiday      Yes      0.0      2.0     1240      Yes
##      col 3050 col 3051   col 3052   col 3053 col 3054 col 3055 col 3056
## 2151        0       17 No Holiday 28/02/2018      Yes      Yes       14
## 7575        0     1187 No Holiday 12/10/2018      Yes      Yes       14
## 5295        0      110 No Holiday   9/7/2018      Yes      Yes       14
## 6873        0     2329 No Holiday 13/09/2018      Yes      Yes        8
## 1705        0      197 No Holiday  10/2/2018      Yes      Yes        0
## 2941        0      818 No Holiday   2/4/2018      Yes      Yes       12
##      col 3057 col 3058 col 3059 col 3060 col 3061   col 3062   col 3063
## 2151   Winter      3.7      3.7      0.0      3.7 No Holiday No Holiday
## 7575   Autumn      1.4      1.4      0.0      1.4 No Holiday No Holiday
## 5295   Summer      1.0      1.0      0.5      1.0 No Holiday No Holiday
## 6873   Autumn      1.3      1.3      0.0      1.3 No Holiday No Holiday
## 1705   Winter      1.1      1.1      0.0      1.1 No Holiday No Holiday
## 2941   Spring      2.0      2.0      0.0      2.0 No Holiday No Holiday
##      col 3064 col 3065 col 3066 col 3067 col 3068   col 3069 col 3070 col 3071
## 2151     0.13       17   Winter      348       17 No Holiday      3.7       14
## 7575     2.43     1187   Autumn     1841     1187 No Holiday      1.4       14
## 5295     0.27      110   Summer     1854      110 No Holiday      1.0       14
## 6873     0.18     2329   Autumn     2000     2329 No Holiday      1.3        8
## 1705     0.00      197   Winter      590      197 No Holiday      1.1        0
## 2941     1.82      818   Spring     1240      818 No Holiday      2.0       12
##      col 3072 col 3073 col 3074   col 3075 col 3076 col 3077 col 3078 col 3079
## 2151     0.13       80      5.7 No Holiday       17      3.7   Winter      3.7
## 7575     2.43       32     16.5 No Holiday     1187      1.4   Autumn      1.4
## 5295     0.27       89     20.2 No Holiday      110      1.0   Summer      1.0
## 6873     0.18       68     20.9 No Holiday     2329      1.3   Autumn      1.3
## 1705     0.00       71      1.5 No Holiday      197      1.1   Winter      1.1
## 2941     1.82       50     20.8 No Holiday      818      2.0   Spring      2.0
##      col 3080 col 3081 col 3082 col 3083 col 3084   col 3085 col 3086 col 3087
## 2151      0.0      2.5        0      Yes     0.13 28/02/2018      348      2.5
## 7575      0.0     -0.2        0      Yes     2.43 12/10/2018     1841     -0.2
## 5295      0.5     18.3        0      Yes     0.27   9/7/2018     1854     18.3
## 6873      0.0     14.7        0      Yes     0.18 13/09/2018     2000     14.7
## 1705      0.0     -3.1        0      Yes     0.00  10/2/2018      590     -3.1
## 2941      0.0      9.9        0      Yes     1.82   2/4/2018     1240      9.9
##      col 3088 col 3089 col 3090 col 3091 col 3092   col 3093 col 3094 col 3095
## 2151       17       17      3.7       14     0.13 28/02/2018       17      3.7
## 7575     1187     1187      1.4       14     2.43 12/10/2018     1187      1.4
## 5295      110      110      1.0       14     0.27   9/7/2018      110      1.0
## 6873     2329     2329      1.3        8     0.18 13/09/2018     2329      1.3
## 1705      197      197      1.1        0     0.00  10/2/2018      197      1.1
## 2941      818      818      2.0       12     1.82   2/4/2018      818      2.0
##      col 3096   col 3097   col 3098 col 3099 col 3100 col 3101 col 3102
## 2151      0.0 28/02/2018 28/02/2018       14      Yes      0.0       14
## 7575      0.0 12/10/2018 12/10/2018       14      Yes      0.0       14
## 5295      0.5   9/7/2018   9/7/2018       14      Yes      0.5       14
## 6873      0.0 13/09/2018 13/09/2018        8      Yes      0.0        8
## 1705      0.0  10/2/2018  10/2/2018        0      Yes      0.0        0
## 2941      0.0   2/4/2018   2/4/2018       12      Yes      0.0       12
##      col 3103 col 3104 col 3105 col 3106 col 3107 col 3108 col 3109 col 3110
## 2151       14     0.13      Yes      3.7       80      3.7     0.13      3.7
## 7575       14     2.43      Yes      1.4       32      1.4     2.43      1.4
## 5295       14     0.27      Yes      1.0       89      1.0     0.27      1.0
## 6873        8     0.18      Yes      1.3       68      1.3     0.18      1.3
## 1705        0     0.00      Yes      1.1       71      1.1     0.00      1.1
## 2941       12     1.82      Yes      2.0       50      2.0     1.82      2.0
##      col 3111 col 3112 col 3113 col 3114 col 3115 col 3116 col 3117 col 3118
## 2151      5.7      2.5        0      348      2.5        0      Yes     0.13
## 7575     16.5     -0.2        0     1841     -0.2        0      Yes     2.43
## 5295     20.2     18.3        0     1854     18.3        0      Yes     0.27
## 6873     20.9     14.7        0     2000     14.7        0      Yes     0.18
## 1705      1.5     -3.1        0      590     -3.1        0      Yes     0.00
## 2941     20.8      9.9        0     1240      9.9        0      Yes     1.82
##      col 3119 col 3120 col 3121   col 3122 col 3123 col 3124 col 3125 col 3126
## 2151      0.0       17       80 28/02/2018      3.7        0       80       14
## 7575      0.0     1187       32 12/10/2018      1.4        0       32       14
## 5295      0.5      110       89   9/7/2018      1.0        0       89       14
## 6873      0.0     2329       68 13/09/2018      1.3        0       68        8
## 1705      0.0      197       71  10/2/2018      1.1        0       71        0
## 2941      0.0      818       50   2/4/2018      2.0        0       50       12
##      col 3127 col 3128   col 3129 col 3130 col 3131 col 3132   col 3133
## 2151       17      348 No Holiday     0.13      3.7      Yes No Holiday
## 7575     1187     1841 No Holiday     2.43      1.4      Yes No Holiday
## 5295      110     1854 No Holiday     0.27      1.0      Yes No Holiday
## 6873     2329     2000 No Holiday     0.18      1.3      Yes No Holiday
## 1705      197      590 No Holiday     0.00      1.1      Yes No Holiday
## 2941      818     1240 No Holiday     1.82      2.0      Yes No Holiday
##        col 3134 col 3135   col 3136 col 3137   col 3138 col 3139 col 3140
## 2151 28/02/2018      5.7 No Holiday       14 28/02/2018        0      3.7
## 7575 12/10/2018     16.5 No Holiday       14 12/10/2018        0      1.4
## 5295   9/7/2018     20.2 No Holiday       14   9/7/2018        0      1.0
## 6873 13/09/2018     20.9 No Holiday        8 13/09/2018        0      1.3
## 1705  10/2/2018      1.5 No Holiday        0  10/2/2018        0      1.1
## 2941   2/4/2018     20.8 No Holiday       12   2/4/2018        0      2.0
##      col 3141 col 3142 col 3143   col 3144 col 3145 col 3146   col 3147
## 2151   Winter       80     0.13 28/02/2018      Yes       14 No Holiday
## 7575   Autumn       32     2.43 12/10/2018      Yes       14 No Holiday
## 5295   Summer       89     0.27   9/7/2018      Yes       14 No Holiday
## 6873   Autumn       68     0.18 13/09/2018      Yes        8 No Holiday
## 1705   Winter       71     0.00  10/2/2018      Yes        0 No Holiday
## 2941   Spring       50     1.82   2/4/2018      Yes       12 No Holiday
##        col 3148 col 3149 col 3150 col 3151 col 3152 col 3153 col 3154 col 3155
## 2151 No Holiday      3.7      Yes      2.5       14   Winter      3.7      348
## 7575 No Holiday      1.4      Yes     -0.2       14   Autumn      1.4     1841
## 5295 No Holiday      1.0      Yes     18.3       14   Summer      1.0     1854
## 6873 No Holiday      1.3      Yes     14.7        8   Autumn      1.3     2000
## 1705 No Holiday      1.1      Yes     -3.1        0   Winter      1.1      590
## 2941 No Holiday      2.0      Yes      9.9       12   Spring      2.0     1240
##      col 3156   col 3157 col 3158 col 3159   col 3160 col 3161 col 3162
## 2151   Winter No Holiday       17      3.7 No Holiday       80   Winter
## 7575   Autumn No Holiday     1187      1.4 No Holiday       32   Autumn
## 5295   Summer No Holiday      110      1.0 No Holiday       89   Summer
## 6873   Autumn No Holiday     2329      1.3 No Holiday       68   Autumn
## 1705   Winter No Holiday      197      1.1 No Holiday       71   Winter
## 2941   Spring No Holiday      818      2.0 No Holiday       50   Spring
##      col 3163   col 3164 col 3165 col 3166 col 3167   col 3168 col 3169
## 2151       14 No Holiday       80      0.0       17 28/02/2018       80
## 7575       14 No Holiday       32      0.0     1187 12/10/2018       32
## 5295       14 No Holiday       89      0.5      110   9/7/2018       89
## 6873        8 No Holiday       68      0.0     2329 13/09/2018       68
## 1705        0 No Holiday       71      0.0      197  10/2/2018       71
## 2941       12 No Holiday       50      0.0      818   2/4/2018       50
##      col 3170 col 3171 col 3172 col 3173 col 3174 col 3175   col 3176 col 3177
## 2151       14       17      Yes        0     0.13       17 No Holiday       17
## 7575       14     1187      Yes        0     2.43     1187 No Holiday     1187
## 5295       14      110      Yes        0     0.27      110 No Holiday      110
## 6873        8     2329      Yes        0     0.18     2329 No Holiday     2329
## 1705        0      197      Yes        0     0.00      197 No Holiday      197
## 2941       12      818      Yes        0     1.82      818 No Holiday      818
##      col 3178 col 3179   col 3180 col 3181 col 3182   col 3183 col 3184
## 2151       17      Yes No Holiday      0.0      5.7 28/02/2018      5.7
## 7575     1187      Yes No Holiday      0.0     16.5 12/10/2018     16.5
## 5295      110      Yes No Holiday      0.5     20.2   9/7/2018     20.2
## 6873     2329      Yes No Holiday      0.0     20.9 13/09/2018     20.9
## 1705      197      Yes No Holiday      0.0      1.5  10/2/2018      1.5
## 2941      818      Yes No Holiday      0.0     20.8   2/4/2018     20.8
##      col 3185 col 3186   col 3187 col 3188 col 3189 col 3190   col 3191
## 2151      2.5     0.13 28/02/2018   Winter      3.7       17 No Holiday
## 7575     -0.2     2.43 12/10/2018   Autumn      1.4     1187 No Holiday
## 5295     18.3     0.27   9/7/2018   Summer      1.0      110 No Holiday
## 6873     14.7     0.18 13/09/2018   Autumn      1.3     2329 No Holiday
## 1705     -3.1     0.00  10/2/2018   Winter      1.1      197 No Holiday
## 2941      9.9     1.82   2/4/2018   Spring      2.0      818 No Holiday
##      col 3192 col 3193 col 3194   col 3195 col 3196   col 3197 col 3198
## 2151       14      Yes     0.13 No Holiday     0.13 No Holiday       80
## 7575       14      Yes     2.43 No Holiday     2.43 No Holiday       32
## 5295       14      Yes     0.27 No Holiday     0.27 No Holiday       89
## 6873        8      Yes     0.18 No Holiday     0.18 No Holiday       68
## 1705        0      Yes     0.00 No Holiday     0.00 No Holiday       71
## 2941       12      Yes     1.82 No Holiday     1.82 No Holiday       50
##      col 3199 col 3200   col 3201   col 3202   col 3203   col 3204 col 3205
## 2151      0.0      Yes 28/02/2018 28/02/2018 No Holiday No Holiday      0.0
## 7575      0.0      Yes 12/10/2018 12/10/2018 No Holiday No Holiday      0.0
## 5295      0.5      Yes   9/7/2018   9/7/2018 No Holiday No Holiday      0.5
## 6873      0.0      Yes 13/09/2018 13/09/2018 No Holiday No Holiday      0.0
## 1705      0.0      Yes  10/2/2018  10/2/2018 No Holiday No Holiday      0.0
## 2941      0.0      Yes   2/4/2018   2/4/2018 No Holiday No Holiday      0.0
##      col 3206 col 3207 col 3208 col 3209 col 3210 col 3211 col 3212   col 3213
## 2151      0.0      3.7        0   Winter      348        0      0.0 No Holiday
## 7575      0.0      1.4        0   Autumn     1841        0      0.0 No Holiday
## 5295      0.5      1.0        0   Summer     1854        0      0.5 No Holiday
## 6873      0.0      1.3        0   Autumn     2000        0      0.0 No Holiday
## 1705      0.0      1.1        0   Winter      590        0      0.0 No Holiday
## 2941      0.0      2.0        0   Spring     1240        0      0.0 No Holiday
##      col 3214   col 3215   col 3216 col 3217 col 3218 col 3219 col 3220
## 2151   Winter No Holiday No Holiday      2.5       80      3.7     0.13
## 7575   Autumn No Holiday No Holiday     -0.2       32      1.4     2.43
## 5295   Summer No Holiday No Holiday     18.3       89      1.0     0.27
## 6873   Autumn No Holiday No Holiday     14.7       68      1.3     0.18
## 1705   Winter No Holiday No Holiday     -3.1       71      1.1     0.00
## 2941   Spring No Holiday No Holiday      9.9       50      2.0     1.82
##        col 3221 col 3222 col 3223 col 3224 col 3225 col 3226 col 3227 col 3228
## 2151 No Holiday      Yes   Winter        0       80      Yes        0   Winter
## 7575 No Holiday      Yes   Autumn        0       32      Yes        0   Autumn
## 5295 No Holiday      Yes   Summer        0       89      Yes        0   Summer
## 6873 No Holiday      Yes   Autumn        0       68      Yes        0   Autumn
## 1705 No Holiday      Yes   Winter        0       71      Yes        0   Winter
## 2941 No Holiday      Yes   Spring        0       50      Yes        0   Spring
##        col 3229 col 3230   col 3231 col 3232 col 3233   col 3234 col 3235
## 2151 28/02/2018      2.5 No Holiday       14       80 No Holiday      0.0
## 7575 12/10/2018     -0.2 No Holiday       14       32 No Holiday      0.0
## 5295   9/7/2018     18.3 No Holiday       14       89 No Holiday      0.5
## 6873 13/09/2018     14.7 No Holiday        8       68 No Holiday      0.0
## 1705  10/2/2018     -3.1 No Holiday        0       71 No Holiday      0.0
## 2941   2/4/2018      9.9 No Holiday       12       50 No Holiday      0.0
##      col 3236 col 3237 col 3238   col 3239 col 3240 col 3241 col 3242 col 3243
## 2151      0.0      348      2.5 No Holiday      3.7      Yes       80      0.0
## 7575      0.0     1841     -0.2 No Holiday      1.4      Yes       32      0.0
## 5295      0.5     1854     18.3 No Holiday      1.0      Yes       89      0.5
## 6873      0.0     2000     14.7 No Holiday      1.3      Yes       68      0.0
## 1705      0.0      590     -3.1 No Holiday      1.1      Yes       71      0.0
## 2941      0.0     1240      9.9 No Holiday      2.0      Yes       50      0.0
##      col 3244 col 3245 col 3246 col 3247 col 3248 col 3249 col 3250 col 3251
## 2151       17     0.13      Yes       80      3.7     0.13      348      5.7
## 7575     1187     2.43      Yes       32      1.4     2.43     1841     16.5
## 5295      110     0.27      Yes       89      1.0     0.27     1854     20.2
## 6873     2329     0.18      Yes       68      1.3     0.18     2000     20.9
## 1705      197     0.00      Yes       71      1.1     0.00      590      1.5
## 2941      818     1.82      Yes       50      2.0     1.82     1240     20.8
##      col 3252 col 3253 col 3254 col 3255   col 3256 col 3257   col 3258
## 2151      348        0       80        0 28/02/2018     0.13 28/02/2018
## 7575     1841        0       32        0 12/10/2018     2.43 12/10/2018
## 5295     1854        0       89        0   9/7/2018     0.27   9/7/2018
## 6873     2000        0       68        0 13/09/2018     0.18 13/09/2018
## 1705      590        0       71        0  10/2/2018     0.00  10/2/2018
## 2941     1240        0       50        0   2/4/2018     1.82   2/4/2018
##      col 3259 col 3260 col 3261 col 3262   col 3263   col 3264   col 3265
## 2151      2.5      348     0.13     0.13 28/02/2018 28/02/2018 No Holiday
## 7575     -0.2     1841     2.43     2.43 12/10/2018 12/10/2018 No Holiday
## 5295     18.3     1854     0.27     0.27   9/7/2018   9/7/2018 No Holiday
## 6873     14.7     2000     0.18     0.18 13/09/2018 13/09/2018 No Holiday
## 1705     -3.1      590     0.00     0.00  10/2/2018  10/2/2018 No Holiday
## 2941      9.9     1240     1.82     1.82   2/4/2018   2/4/2018 No Holiday
##        col 3266 col 3267 col 3268 col 3269 col 3270 col 3271 col 3272 col 3273
## 2151 28/02/2018     0.13      0.0        0      0.0        0        0      3.7
## 7575 12/10/2018     2.43      0.0        0      0.0        0        0      1.4
## 5295   9/7/2018     0.27      0.5        0      0.5        0        0      1.0
## 6873 13/09/2018     0.18      0.0        0      0.0        0        0      1.3
## 1705  10/2/2018     0.00      0.0        0      0.0        0        0      1.1
## 2941   2/4/2018     1.82      0.0        0      0.0        0        0      2.0
##      col 3274 col 3275 col 3276 col 3277 col 3278 col 3279 col 3280 col 3281
## 2151       80      Yes      348       17       80      0.0   Winter      0.0
## 7575       32      Yes     1841     1187       32      0.0   Autumn      0.0
## 5295       89      Yes     1854      110       89      0.5   Summer      0.5
## 6873       68      Yes     2000     2329       68      0.0   Autumn      0.0
## 1705       71      Yes      590      197       71      0.0   Winter      0.0
## 2941       50      Yes     1240      818       50      0.0   Spring      0.0
##      col 3282 col 3283 col 3284 col 3285 col 3286 col 3287 col 3288   col 3289
## 2151      2.5      3.7       80   Winter   Winter      348        0 28/02/2018
## 7575     -0.2      1.4       32   Autumn   Autumn     1841        0 12/10/2018
## 5295     18.3      1.0       89   Summer   Summer     1854        0   9/7/2018
## 6873     14.7      1.3       68   Autumn   Autumn     2000        0 13/09/2018
## 1705     -3.1      1.1       71   Winter   Winter      590        0  10/2/2018
## 2941      9.9      2.0       50   Spring   Spring     1240        0   2/4/2018
##      col 3290 col 3291 col 3292 col 3293 col 3294 col 3295 col 3296 col 3297
## 2151      3.7      348      Yes        0      Yes      0.0     0.13      0.0
## 7575      1.4     1841      Yes        0      Yes      0.0     2.43      0.0
## 5295      1.0     1854      Yes        0      Yes      0.5     0.27      0.5
## 6873      1.3     2000      Yes        0      Yes      0.0     0.18      0.0
## 1705      1.1      590      Yes        0      Yes      0.0     0.00      0.0
## 2941      2.0     1240      Yes        0      Yes      0.0     1.82      0.0
##        col 3298   col 3299   col 3300 col 3301 col 3302 col 3303 col 3304
## 2151 No Holiday No Holiday No Holiday      5.7       80        0       14
## 7575 No Holiday No Holiday No Holiday     16.5       32        0       14
## 5295 No Holiday No Holiday No Holiday     20.2       89        0       14
## 6873 No Holiday No Holiday No Holiday     20.9       68        0        8
## 1705 No Holiday No Holiday No Holiday      1.5       71        0        0
## 2941 No Holiday No Holiday No Holiday     20.8       50        0       12
##      col 3305 col 3306   col 3307 col 3308 col 3309 col 3310 col 3311 col 3312
## 2151      5.7   Winter No Holiday       80      5.7      5.7       17      348
## 7575     16.5   Autumn No Holiday       32     16.5     16.5     1187     1841
## 5295     20.2   Summer No Holiday       89     20.2     20.2      110     1854
## 6873     20.9   Autumn No Holiday       68     20.9     20.9     2329     2000
## 1705      1.5   Winter No Holiday       71      1.5      1.5      197      590
## 2941     20.8   Spring No Holiday       50     20.8     20.8      818     1240
##      col 3313 col 3314 col 3315 col 3316 col 3317 col 3318 col 3319 col 3320
## 2151       14       17      2.5       80        0      348      5.7      2.5
## 7575       14     1187     -0.2       32        0     1841     16.5     -0.2
## 5295       14      110     18.3       89        0     1854     20.2     18.3
## 6873        8     2329     14.7       68        0     2000     20.9     14.7
## 1705        0      197     -3.1       71        0      590      1.5     -3.1
## 2941       12      818      9.9       50        0     1240     20.8      9.9
##        col 3321 col 3322 col 3323 col 3324 col 3325 col 3326 col 3327 col 3328
## 2151 28/02/2018      5.7      5.7      5.7      3.7      0.0        0      348
## 7575 12/10/2018     16.5     16.5     16.5      1.4      0.0        0     1841
## 5295   9/7/2018     20.2     20.2     20.2      1.0      0.5        0     1854
## 6873 13/09/2018     20.9     20.9     20.9      1.3      0.0        0     2000
## 1705  10/2/2018      1.5      1.5      1.5      1.1      0.0        0      590
## 2941   2/4/2018     20.8     20.8     20.8      2.0      0.0        0     1240
##        col 3329 col 3330 col 3331 col 3332 col 3333   col 3334 col 3335
## 2151 28/02/2018      5.7       14      0.0   Winter No Holiday       14
## 7575 12/10/2018     16.5       14      0.0   Autumn No Holiday       14
## 5295   9/7/2018     20.2       14      0.5   Summer No Holiday       14
## 6873 13/09/2018     20.9        8      0.0   Autumn No Holiday        8
## 1705  10/2/2018      1.5        0      0.0   Winter No Holiday        0
## 2941   2/4/2018     20.8       12      0.0   Spring No Holiday       12
##      col 3336   col 3337 col 3338 col 3339 col 3340 col 3341   col 3342
## 2151       14 No Holiday     0.13        0     0.13      Yes 28/02/2018
## 7575       14 No Holiday     2.43        0     2.43      Yes 12/10/2018
## 5295       14 No Holiday     0.27        0     0.27      Yes   9/7/2018
## 6873        8 No Holiday     0.18        0     0.18      Yes 13/09/2018
## 1705        0 No Holiday     0.00        0     0.00      Yes  10/2/2018
## 2941       12 No Holiday     1.82        0     1.82      Yes   2/4/2018
##      col 3343 col 3344 col 3345   col 3346 col 3347 col 3348 col 3349 col 3350
## 2151      2.5      5.7      5.7 No Holiday      5.7      348       14   Winter
## 7575     -0.2     16.5     16.5 No Holiday     16.5     1841       14   Autumn
## 5295     18.3     20.2     20.2 No Holiday     20.2     1854       14   Summer
## 6873     14.7     20.9     20.9 No Holiday     20.9     2000        8   Autumn
## 1705     -3.1      1.5      1.5 No Holiday      1.5      590        0   Winter
## 2941      9.9     20.8     20.8 No Holiday     20.8     1240       12   Spring
##      col 3351 col 3352 col 3353   col 3354 col 3355 col 3356 col 3357 col 3358
## 2151   Winter   Winter       14 No Holiday      2.5     0.13       17   Winter
## 7575   Autumn   Autumn       14 No Holiday     -0.2     2.43     1187   Autumn
## 5295   Summer   Summer       14 No Holiday     18.3     0.27      110   Summer
## 6873   Autumn   Autumn        8 No Holiday     14.7     0.18     2329   Autumn
## 1705   Winter   Winter        0 No Holiday     -3.1     0.00      197   Winter
## 2941   Spring   Spring       12 No Holiday      9.9     1.82      818   Spring
##      col 3359 col 3360 col 3361 col 3362 col 3363 col 3364 col 3365 col 3366
## 2151     0.13      348      0.0      3.7        0      2.5       14       17
## 7575     2.43     1841      0.0      1.4        0     -0.2       14     1187
## 5295     0.27     1854      0.5      1.0        0     18.3       14      110
## 6873     0.18     2000      0.0      1.3        0     14.7        8     2329
## 1705     0.00      590      0.0      1.1        0     -3.1        0      197
## 2941     1.82     1240      0.0      2.0        0      9.9       12      818
##      col 3367 col 3368 col 3369 col 3370 col 3371 col 3372 col 3373 col 3374
## 2151       80     0.13       14       80      348       17      348      5.7
## 7575       32     2.43       14       32     1841     1187     1841     16.5
## 5295       89     0.27       14       89     1854      110     1854     20.2
## 6873       68     0.18        8       68     2000     2329     2000     20.9
## 1705       71     0.00        0       71      590      197      590      1.5
## 2941       50     1.82       12       50     1240      818     1240     20.8
##      col 3375 col 3376 col 3377 col 3378 col 3379 col 3380 col 3381 col 3382
## 2151      3.7      0.0   Winter      3.7      3.7   Winter       80      2.5
## 7575      1.4      0.0   Autumn      1.4      1.4   Autumn       32     -0.2
## 5295      1.0      0.5   Summer      1.0      1.0   Summer       89     18.3
## 6873      1.3      0.0   Autumn      1.3      1.3   Autumn       68     14.7
## 1705      1.1      0.0   Winter      1.1      1.1   Winter       71     -3.1
## 2941      2.0      0.0   Spring      2.0      2.0   Spring       50      9.9
##      col 3383 col 3384 col 3385 col 3386 col 3387 col 3388 col 3389   col 3390
## 2151      348      3.7      3.7      Yes        0      2.5      2.5 No Holiday
## 7575     1841      1.4      1.4      Yes        0     -0.2     -0.2 No Holiday
## 5295     1854      1.0      1.0      Yes        0     18.3     18.3 No Holiday
## 6873     2000      1.3      1.3      Yes        0     14.7     14.7 No Holiday
## 1705      590      1.1      1.1      Yes        0     -3.1     -3.1 No Holiday
## 2941     1240      2.0      2.0      Yes        0      9.9      9.9 No Holiday
##      col 3391 col 3392 col 3393 col 3394 col 3395 col 3396 col 3397 col 3398
## 2151     0.13      2.5       17       17      5.7   Winter      Yes      5.7
## 7575     2.43     -0.2     1187     1187     16.5   Autumn      Yes     16.5
## 5295     0.27     18.3      110      110     20.2   Summer      Yes     20.2
## 6873     0.18     14.7     2329     2329     20.9   Autumn      Yes     20.9
## 1705     0.00     -3.1      197      197      1.5   Winter      Yes      1.5
## 2941     1.82      9.9      818      818     20.8   Spring      Yes     20.8
##      col 3399 col 3400 col 3401 col 3402 col 3403 col 3404   col 3405 col 3406
## 2151   Winter      5.7       80       14      Yes      2.5 No Holiday      Yes
## 7575   Autumn     16.5       32       14      Yes     -0.2 No Holiday      Yes
## 5295   Summer     20.2       89       14      Yes     18.3 No Holiday      Yes
## 6873   Autumn     20.9       68        8      Yes     14.7 No Holiday      Yes
## 1705   Winter      1.5       71        0      Yes     -3.1 No Holiday      Yes
## 2941   Spring     20.8       50       12      Yes      9.9 No Holiday      Yes
##      col 3407 col 3408   col 3409   col 3410 col 3411 col 3412 col 3413
## 2151       80      2.5 No Holiday No Holiday   Winter      0.0   Winter
## 7575       32     -0.2 No Holiday No Holiday   Autumn      0.0   Autumn
## 5295       89     18.3 No Holiday No Holiday   Summer      0.5   Summer
## 6873       68     14.7 No Holiday No Holiday   Autumn      0.0   Autumn
## 1705       71     -3.1 No Holiday No Holiday   Winter      0.0   Winter
## 2941       50      9.9 No Holiday No Holiday   Spring      0.0   Spring
##      col 3414 col 3415 col 3416 col 3417 col 3418 col 3419 col 3420 col 3421
## 2151     0.13       17       80        0     0.13      348      2.5        0
## 7575     2.43     1187       32        0     2.43     1841     -0.2        0
## 5295     0.27      110       89        0     0.27     1854     18.3        0
## 6873     0.18     2329       68        0     0.18     2000     14.7        0
## 1705     0.00      197       71        0     0.00      590     -3.1        0
## 2941     1.82      818       50        0     1.82     1240      9.9        0
##        col 3422   col 3423 col 3424 col 3425 col 3426 col 3427   col 3428
## 2151 No Holiday 28/02/2018       17      3.7      348       80 No Holiday
## 7575 No Holiday 12/10/2018     1187      1.4     1841       32 No Holiday
## 5295 No Holiday   9/7/2018      110      1.0     1854       89 No Holiday
## 6873 No Holiday 13/09/2018     2329      1.3     2000       68 No Holiday
## 1705 No Holiday  10/2/2018      197      1.1      590       71 No Holiday
## 2941 No Holiday   2/4/2018      818      2.0     1240       50 No Holiday
##      col 3429 col 3430   col 3431 col 3432 col 3433   col 3434 col 3435
## 2151       14   Winter 28/02/2018      0.0        0 No Holiday        0
## 7575       14   Autumn 12/10/2018      0.0        0 No Holiday        0
## 5295       14   Summer   9/7/2018      0.5        0 No Holiday        0
## 6873        8   Autumn 13/09/2018      0.0        0 No Holiday        0
## 1705        0   Winter  10/2/2018      0.0        0 No Holiday        0
## 2941       12   Spring   2/4/2018      0.0        0 No Holiday        0
##      col 3436 col 3437 col 3438 col 3439 col 3440   col 3441 col 3442 col 3443
## 2151   Winter      0.0   Winter        0        0 No Holiday       17      5.7
## 7575   Autumn      0.0   Autumn        0        0 No Holiday     1187     16.5
## 5295   Summer      0.5   Summer        0        0 No Holiday      110     20.2
## 6873   Autumn      0.0   Autumn        0        0 No Holiday     2329     20.9
## 1705   Winter      0.0   Winter        0        0 No Holiday      197      1.5
## 2941   Spring      0.0   Spring        0        0 No Holiday      818     20.8
##      col 3444 col 3445 col 3446 col 3447 col 3448 col 3449 col 3450 col 3451
## 2151       17      3.7      348      0.0      2.5      2.5       17      3.7
## 7575     1187      1.4     1841      0.0     -0.2     -0.2     1187      1.4
## 5295      110      1.0     1854      0.5     18.3     18.3      110      1.0
## 6873     2329      1.3     2000      0.0     14.7     14.7     2329      1.3
## 1705      197      1.1      590      0.0     -3.1     -3.1      197      1.1
## 2941      818      2.0     1240      0.0      9.9      9.9      818      2.0
##      col 3452 col 3453 col 3454 col 3455 col 3456 col 3457 col 3458 col 3459
## 2151      5.7      3.7      0.0      5.7      0.0        0      2.5     0.13
## 7575     16.5      1.4      0.0     16.5      0.0        0     -0.2     2.43
## 5295     20.2      1.0      0.5     20.2      0.5        0     18.3     0.27
## 6873     20.9      1.3      0.0     20.9      0.0        0     14.7     0.18
## 1705      1.5      1.1      0.0      1.5      0.0        0     -3.1     0.00
## 2941     20.8      2.0      0.0     20.8      0.0        0      9.9     1.82
##      col 3460 col 3461 col 3462 col 3463 col 3464 col 3465 col 3466 col 3467
## 2151     0.13      5.7      Yes   Winter      5.7      0.0   Winter       80
## 7575     2.43     16.5      Yes   Autumn     16.5      0.0   Autumn       32
## 5295     0.27     20.2      Yes   Summer     20.2      0.5   Summer       89
## 6873     0.18     20.9      Yes   Autumn     20.9      0.0   Autumn       68
## 1705     0.00      1.5      Yes   Winter      1.5      0.0   Winter       71
## 2941     1.82     20.8      Yes   Spring     20.8      0.0   Spring       50
##      col 3468 col 3469 col 3470 col 3471 col 3472 col 3473 col 3474 col 3475
## 2151       14      Yes      5.7   Winter       14   Winter     0.13      0.0
## 7575       14      Yes     16.5   Autumn       14   Autumn     2.43      0.0
## 5295       14      Yes     20.2   Summer       14   Summer     0.27      0.5
## 6873        8      Yes     20.9   Autumn        8   Autumn     0.18      0.0
## 1705        0      Yes      1.5   Winter        0   Winter     0.00      0.0
## 2941       12      Yes     20.8   Spring       12   Spring     1.82      0.0
##      col 3476 col 3477 col 3478 col 3479 col 3480 col 3481 col 3482 col 3483
## 2151      5.7       80      348      2.5      348      0.0       80       80
## 7575     16.5       32     1841     -0.2     1841      0.0       32       32
## 5295     20.2       89     1854     18.3     1854      0.5       89       89
## 6873     20.9       68     2000     14.7     2000      0.0       68       68
## 1705      1.5       71      590     -3.1      590      0.0       71       71
## 2941     20.8       50     1240      9.9     1240      0.0       50       50
##      col 3484 col 3485   col 3486 col 3487 col 3488 col 3489 col 3490 col 3491
## 2151       17      Yes No Holiday        0        0      5.7      2.5      2.5
## 7575     1187      Yes No Holiday        0        0     16.5     -0.2     -0.2
## 5295      110      Yes No Holiday        0        0     20.2     18.3     18.3
## 6873     2329      Yes No Holiday        0        0     20.9     14.7     14.7
## 1705      197      Yes No Holiday        0        0      1.5     -3.1     -3.1
## 2941      818      Yes No Holiday        0        0     20.8      9.9      9.9
##        col 3492 col 3493 col 3494 col 3495 col 3496 col 3497   col 3498
## 2151 No Holiday      3.7     0.13     0.13     0.13       17 28/02/2018
## 7575 No Holiday      1.4     2.43     2.43     2.43     1187 12/10/2018
## 5295 No Holiday      1.0     0.27     0.27     0.27      110   9/7/2018
## 6873 No Holiday      1.3     0.18     0.18     0.18     2329 13/09/2018
## 1705 No Holiday      1.1     0.00     0.00     0.00      197  10/2/2018
## 2941 No Holiday      2.0     1.82     1.82     1.82      818   2/4/2018
##      col 3499 col 3500 col 3501 col 3502 col 3503 col 3504 col 3505 col 3506
## 2151      2.5      3.7       80      348       17        0      348      3.7
## 7575     -0.2      1.4       32     1841     1187        0     1841      1.4
## 5295     18.3      1.0       89     1854      110        0     1854      1.0
## 6873     14.7      1.3       68     2000     2329        0     2000      1.3
## 1705     -3.1      1.1       71      590      197        0      590      1.1
## 2941      9.9      2.0       50     1240      818        0     1240      2.0
##      col 3507 col 3508 col 3509 col 3510 col 3511   col 3512 col 3513 col 3514
## 2151      348        0       14       14      5.7 28/02/2018      0.0      0.0
## 7575     1841        0       14       14     16.5 12/10/2018      0.0      0.0
## 5295     1854        0       14       14     20.2   9/7/2018      0.5      0.5
## 6873     2000        0        8        8     20.9 13/09/2018      0.0      0.0
## 1705      590        0        0        0      1.5  10/2/2018      0.0      0.0
## 2941     1240        0       12       12     20.8   2/4/2018      0.0      0.0
##      col 3515 col 3516 col 3517 col 3518 col 3519 col 3520 col 3521 col 3522
## 2151       80      Yes       80     0.13   Winter       14      348      0.0
## 7575       32      Yes       32     2.43   Autumn       14     1841      0.0
## 5295       89      Yes       89     0.27   Summer       14     1854      0.5
## 6873       68      Yes       68     0.18   Autumn        8     2000      0.0
## 1705       71      Yes       71     0.00   Winter        0      590      0.0
## 2941       50      Yes       50     1.82   Spring       12     1240      0.0
##      col 3523   col 3524 col 3525   col 3526   col 3527 col 3528 col 3529
## 2151     0.13 No Holiday      3.7 28/02/2018 No Holiday        0   Winter
## 7575     2.43 No Holiday      1.4 12/10/2018 No Holiday        0   Autumn
## 5295     0.27 No Holiday      1.0   9/7/2018 No Holiday        0   Summer
## 6873     0.18 No Holiday      1.3 13/09/2018 No Holiday        0   Autumn
## 1705     0.00 No Holiday      1.1  10/2/2018 No Holiday        0   Winter
## 2941     1.82 No Holiday      2.0   2/4/2018 No Holiday        0   Spring
##      col 3530   col 3531 col 3532 col 3533 col 3534 col 3535 col 3536 col 3537
## 2151      0.0 28/02/2018        0      Yes      0.0       17      3.7      348
## 7575      0.0 12/10/2018        0      Yes      0.0     1187      1.4     1841
## 5295      0.5   9/7/2018        0      Yes      0.5      110      1.0     1854
## 6873      0.0 13/09/2018        0      Yes      0.0     2329      1.3     2000
## 1705      0.0  10/2/2018        0      Yes      0.0      197      1.1      590
## 2941      0.0   2/4/2018        0      Yes      0.0      818      2.0     1240
##      col 3538 col 3539 col 3540 col 3541 col 3542 col 3543 col 3544 col 3545
## 2151      3.7        0      Yes      3.7       17     0.13   Winter      348
## 7575      1.4        0      Yes      1.4     1187     2.43   Autumn     1841
## 5295      1.0        0      Yes      1.0      110     0.27   Summer     1854
## 6873      1.3        0      Yes      1.3     2329     0.18   Autumn     2000
## 1705      1.1        0      Yes      1.1      197     0.00   Winter      590
## 2941      2.0        0      Yes      2.0      818     1.82   Spring     1240
##        col 3546 col 3547 col 3548   col 3549 col 3550 col 3551 col 3552
## 2151 28/02/2018      348      0.0 28/02/2018       17       80      0.0
## 7575 12/10/2018     1841      0.0 12/10/2018     1187       32      0.0
## 5295   9/7/2018     1854      0.5   9/7/2018      110       89      0.5
## 6873 13/09/2018     2000      0.0 13/09/2018     2329       68      0.0
## 1705  10/2/2018      590      0.0  10/2/2018      197       71      0.0
## 2941   2/4/2018     1240      0.0   2/4/2018      818       50      0.0
##      col 3553 col 3554 col 3555 col 3556 col 3557 col 3558 col 3559 col 3560
## 2151      348      Yes     0.13   Winter       17   Winter      5.7       17
## 7575     1841      Yes     2.43   Autumn     1187   Autumn     16.5     1187
## 5295     1854      Yes     0.27   Summer      110   Summer     20.2      110
## 6873     2000      Yes     0.18   Autumn     2329   Autumn     20.9     2329
## 1705      590      Yes     0.00   Winter      197   Winter      1.5      197
## 2941     1240      Yes     1.82   Spring      818   Spring     20.8      818
##        col 3561 col 3562 col 3563 col 3564 col 3565 col 3566 col 3567
## 2151 No Holiday      2.5      348       17      348       17      0.0
## 7575 No Holiday     -0.2     1841     1187     1841     1187      0.0
## 5295 No Holiday     18.3     1854      110     1854      110      0.5
## 6873 No Holiday     14.7     2000     2329     2000     2329      0.0
## 1705 No Holiday     -3.1      590      197      590      197      0.0
## 2941 No Holiday      9.9     1240      818     1240      818      0.0
##        col 3568 col 3569 col 3570 col 3571 col 3572 col 3573 col 3574 col 3575
## 2151 No Holiday      0.0      Yes       80      348   Winter      3.7       14
## 7575 No Holiday      0.0      Yes       32     1841   Autumn      1.4       14
## 5295 No Holiday      0.5      Yes       89     1854   Summer      1.0       14
## 6873 No Holiday      0.0      Yes       68     2000   Autumn      1.3        8
## 1705 No Holiday      0.0      Yes       71      590   Winter      1.1        0
## 2941 No Holiday      0.0      Yes       50     1240   Spring      2.0       12
##      col 3576 col 3577 col 3578   col 3579 col 3580   col 3581 col 3582
## 2151      Yes      2.5      2.5 No Holiday       17 No Holiday      348
## 7575      Yes     -0.2     -0.2 No Holiday     1187 No Holiday     1841
## 5295      Yes     18.3     18.3 No Holiday      110 No Holiday     1854
## 6873      Yes     14.7     14.7 No Holiday     2329 No Holiday     2000
## 1705      Yes     -3.1     -3.1 No Holiday      197 No Holiday      590
## 2941      Yes      9.9      9.9 No Holiday      818 No Holiday     1240
##      col 3583 col 3584 col 3585 col 3586   col 3587 col 3588 col 3589 col 3590
## 2151        0      Yes       80     0.13 No Holiday       14      Yes       17
## 7575        0      Yes       32     2.43 No Holiday       14      Yes     1187
## 5295        0      Yes       89     0.27 No Holiday       14      Yes      110
## 6873        0      Yes       68     0.18 No Holiday        8      Yes     2329
## 1705        0      Yes       71     0.00 No Holiday        0      Yes      197
## 2941        0      Yes       50     1.82 No Holiday       12      Yes      818
##      col 3591 col 3592   col 3593 col 3594 col 3595 col 3596 col 3597 col 3598
## 2151   Winter      0.0 No Holiday        0      5.7       80      2.5      348
## 7575   Autumn      0.0 No Holiday        0     16.5       32     -0.2     1841
## 5295   Summer      0.5 No Holiday        0     20.2       89     18.3     1854
## 6873   Autumn      0.0 No Holiday        0     20.9       68     14.7     2000
## 1705   Winter      0.0 No Holiday        0      1.5       71     -3.1      590
## 2941   Spring      0.0 No Holiday        0     20.8       50      9.9     1240
##      col 3599 col 3600 col 3601 col 3602 col 3603   col 3604 col 3605 col 3606
## 2151       17       17   Winter      348   Winter 28/02/2018       17      Yes
## 7575     1187     1187   Autumn     1841   Autumn 12/10/2018     1187      Yes
## 5295      110      110   Summer     1854   Summer   9/7/2018      110      Yes
## 6873     2329     2329   Autumn     2000   Autumn 13/09/2018     2329      Yes
## 1705      197      197   Winter      590   Winter  10/2/2018      197      Yes
## 2941      818      818   Spring     1240   Spring   2/4/2018      818      Yes
##      col 3607   col 3608   col 3609 col 3610 col 3611   col 3612 col 3613
## 2151      2.5 28/02/2018 No Holiday      Yes      348 No Holiday       80
## 7575     -0.2 12/10/2018 No Holiday      Yes     1841 No Holiday       32
## 5295     18.3   9/7/2018 No Holiday      Yes     1854 No Holiday       89
## 6873     14.7 13/09/2018 No Holiday      Yes     2000 No Holiday       68
## 1705     -3.1  10/2/2018 No Holiday      Yes      590 No Holiday       71
## 2941      9.9   2/4/2018 No Holiday      Yes     1240 No Holiday       50
##      col 3614 col 3615 col 3616   col 3617 col 3618 col 3619 col 3620 col 3621
## 2151      0.0       17      3.7 No Holiday     0.13        0     0.13     0.13
## 7575      0.0     1187      1.4 No Holiday     2.43        0     2.43     2.43
## 5295      0.5      110      1.0 No Holiday     0.27        0     0.27     0.27
## 6873      0.0     2329      1.3 No Holiday     0.18        0     0.18     0.18
## 1705      0.0      197      1.1 No Holiday     0.00        0     0.00     0.00
## 2941      0.0      818      2.0 No Holiday     1.82        0     1.82     1.82
##        col 3622 col 3623 col 3624 col 3625   col 3626 col 3627 col 3628
## 2151 28/02/2018        0      2.5       80 No Holiday      Yes     0.13
## 7575 12/10/2018        0     -0.2       32 No Holiday      Yes     2.43
## 5295   9/7/2018        0     18.3       89 No Holiday      Yes     0.27
## 6873 13/09/2018        0     14.7       68 No Holiday      Yes     0.18
## 1705  10/2/2018        0     -3.1       71 No Holiday      Yes     0.00
## 2941   2/4/2018        0      9.9       50 No Holiday      Yes     1.82
##        col 3629 col 3630 col 3631 col 3632 col 3633 col 3634 col 3635 col 3636
## 2151 28/02/2018      0.0      3.7       80      0.0      2.5   Winter      5.7
## 7575 12/10/2018      0.0      1.4       32      0.0     -0.2   Autumn     16.5
## 5295   9/7/2018      0.5      1.0       89      0.5     18.3   Summer     20.2
## 6873 13/09/2018      0.0      1.3       68      0.0     14.7   Autumn     20.9
## 1705  10/2/2018      0.0      1.1       71      0.0     -3.1   Winter      1.5
## 2941   2/4/2018      0.0      2.0       50      0.0      9.9   Spring     20.8
##        col 3637 col 3638 col 3639 col 3640 col 3641 col 3642 col 3643 col 3644
## 2151 28/02/2018      Yes      Yes       80       14      Yes     0.13   Winter
## 7575 12/10/2018      Yes      Yes       32       14      Yes     2.43   Autumn
## 5295   9/7/2018      Yes      Yes       89       14      Yes     0.27   Summer
## 6873 13/09/2018      Yes      Yes       68        8      Yes     0.18   Autumn
## 1705  10/2/2018      Yes      Yes       71        0      Yes     0.00   Winter
## 2941   2/4/2018      Yes      Yes       50       12      Yes     1.82   Spring
##      col 3645 col 3646   col 3647 col 3648   col 3649 col 3650 col 3651
## 2151        0   Winter No Holiday       14 28/02/2018      2.5   Winter
## 7575        0   Autumn No Holiday       14 12/10/2018     -0.2   Autumn
## 5295        0   Summer No Holiday       14   9/7/2018     18.3   Summer
## 6873        0   Autumn No Holiday        8 13/09/2018     14.7   Autumn
## 1705        0   Winter No Holiday        0  10/2/2018     -3.1   Winter
## 2941        0   Spring No Holiday       12   2/4/2018      9.9   Spring
##      col 3652 col 3653   col 3654 col 3655 col 3656 col 3657 col 3658 col 3659
## 2151      0.0      Yes 28/02/2018       17        0      Yes      5.7        0
## 7575      0.0      Yes 12/10/2018     1187        0      Yes     16.5        0
## 5295      0.5      Yes   9/7/2018      110        0      Yes     20.2        0
## 6873      0.0      Yes 13/09/2018     2329        0      Yes     20.9        0
## 1705      0.0      Yes  10/2/2018      197        0      Yes      1.5        0
## 2941      0.0      Yes   2/4/2018      818        0      Yes     20.8        0
##      col 3660 col 3661 col 3662 col 3663 col 3664 col 3665   col 3666 col 3667
## 2151      2.5       17      Yes      5.7      0.0       80 28/02/2018      0.0
## 7575     -0.2     1187      Yes     16.5      0.0       32 12/10/2018      0.0
## 5295     18.3      110      Yes     20.2      0.5       89   9/7/2018      0.5
## 6873     14.7     2329      Yes     20.9      0.0       68 13/09/2018      0.0
## 1705     -3.1      197      Yes      1.5      0.0       71  10/2/2018      0.0
## 2941      9.9      818      Yes     20.8      0.0       50   2/4/2018      0.0
##      col 3668 col 3669 col 3670 col 3671 col 3672 col 3673 col 3674 col 3675
## 2151      3.7      5.7      2.5       14      348     0.13      2.5       17
## 7575      1.4     16.5     -0.2       14     1841     2.43     -0.2     1187
## 5295      1.0     20.2     18.3       14     1854     0.27     18.3      110
## 6873      1.3     20.9     14.7        8     2000     0.18     14.7     2329
## 1705      1.1      1.5     -3.1        0      590     0.00     -3.1      197
## 2941      2.0     20.8      9.9       12     1240     1.82      9.9      818
##        col 3676 col 3677 col 3678 col 3679 col 3680 col 3681 col 3682 col 3683
## 2151 28/02/2018       80     0.13     0.13       17       17      2.5      348
## 7575 12/10/2018       32     2.43     2.43     1187     1187     -0.2     1841
## 5295   9/7/2018       89     0.27     0.27      110      110     18.3     1854
## 6873 13/09/2018       68     0.18     0.18     2329     2329     14.7     2000
## 1705  10/2/2018       71     0.00     0.00      197      197     -3.1      590
## 2941   2/4/2018       50     1.82     1.82      818      818      9.9     1240
##      col 3684 col 3685   col 3686   col 3687 col 3688 col 3689 col 3690
## 2151      3.7       14 28/02/2018 28/02/2018      0.0      348      Yes
## 7575      1.4       14 12/10/2018 12/10/2018      0.0     1841      Yes
## 5295      1.0       14   9/7/2018   9/7/2018      0.5     1854      Yes
## 6873      1.3        8 13/09/2018 13/09/2018      0.0     2000      Yes
## 1705      1.1        0  10/2/2018  10/2/2018      0.0      590      Yes
## 2941      2.0       12   2/4/2018   2/4/2018      0.0     1240      Yes
##      col 3691 col 3692 col 3693 col 3694 col 3695 col 3696 col 3697 col 3698
## 2151      0.0       80        0     0.13      5.7   Winter      3.7      0.0
## 7575      0.0       32        0     2.43     16.5   Autumn      1.4      0.0
## 5295      0.5       89        0     0.27     20.2   Summer      1.0      0.5
## 6873      0.0       68        0     0.18     20.9   Autumn      1.3      0.0
## 1705      0.0       71        0     0.00      1.5   Winter      1.1      0.0
## 2941      0.0       50        0     1.82     20.8   Spring      2.0      0.0
##      col 3699 col 3700 col 3701 col 3702 col 3703 col 3704 col 3705   col 3706
## 2151      3.7   Winter      0.0      Yes       80       80      348 28/02/2018
## 7575      1.4   Autumn      0.0      Yes       32       32     1841 12/10/2018
## 5295      1.0   Summer      0.5      Yes       89       89     1854   9/7/2018
## 6873      1.3   Autumn      0.0      Yes       68       68     2000 13/09/2018
## 1705      1.1   Winter      0.0      Yes       71       71      590  10/2/2018
## 2941      2.0   Spring      0.0      Yes       50       50     1240   2/4/2018
##      col 3707 col 3708 col 3709 col 3710 col 3711 col 3712 col 3713 col 3714
## 2151      3.7       17      348      Yes      0.0      0.0       17      348
## 7575      1.4     1187     1841      Yes      0.0      0.0     1187     1841
## 5295      1.0      110     1854      Yes      0.5      0.5      110     1854
## 6873      1.3     2329     2000      Yes      0.0      0.0     2329     2000
## 1705      1.1      197      590      Yes      0.0      0.0      197      590
## 2941      2.0      818     1240      Yes      0.0      0.0      818     1240
##      col 3715 col 3716 col 3717   col 3718   col 3719 col 3720   col 3721
## 2151      Yes       80      0.0 28/02/2018 28/02/2018       80 No Holiday
## 7575      Yes       32      0.0 12/10/2018 12/10/2018       32 No Holiday
## 5295      Yes       89      0.5   9/7/2018   9/7/2018       89 No Holiday
## 6873      Yes       68      0.0 13/09/2018 13/09/2018       68 No Holiday
## 1705      Yes       71      0.0  10/2/2018  10/2/2018       71 No Holiday
## 2941      Yes       50      0.0   2/4/2018   2/4/2018       50 No Holiday
##        col 3722 col 3723 col 3724 col 3725 col 3726 col 3727 col 3728 col 3729
## 2151 No Holiday      348   Winter     0.13       14     0.13   Winter      5.7
## 7575 No Holiday     1841   Autumn     2.43       14     2.43   Autumn     16.5
## 5295 No Holiday     1854   Summer     0.27       14     0.27   Summer     20.2
## 6873 No Holiday     2000   Autumn     0.18        8     0.18   Autumn     20.9
## 1705 No Holiday      590   Winter     0.00        0     0.00   Winter      1.5
## 2941 No Holiday     1240   Spring     1.82       12     1.82   Spring     20.8
##      col 3730 col 3731   col 3732 col 3733 col 3734 col 3735   col 3736
## 2151       17       80 No Holiday      0.0      5.7      Yes 28/02/2018
## 7575     1187       32 No Holiday      0.0     16.5      Yes 12/10/2018
## 5295      110       89 No Holiday      0.5     20.2      Yes   9/7/2018
## 6873     2329       68 No Holiday      0.0     20.9      Yes 13/09/2018
## 1705      197       71 No Holiday      0.0      1.5      Yes  10/2/2018
## 2941      818       50 No Holiday      0.0     20.8      Yes   2/4/2018
##        col 3737 col 3738 col 3739 col 3740 col 3741   col 3742 col 3743
## 2151 28/02/2018       14     0.13      2.5       14 28/02/2018       14
## 7575 12/10/2018       14     2.43     -0.2       14 12/10/2018       14
## 5295   9/7/2018       14     0.27     18.3       14   9/7/2018       14
## 6873 13/09/2018        8     0.18     14.7        8 13/09/2018        8
## 1705  10/2/2018        0     0.00     -3.1        0  10/2/2018        0
## 2941   2/4/2018       12     1.82      9.9       12   2/4/2018       12
##      col 3744 col 3745 col 3746 col 3747 col 3748   col 3749 col 3750
## 2151       80        0      348       80      348 28/02/2018       14
## 7575       32        0     1841       32     1841 12/10/2018       14
## 5295       89        0     1854       89     1854   9/7/2018       14
## 6873       68        0     2000       68     2000 13/09/2018        8
## 1705       71        0      590       71      590  10/2/2018        0
## 2941       50        0     1240       50     1240   2/4/2018       12
##        col 3751 col 3752   col 3753   col 3754 col 3755 col 3756 col 3757
## 2151 28/02/2018       14 28/02/2018 28/02/2018      3.7        0       80
## 7575 12/10/2018       14 12/10/2018 12/10/2018      1.4        0       32
## 5295   9/7/2018       14   9/7/2018   9/7/2018      1.0        0       89
## 6873 13/09/2018        8 13/09/2018 13/09/2018      1.3        0       68
## 1705  10/2/2018        0  10/2/2018  10/2/2018      1.1        0       71
## 2941   2/4/2018       12   2/4/2018   2/4/2018      2.0        0       50
##      col 3758 col 3759 col 3760 col 3761 col 3762 col 3763 col 3764 col 3765
## 2151      Yes      5.7       14   Winter       80      Yes       14     0.13
## 7575      Yes     16.5       14   Autumn       32      Yes       14     2.43
## 5295      Yes     20.2       14   Summer       89      Yes       14     0.27
## 6873      Yes     20.9        8   Autumn       68      Yes        8     0.18
## 1705      Yes      1.5        0   Winter       71      Yes        0     0.00
## 2941      Yes     20.8       12   Spring       50      Yes       12     1.82
##        col 3766 col 3767 col 3768 col 3769 col 3770 col 3771 col 3772
## 2151 No Holiday      3.7      3.7       80   Winter      0.0      348
## 7575 No Holiday      1.4      1.4       32   Autumn      0.0     1841
## 5295 No Holiday      1.0      1.0       89   Summer      0.5     1854
## 6873 No Holiday      1.3      1.3       68   Autumn      0.0     2000
## 1705 No Holiday      1.1      1.1       71   Winter      0.0      590
## 2941 No Holiday      2.0      2.0       50   Spring      0.0     1240
##        col 3773 col 3774 col 3775 col 3776   col 3777 col 3778 col 3779
## 2151 28/02/2018      348      3.7        0 No Holiday      0.0     0.13
## 7575 12/10/2018     1841      1.4        0 No Holiday      0.0     2.43
## 5295   9/7/2018     1854      1.0        0 No Holiday      0.5     0.27
## 6873 13/09/2018     2000      1.3        0 No Holiday      0.0     0.18
## 1705  10/2/2018      590      1.1        0 No Holiday      0.0     0.00
## 2941   2/4/2018     1240      2.0        0 No Holiday      0.0     1.82
##      col 3780 col 3781 col 3782 col 3783 col 3784 col 3785 col 3786 col 3787
## 2151      348       17      Yes      Yes       14      2.5      5.7      Yes
## 7575     1841     1187      Yes      Yes       14     -0.2     16.5      Yes
## 5295     1854      110      Yes      Yes       14     18.3     20.2      Yes
## 6873     2000     2329      Yes      Yes        8     14.7     20.9      Yes
## 1705      590      197      Yes      Yes        0     -3.1      1.5      Yes
## 2941     1240      818      Yes      Yes       12      9.9     20.8      Yes
##      col 3788 col 3789 col 3790   col 3791 col 3792 col 3793 col 3794 col 3795
## 2151       80       14      0.0 28/02/2018       80      2.5     0.13      3.7
## 7575       32       14      0.0 12/10/2018       32     -0.2     2.43      1.4
## 5295       89       14      0.5   9/7/2018       89     18.3     0.27      1.0
## 6873       68        8      0.0 13/09/2018       68     14.7     0.18      1.3
## 1705       71        0      0.0  10/2/2018       71     -3.1     0.00      1.1
## 2941       50       12      0.0   2/4/2018       50      9.9     1.82      2.0
##      col 3796 col 3797 col 3798 col 3799 col 3800 col 3801 col 3802 col 3803
## 2151      Yes       80      3.7   Winter     0.13   Winter       17     0.13
## 7575      Yes       32      1.4   Autumn     2.43   Autumn     1187     2.43
## 5295      Yes       89      1.0   Summer     0.27   Summer      110     0.27
## 6873      Yes       68      1.3   Autumn     0.18   Autumn     2329     0.18
## 1705      Yes       71      1.1   Winter     0.00   Winter      197     0.00
## 2941      Yes       50      2.0   Spring     1.82   Spring      818     1.82
##        col 3804 col 3805 col 3806 col 3807 col 3808   col 3809 col 3810
## 2151 28/02/2018      5.7       17      0.0      348 28/02/2018      348
## 7575 12/10/2018     16.5     1187      0.0     1841 12/10/2018     1841
## 5295   9/7/2018     20.2      110      0.5     1854   9/7/2018     1854
## 6873 13/09/2018     20.9     2329      0.0     2000 13/09/2018     2000
## 1705  10/2/2018      1.5      197      0.0      590  10/2/2018      590
## 2941   2/4/2018     20.8      818      0.0     1240   2/4/2018     1240
##      col 3811 col 3812 col 3813 col 3814 col 3815 col 3816 col 3817 col 3818
## 2151     0.13      3.7        0      348     0.13       17     0.13      5.7
## 7575     2.43      1.4        0     1841     2.43     1187     2.43     16.5
## 5295     0.27      1.0        0     1854     0.27      110     0.27     20.2
## 6873     0.18      1.3        0     2000     0.18     2329     0.18     20.9
## 1705     0.00      1.1        0      590     0.00      197     0.00      1.5
## 2941     1.82      2.0        0     1240     1.82      818     1.82     20.8
##      col 3819 col 3820 col 3821 col 3822 col 3823 col 3824 col 3825 col 3826
## 2151      5.7     0.13      348       14      0.0      Yes      3.7      348
## 7575     16.5     2.43     1841       14      0.0      Yes      1.4     1841
## 5295     20.2     0.27     1854       14      0.5      Yes      1.0     1854
## 6873     20.9     0.18     2000        8      0.0      Yes      1.3     2000
## 1705      1.5     0.00      590        0      0.0      Yes      1.1      590
## 2941     20.8     1.82     1240       12      0.0      Yes      2.0     1240
##      col 3827   col 3828   col 3829 col 3830 col 3831 col 3832 col 3833
## 2151      348 28/02/2018 No Holiday       14        0      348     0.13
## 7575     1841 12/10/2018 No Holiday       14        0     1841     2.43
## 5295     1854   9/7/2018 No Holiday       14        0     1854     0.27
## 6873     2000 13/09/2018 No Holiday        8        0     2000     0.18
## 1705      590  10/2/2018 No Holiday        0        0      590     0.00
## 2941     1240   2/4/2018 No Holiday       12        0     1240     1.82
##      col 3834 col 3835 col 3836 col 3837 col 3838 col 3839 col 3840 col 3841
## 2151     0.13      5.7       80      Yes      5.7     0.13       17      0.0
## 7575     2.43     16.5       32      Yes     16.5     2.43     1187      0.0
## 5295     0.27     20.2       89      Yes     20.2     0.27      110      0.5
## 6873     0.18     20.9       68      Yes     20.9     0.18     2329      0.0
## 1705     0.00      1.5       71      Yes      1.5     0.00      197      0.0
## 2941     1.82     20.8       50      Yes     20.8     1.82      818      0.0
##      col 3842 col 3843 col 3844 col 3845 col 3846 col 3847 col 3848   col 3849
## 2151       17       14      5.7      2.5      2.5      348      348 No Holiday
## 7575     1187       14     16.5     -0.2     -0.2     1841     1841 No Holiday
## 5295      110       14     20.2     18.3     18.3     1854     1854 No Holiday
## 6873     2329        8     20.9     14.7     14.7     2000     2000 No Holiday
## 1705      197        0      1.5     -3.1     -3.1      590      590 No Holiday
## 2941      818       12     20.8      9.9      9.9     1240     1240 No Holiday
##      col 3850 col 3851 col 3852 col 3853 col 3854 col 3855 col 3856 col 3857
## 2151       80      348      348        0      0.0      2.5        0      348
## 7575       32     1841     1841        0      0.0     -0.2        0     1841
## 5295       89     1854     1854        0      0.5     18.3        0     1854
## 6873       68     2000     2000        0      0.0     14.7        0     2000
## 1705       71      590      590        0      0.0     -3.1        0      590
## 2941       50     1240     1240        0      0.0      9.9        0     1240
##      col 3858 col 3859 col 3860 col 3861 col 3862 col 3863 col 3864 col 3865
## 2151        0      5.7        0      Yes   Winter      Yes       80      0.0
## 7575        0     16.5        0      Yes   Autumn      Yes       32      0.0
## 5295        0     20.2        0      Yes   Summer      Yes       89      0.5
## 6873        0     20.9        0      Yes   Autumn      Yes       68      0.0
## 1705        0      1.5        0      Yes   Winter      Yes       71      0.0
## 2941        0     20.8        0      Yes   Spring      Yes       50      0.0
##      col 3866   col 3867 col 3868 col 3869 col 3870   col 3871   col 3872
## 2151       17 28/02/2018      5.7      2.5      0.0 No Holiday 28/02/2018
## 7575     1187 12/10/2018     16.5     -0.2      0.0 No Holiday 12/10/2018
## 5295      110   9/7/2018     20.2     18.3      0.5 No Holiday   9/7/2018
## 6873     2329 13/09/2018     20.9     14.7      0.0 No Holiday 13/09/2018
## 1705      197  10/2/2018      1.5     -3.1      0.0 No Holiday  10/2/2018
## 2941      818   2/4/2018     20.8      9.9      0.0 No Holiday   2/4/2018
##      col 3873 col 3874 col 3875 col 3876 col 3877 col 3878 col 3879 col 3880
## 2151      3.7      Yes       17      348       14       17      2.5       17
## 7575      1.4      Yes     1187     1841       14     1187     -0.2     1187
## 5295      1.0      Yes      110     1854       14      110     18.3      110
## 6873      1.3      Yes     2329     2000        8     2329     14.7     2329
## 1705      1.1      Yes      197      590        0      197     -3.1      197
## 2941      2.0      Yes      818     1240       12      818      9.9      818
##      col 3881 col 3882 col 3883 col 3884 col 3885 col 3886 col 3887 col 3888
## 2151      0.0      Yes      348      5.7       17     0.13      348      348
## 7575      0.0      Yes     1841     16.5     1187     2.43     1841     1841
## 5295      0.5      Yes     1854     20.2      110     0.27     1854     1854
## 6873      0.0      Yes     2000     20.9     2329     0.18     2000     2000
## 1705      0.0      Yes      590      1.5      197     0.00      590      590
## 2941      0.0      Yes     1240     20.8      818     1.82     1240     1240
##      col 3889   col 3890 col 3891 col 3892 col 3893 col 3894 col 3895 col 3896
## 2151      2.5 28/02/2018      3.7   Winter      0.0      2.5        0       80
## 7575     -0.2 12/10/2018      1.4   Autumn      0.0     -0.2        0       32
## 5295     18.3   9/7/2018      1.0   Summer      0.5     18.3        0       89
## 6873     14.7 13/09/2018      1.3   Autumn      0.0     14.7        0       68
## 1705     -3.1  10/2/2018      1.1   Winter      0.0     -3.1        0       71
## 2941      9.9   2/4/2018      2.0   Spring      0.0      9.9        0       50
##        col 3897 col 3898 col 3899   col 3900   col 3901 col 3902 col 3903
## 2151 No Holiday     0.13   Winter No Holiday 28/02/2018       17      5.7
## 7575 No Holiday     2.43   Autumn No Holiday 12/10/2018     1187     16.5
## 5295 No Holiday     0.27   Summer No Holiday   9/7/2018      110     20.2
## 6873 No Holiday     0.18   Autumn No Holiday 13/09/2018     2329     20.9
## 1705 No Holiday     0.00   Winter No Holiday  10/2/2018      197      1.5
## 2941 No Holiday     1.82   Spring No Holiday   2/4/2018      818     20.8
##        col 3904   col 3905 col 3906 col 3907 col 3908 col 3909 col 3910
## 2151 No Holiday No Holiday       17      2.5      5.7      Yes        0
## 7575 No Holiday No Holiday     1187     -0.2     16.5      Yes        0
## 5295 No Holiday No Holiday      110     18.3     20.2      Yes        0
## 6873 No Holiday No Holiday     2329     14.7     20.9      Yes        0
## 1705 No Holiday No Holiday      197     -3.1      1.5      Yes        0
## 2941 No Holiday No Holiday      818      9.9     20.8      Yes        0
##      col 3911   col 3912   col 3913 col 3914 col 3915 col 3916 col 3917
## 2151       14 No Holiday No Holiday        0      348      3.7   Winter
## 7575       14 No Holiday No Holiday        0     1841      1.4   Autumn
## 5295       14 No Holiday No Holiday        0     1854      1.0   Summer
## 6873        8 No Holiday No Holiday        0     2000      1.3   Autumn
## 1705        0 No Holiday No Holiday        0      590      1.1   Winter
## 2941       12 No Holiday No Holiday        0     1240      2.0   Spring
##      col 3918   col 3919 col 3920 col 3921 col 3922 col 3923 col 3924 col 3925
## 2151       14 28/02/2018       14      Yes     0.13       17       80       80
## 7575       14 12/10/2018       14      Yes     2.43     1187       32       32
## 5295       14   9/7/2018       14      Yes     0.27      110       89       89
## 6873        8 13/09/2018        8      Yes     0.18     2329       68       68
## 1705        0  10/2/2018        0      Yes     0.00      197       71       71
## 2941       12   2/4/2018       12      Yes     1.82      818       50       50
##      col 3926 col 3927 col 3928 col 3929   col 3930 col 3931 col 3932
## 2151       17       80       80      5.7 28/02/2018       17      Yes
## 7575     1187       32       32     16.5 12/10/2018     1187      Yes
## 5295      110       89       89     20.2   9/7/2018      110      Yes
## 6873     2329       68       68     20.9 13/09/2018     2329      Yes
## 1705      197       71       71      1.5  10/2/2018      197      Yes
## 2941      818       50       50     20.8   2/4/2018      818      Yes
##        col 3933 col 3934 col 3935 col 3936 col 3937   col 3938 col 3939
## 2151 28/02/2018   Winter       80      2.5   Winter 28/02/2018      0.0
## 7575 12/10/2018   Autumn       32     -0.2   Autumn 12/10/2018      0.0
## 5295   9/7/2018   Summer       89     18.3   Summer   9/7/2018      0.5
## 6873 13/09/2018   Autumn       68     14.7   Autumn 13/09/2018      0.0
## 1705  10/2/2018   Winter       71     -3.1   Winter  10/2/2018      0.0
## 2941   2/4/2018   Spring       50      9.9   Spring   2/4/2018      0.0
##      col 3940 col 3941 col 3942 col 3943 col 3944 col 3945 col 3946 col 3947
## 2151     0.13     0.13      2.5       17       14       14      0.0       80
## 7575     2.43     2.43     -0.2     1187       14       14      0.0       32
## 5295     0.27     0.27     18.3      110       14       14      0.5       89
## 6873     0.18     0.18     14.7     2329        8        8      0.0       68
## 1705     0.00     0.00     -3.1      197        0        0      0.0       71
## 2941     1.82     1.82      9.9      818       12       12      0.0       50
##      col 3948   col 3949 col 3950 col 3951   col 3952 col 3953   col 3954
## 2151     0.13 No Holiday      Yes      Yes No Holiday      2.5 No Holiday
## 7575     2.43 No Holiday      Yes      Yes No Holiday     -0.2 No Holiday
## 5295     0.27 No Holiday      Yes      Yes No Holiday     18.3 No Holiday
## 6873     0.18 No Holiday      Yes      Yes No Holiday     14.7 No Holiday
## 1705     0.00 No Holiday      Yes      Yes No Holiday     -3.1 No Holiday
## 2941     1.82 No Holiday      Yes      Yes No Holiday      9.9 No Holiday
##      col 3955 col 3956 col 3957 col 3958 col 3959 col 3960 col 3961 col 3962
## 2151       17       17      3.7      2.5     0.13   Winter       80     0.13
## 7575     1187     1187      1.4     -0.2     2.43   Autumn       32     2.43
## 5295      110      110      1.0     18.3     0.27   Summer       89     0.27
## 6873     2329     2329      1.3     14.7     0.18   Autumn       68     0.18
## 1705      197      197      1.1     -3.1     0.00   Winter       71     0.00
## 2941      818      818      2.0      9.9     1.82   Spring       50     1.82
##      col 3963 col 3964 col 3965 col 3966 col 3967 col 3968 col 3969   col 3970
## 2151      5.7       14      0.0      2.5      Yes       14      348 No Holiday
## 7575     16.5       14      0.0     -0.2      Yes       14     1841 No Holiday
## 5295     20.2       14      0.5     18.3      Yes       14     1854 No Holiday
## 6873     20.9        8      0.0     14.7      Yes        8     2000 No Holiday
## 1705      1.5        0      0.0     -3.1      Yes        0      590 No Holiday
## 2941     20.8       12      0.0      9.9      Yes       12     1240 No Holiday
##        col 3971 col 3972 col 3973 col 3974 col 3975 col 3976 col 3977 col 3978
## 2151 No Holiday   Winter       14        0      3.7      Yes       80      3.7
## 7575 No Holiday   Autumn       14        0      1.4      Yes       32      1.4
## 5295 No Holiday   Summer       14        0      1.0      Yes       89      1.0
## 6873 No Holiday   Autumn        8        0      1.3      Yes       68      1.3
## 1705 No Holiday   Winter        0        0      1.1      Yes       71      1.1
## 2941 No Holiday   Spring       12        0      2.0      Yes       50      2.0
##      col 3979 col 3980 col 3981 col 3982 col 3983   col 3984 col 3985 col 3986
## 2151      3.7      0.0      5.7        0      0.0 28/02/2018      3.7      Yes
## 7575      1.4      0.0     16.5        0      0.0 12/10/2018      1.4      Yes
## 5295      1.0      0.5     20.2        0      0.5   9/7/2018      1.0      Yes
## 6873      1.3      0.0     20.9        0      0.0 13/09/2018      1.3      Yes
## 1705      1.1      0.0      1.5        0      0.0  10/2/2018      1.1      Yes
## 2941      2.0      0.0     20.8        0      0.0   2/4/2018      2.0      Yes
##      col 3987 col 3988 col 3989   col 3990 col 3991 col 3992 col 3993 col 3994
## 2151       80        0       14 No Holiday      3.7   Winter   Winter       80
## 7575       32        0       14 No Holiday      1.4   Autumn   Autumn       32
## 5295       89        0       14 No Holiday      1.0   Summer   Summer       89
## 6873       68        0        8 No Holiday      1.3   Autumn   Autumn       68
## 1705       71        0        0 No Holiday      1.1   Winter   Winter       71
## 2941       50        0       12 No Holiday      2.0   Spring   Spring       50
##        col 3995 col 3996 col 3997 col 3998 col 3999 col 4000 col 4001 col 4002
## 2151 No Holiday      3.7   Winter       17      Yes      348      348        0
## 7575 No Holiday      1.4   Autumn     1187      Yes     1841     1841        0
## 5295 No Holiday      1.0   Summer      110      Yes     1854     1854        0
## 6873 No Holiday      1.3   Autumn     2329      Yes     2000     2000        0
## 1705 No Holiday      1.1   Winter      197      Yes      590      590        0
## 2941 No Holiday      2.0   Spring      818      Yes     1240     1240        0
##      col 4003 col 4004 col 4005   col 4006   col 4007 col 4008 col 4009
## 2151        0        0       17 28/02/2018 No Holiday       14      2.5
## 7575        0        0     1187 12/10/2018 No Holiday       14     -0.2
## 5295        0        0      110   9/7/2018 No Holiday       14     18.3
## 6873        0        0     2329 13/09/2018 No Holiday        8     14.7
## 1705        0        0      197  10/2/2018 No Holiday        0     -3.1
## 2941        0        0      818   2/4/2018 No Holiday       12      9.9
##      col 4010 col 4011 col 4012   col 4013 col 4014 col 4015 col 4016 col 4017
## 2151       17      0.0        0 No Holiday       14      2.5   Winter      5.7
## 7575     1187      0.0        0 No Holiday       14     -0.2   Autumn     16.5
## 5295      110      0.5        0 No Holiday       14     18.3   Summer     20.2
## 6873     2329      0.0        0 No Holiday        8     14.7   Autumn     20.9
## 1705      197      0.0        0 No Holiday        0     -3.1   Winter      1.5
## 2941      818      0.0        0 No Holiday       12      9.9   Spring     20.8
##        col 4018 col 4019 col 4020 col 4021 col 4022 col 4023 col 4024 col 4025
## 2151 28/02/2018      Yes      2.5      3.7      0.0      2.5      3.7       17
## 7575 12/10/2018      Yes     -0.2      1.4      0.0     -0.2      1.4     1187
## 5295   9/7/2018      Yes     18.3      1.0      0.5     18.3      1.0      110
## 6873 13/09/2018      Yes     14.7      1.3      0.0     14.7      1.3     2329
## 1705  10/2/2018      Yes     -3.1      1.1      0.0     -3.1      1.1      197
## 2941   2/4/2018      Yes      9.9      2.0      0.0      9.9      2.0      818
##        col 4026 col 4027 col 4028 col 4029 col 4030 col 4031 col 4032 col 4033
## 2151 No Holiday       17       17      348      0.0       80        0       17
## 7575 No Holiday     1187     1187     1841      0.0       32        0     1187
## 5295 No Holiday      110      110     1854      0.5       89        0      110
## 6873 No Holiday     2329     2329     2000      0.0       68        0     2329
## 1705 No Holiday      197      197      590      0.0       71        0      197
## 2941 No Holiday      818      818     1240      0.0       50        0      818
##      col 4034 col 4035 col 4036 col 4037 col 4038 col 4039 col 4040 col 4041
## 2151        0      Yes     0.13     0.13       14      3.7     0.13       80
## 7575        0      Yes     2.43     2.43       14      1.4     2.43       32
## 5295        0      Yes     0.27     0.27       14      1.0     0.27       89
## 6873        0      Yes     0.18     0.18        8      1.3     0.18       68
## 1705        0      Yes     0.00     0.00        0      1.1     0.00       71
## 2941        0      Yes     1.82     1.82       12      2.0     1.82       50
##      col 4042 col 4043 col 4044 col 4045 col 4046 col 4047 col 4048 col 4049
## 2151      2.5       80        0     0.13   Winter      348       14       17
## 7575     -0.2       32        0     2.43   Autumn     1841       14     1187
## 5295     18.3       89        0     0.27   Summer     1854       14      110
## 6873     14.7       68        0     0.18   Autumn     2000        8     2329
## 1705     -3.1       71        0     0.00   Winter      590        0      197
## 2941      9.9       50        0     1.82   Spring     1240       12      818
##      col 4050   col 4051 col 4052   col 4053 col 4054 col 4055 col 4056
## 2151     0.13 No Holiday       17 28/02/2018      Yes     0.13   Winter
## 7575     2.43 No Holiday     1187 12/10/2018      Yes     2.43   Autumn
## 5295     0.27 No Holiday      110   9/7/2018      Yes     0.27   Summer
## 6873     0.18 No Holiday     2329 13/09/2018      Yes     0.18   Autumn
## 1705     0.00 No Holiday      197  10/2/2018      Yes     0.00   Winter
## 2941     1.82 No Holiday      818   2/4/2018      Yes     1.82   Spring
##      col 4057 col 4058 col 4059   col 4060 col 4061 col 4062 col 4063 col 4064
## 2151      2.5      0.0       14 28/02/2018      348     0.13       14      348
## 7575     -0.2      0.0       14 12/10/2018     1841     2.43       14     1841
## 5295     18.3      0.5       14   9/7/2018     1854     0.27       14     1854
## 6873     14.7      0.0        8 13/09/2018     2000     0.18        8     2000
## 1705     -3.1      0.0        0  10/2/2018      590     0.00        0      590
## 2941      9.9      0.0       12   2/4/2018     1240     1.82       12     1240
##      col 4065 col 4066 col 4067 col 4068 col 4069 col 4070 col 4071 col 4072
## 2151       80      5.7        0      Yes      0.0      348      0.0       14
## 7575       32     16.5        0      Yes      0.0     1841      0.0       14
## 5295       89     20.2        0      Yes      0.5     1854      0.5       14
## 6873       68     20.9        0      Yes      0.0     2000      0.0        8
## 1705       71      1.5        0      Yes      0.0      590      0.0        0
## 2941       50     20.8        0      Yes      0.0     1240      0.0       12
##      col 4073 col 4074 col 4075   col 4076 col 4077 col 4078 col 4079 col 4080
## 2151       17       80       14 No Holiday      0.0      3.7      3.7      2.5
## 7575     1187       32       14 No Holiday      0.0      1.4      1.4     -0.2
## 5295      110       89       14 No Holiday      0.5      1.0      1.0     18.3
## 6873     2329       68        8 No Holiday      0.0      1.3      1.3     14.7
## 1705      197       71        0 No Holiday      0.0      1.1      1.1     -3.1
## 2941      818       50       12 No Holiday      0.0      2.0      2.0      9.9
##      col 4081 col 4082 col 4083 col 4084 col 4085 col 4086 col 4087 col 4088
## 2151      2.5       17      0.0      348        0      5.7      5.7       17
## 7575     -0.2     1187      0.0     1841        0     16.5     16.5     1187
## 5295     18.3      110      0.5     1854        0     20.2     20.2      110
## 6873     14.7     2329      0.0     2000        0     20.9     20.9     2329
## 1705     -3.1      197      0.0      590        0      1.5      1.5      197
## 2941      9.9      818      0.0     1240        0     20.8     20.8      818
##      col 4089 col 4090 col 4091 col 4092 col 4093   col 4094 col 4095 col 4096
## 2151      0.0       80      5.7     0.13   Winter No Holiday       17      Yes
## 7575      0.0       32     16.5     2.43   Autumn No Holiday     1187      Yes
## 5295      0.5       89     20.2     0.27   Summer No Holiday      110      Yes
## 6873      0.0       68     20.9     0.18   Autumn No Holiday     2329      Yes
## 1705      0.0       71      1.5     0.00   Winter No Holiday      197      Yes
## 2941      0.0       50     20.8     1.82   Spring No Holiday      818      Yes
##      col 4097 col 4098 col 4099 col 4100 col 4101 col 4102 col 4103   col 4104
## 2151      348      348     0.13      5.7      3.7      3.7        0 28/02/2018
## 7575     1841     1841     2.43     16.5      1.4      1.4        0 12/10/2018
## 5295     1854     1854     0.27     20.2      1.0      1.0        0   9/7/2018
## 6873     2000     2000     0.18     20.9      1.3      1.3        0 13/09/2018
## 1705      590      590     0.00      1.5      1.1      1.1        0  10/2/2018
## 2941     1240     1240     1.82     20.8      2.0      2.0        0   2/4/2018
##      col 4105 col 4106 col 4107   col 4108 col 4109 col 4110 col 4111 col 4112
## 2151       80   Winter      5.7 28/02/2018      Yes        0      3.7      5.7
## 7575       32   Autumn     16.5 12/10/2018      Yes        0      1.4     16.5
## 5295       89   Summer     20.2   9/7/2018      Yes        0      1.0     20.2
## 6873       68   Autumn     20.9 13/09/2018      Yes        0      1.3     20.9
## 1705       71   Winter      1.5  10/2/2018      Yes        0      1.1      1.5
## 2941       50   Spring     20.8   2/4/2018      Yes        0      2.0     20.8
##      col 4113 col 4114 col 4115   col 4116 col 4117 col 4118   col 4119
## 2151        0      2.5      348 28/02/2018      348      3.7 28/02/2018
## 7575        0     -0.2     1841 12/10/2018     1841      1.4 12/10/2018
## 5295        0     18.3     1854   9/7/2018     1854      1.0   9/7/2018
## 6873        0     14.7     2000 13/09/2018     2000      1.3 13/09/2018
## 1705        0     -3.1      590  10/2/2018      590      1.1  10/2/2018
## 2941        0      9.9     1240   2/4/2018     1240      2.0   2/4/2018
##      col 4120 col 4121 col 4122 col 4123   col 4124 col 4125 col 4126 col 4127
## 2151      Yes      5.7      348      348 No Holiday       17      2.5       17
## 7575      Yes     16.5     1841     1841 No Holiday     1187     -0.2     1187
## 5295      Yes     20.2     1854     1854 No Holiday      110     18.3      110
## 6873      Yes     20.9     2000     2000 No Holiday     2329     14.7     2329
## 1705      Yes      1.5      590      590 No Holiday      197     -3.1      197
## 2941      Yes     20.8     1240     1240 No Holiday      818      9.9      818
##        col 4128 col 4129   col 4130 col 4131 col 4132 col 4133 col 4134
## 2151 28/02/2018       80 28/02/2018      5.7      3.7      2.5       80
## 7575 12/10/2018       32 12/10/2018     16.5      1.4     -0.2       32
## 5295   9/7/2018       89   9/7/2018     20.2      1.0     18.3       89
## 6873 13/09/2018       68 13/09/2018     20.9      1.3     14.7       68
## 1705  10/2/2018       71  10/2/2018      1.5      1.1     -3.1       71
## 2941   2/4/2018       50   2/4/2018     20.8      2.0      9.9       50
##      col 4135 col 4136 col 4137 col 4138 col 4139 col 4140 col 4141 col 4142
## 2151      5.7      2.5      348   Winter   Winter       17   Winter      2.5
## 7575     16.5     -0.2     1841   Autumn   Autumn     1187   Autumn     -0.2
## 5295     20.2     18.3     1854   Summer   Summer      110   Summer     18.3
## 6873     20.9     14.7     2000   Autumn   Autumn     2329   Autumn     14.7
## 1705      1.5     -3.1      590   Winter   Winter      197   Winter     -3.1
## 2941     20.8      9.9     1240   Spring   Spring      818   Spring      9.9
##      col 4143 col 4144   col 4145   col 4146 col 4147 col 4148 col 4149
## 2151       80      Yes No Holiday No Holiday      5.7       14       14
## 7575       32      Yes No Holiday No Holiday     16.5       14       14
## 5295       89      Yes No Holiday No Holiday     20.2       14       14
## 6873       68      Yes No Holiday No Holiday     20.9        8        8
## 1705       71      Yes No Holiday No Holiday      1.5        0        0
## 2941       50      Yes No Holiday No Holiday     20.8       12       12
##      col 4150 col 4151   col 4152 col 4153 col 4154 col 4155 col 4156 col 4157
## 2151       80   Winter 28/02/2018      5.7      0.0     0.13      3.7       17
## 7575       32   Autumn 12/10/2018     16.5      0.0     2.43      1.4     1187
## 5295       89   Summer   9/7/2018     20.2      0.5     0.27      1.0      110
## 6873       68   Autumn 13/09/2018     20.9      0.0     0.18      1.3     2329
## 1705       71   Winter  10/2/2018      1.5      0.0     0.00      1.1      197
## 2941       50   Spring   2/4/2018     20.8      0.0     1.82      2.0      818
##      col 4158 col 4159   col 4160 col 4161 col 4162   col 4163 col 4164
## 2151      3.7     0.13 28/02/2018       14       14 No Holiday        0
## 7575      1.4     2.43 12/10/2018       14       14 No Holiday        0
## 5295      1.0     0.27   9/7/2018       14       14 No Holiday        0
## 6873      1.3     0.18 13/09/2018        8        8 No Holiday        0
## 1705      1.1     0.00  10/2/2018        0        0 No Holiday        0
## 2941      2.0     1.82   2/4/2018       12       12 No Holiday        0
##      col 4165 col 4166   col 4167 col 4168 col 4169   col 4170 col 4171
## 2151       17      0.0 28/02/2018      Yes      0.0 28/02/2018      3.7
## 7575     1187      0.0 12/10/2018      Yes      0.0 12/10/2018      1.4
## 5295      110      0.5   9/7/2018      Yes      0.5   9/7/2018      1.0
## 6873     2329      0.0 13/09/2018      Yes      0.0 13/09/2018      1.3
## 1705      197      0.0  10/2/2018      Yes      0.0  10/2/2018      1.1
## 2941      818      0.0   2/4/2018      Yes      0.0   2/4/2018      2.0
##      col 4172 col 4173 col 4174 col 4175 col 4176   col 4177   col 4178
## 2151     0.13      5.7      0.0      Yes       14 No Holiday No Holiday
## 7575     2.43     16.5      0.0      Yes       14 No Holiday No Holiday
## 5295     0.27     20.2      0.5      Yes       14 No Holiday No Holiday
## 6873     0.18     20.9      0.0      Yes        8 No Holiday No Holiday
## 1705     0.00      1.5      0.0      Yes        0 No Holiday No Holiday
## 2941     1.82     20.8      0.0      Yes       12 No Holiday No Holiday
##      col 4179   col 4180 col 4181 col 4182 col 4183 col 4184 col 4185 col 4186
## 2151     0.13 28/02/2018       17      Yes   Winter     0.13      3.7     0.13
## 7575     2.43 12/10/2018     1187      Yes   Autumn     2.43      1.4     2.43
## 5295     0.27   9/7/2018      110      Yes   Summer     0.27      1.0     0.27
## 6873     0.18 13/09/2018     2329      Yes   Autumn     0.18      1.3     0.18
## 1705     0.00  10/2/2018      197      Yes   Winter     0.00      1.1     0.00
## 2941     1.82   2/4/2018      818      Yes   Spring     1.82      2.0     1.82
##      col 4187 col 4188 col 4189 col 4190 col 4191 col 4192 col 4193 col 4194
## 2151      5.7      348      348      3.7      2.5       17      2.5        0
## 7575     16.5     1841     1841      1.4     -0.2     1187     -0.2        0
## 5295     20.2     1854     1854      1.0     18.3      110     18.3        0
## 6873     20.9     2000     2000      1.3     14.7     2329     14.7        0
## 1705      1.5      590      590      1.1     -3.1      197     -3.1        0
## 2941     20.8     1240     1240      2.0      9.9      818      9.9        0
##      col 4195 col 4196 col 4197   col 4198 col 4199 col 4200 col 4201 col 4202
## 2151       17      0.0      348 No Holiday      5.7       17      5.7        0
## 7575     1187      0.0     1841 No Holiday     16.5     1187     16.5        0
## 5295      110      0.5     1854 No Holiday     20.2      110     20.2        0
## 6873     2329      0.0     2000 No Holiday     20.9     2329     20.9        0
## 1705      197      0.0      590 No Holiday      1.5      197      1.5        0
## 2941      818      0.0     1240 No Holiday     20.8      818     20.8        0
##      col 4203 col 4204 col 4205 col 4206 col 4207 col 4208 col 4209 col 4210
## 2151      3.7       17     0.13      2.5      348      2.5       80      5.7
## 7575      1.4     1187     2.43     -0.2     1841     -0.2       32     16.5
## 5295      1.0      110     0.27     18.3     1854     18.3       89     20.2
## 6873      1.3     2329     0.18     14.7     2000     14.7       68     20.9
## 1705      1.1      197     0.00     -3.1      590     -3.1       71      1.5
## 2941      2.0      818     1.82      9.9     1240      9.9       50     20.8
##      col 4211   col 4212 col 4213 col 4214 col 4215 col 4216 col 4217 col 4218
## 2151        0 28/02/2018       17      2.5      5.7      Yes       80      5.7
## 7575        0 12/10/2018     1187     -0.2     16.5      Yes       32     16.5
## 5295        0   9/7/2018      110     18.3     20.2      Yes       89     20.2
## 6873        0 13/09/2018     2329     14.7     20.9      Yes       68     20.9
## 1705        0  10/2/2018      197     -3.1      1.5      Yes       71      1.5
## 2941        0   2/4/2018      818      9.9     20.8      Yes       50     20.8
##      col 4219 col 4220 col 4221 col 4222   col 4223 col 4224 col 4225 col 4226
## 2151       80       17      Yes   Winter No Holiday     0.13        0      5.7
## 7575       32     1187      Yes   Autumn No Holiday     2.43        0     16.5
## 5295       89      110      Yes   Summer No Holiday     0.27        0     20.2
## 6873       68     2329      Yes   Autumn No Holiday     0.18        0     20.9
## 1705       71      197      Yes   Winter No Holiday     0.00        0      1.5
## 2941       50      818      Yes   Spring No Holiday     1.82        0     20.8
##        col 4227 col 4228   col 4229 col 4230 col 4231 col 4232 col 4233
## 2151 No Holiday     0.13 28/02/2018       14       17      348   Winter
## 7575 No Holiday     2.43 12/10/2018       14     1187     1841   Autumn
## 5295 No Holiday     0.27   9/7/2018       14      110     1854   Summer
## 6873 No Holiday     0.18 13/09/2018        8     2329     2000   Autumn
## 1705 No Holiday     0.00  10/2/2018        0      197      590   Winter
## 2941 No Holiday     1.82   2/4/2018       12      818     1240   Spring
##      col 4234 col 4235 col 4236 col 4237 col 4238 col 4239 col 4240 col 4241
## 2151        0      2.5       14        0      0.0      5.7     0.13       80
## 7575        0     -0.2       14        0      0.0     16.5     2.43       32
## 5295        0     18.3       14        0      0.5     20.2     0.27       89
## 6873        0     14.7        8        0      0.0     20.9     0.18       68
## 1705        0     -3.1        0        0      0.0      1.5     0.00       71
## 2941        0      9.9       12        0      0.0     20.8     1.82       50
##      col 4242 col 4243 col 4244 col 4245 col 4246 col 4247 col 4248 col 4249
## 2151     0.13      3.7       14        0      2.5      2.5      5.7     0.13
## 7575     2.43      1.4       14        0     -0.2     -0.2     16.5     2.43
## 5295     0.27      1.0       14        0     18.3     18.3     20.2     0.27
## 6873     0.18      1.3        8        0     14.7     14.7     20.9     0.18
## 1705     0.00      1.1        0        0     -3.1     -3.1      1.5     0.00
## 2941     1.82      2.0       12        0      9.9      9.9     20.8     1.82
##      col 4250 col 4251 col 4252 col 4253   col 4254 col 4255 col 4256
## 2151   Winter      3.7     0.13      348 28/02/2018       14       17
## 7575   Autumn      1.4     2.43     1841 12/10/2018       14     1187
## 5295   Summer      1.0     0.27     1854   9/7/2018       14      110
## 6873   Autumn      1.3     0.18     2000 13/09/2018        8     2329
## 1705   Winter      1.1     0.00      590  10/2/2018        0      197
## 2941   Spring      2.0     1.82     1240   2/4/2018       12      818
##        col 4257 col 4258 col 4259   col 4260 col 4261 col 4262 col 4263
## 2151 28/02/2018       80      0.0 28/02/2018     0.13      3.7        0
## 7575 12/10/2018       32      0.0 12/10/2018     2.43      1.4        0
## 5295   9/7/2018       89      0.5   9/7/2018     0.27      1.0        0
## 6873 13/09/2018       68      0.0 13/09/2018     0.18      1.3        0
## 1705  10/2/2018       71      0.0  10/2/2018     0.00      1.1        0
## 2941   2/4/2018       50      0.0   2/4/2018     1.82      2.0        0
##      col 4264 col 4265   col 4266 col 4267   col 4268 col 4269 col 4270
## 2151       17      2.5 28/02/2018      2.5 No Holiday      0.0      Yes
## 7575     1187     -0.2 12/10/2018     -0.2 No Holiday      0.0      Yes
## 5295      110     18.3   9/7/2018     18.3 No Holiday      0.5      Yes
## 6873     2329     14.7 13/09/2018     14.7 No Holiday      0.0      Yes
## 1705      197     -3.1  10/2/2018     -3.1 No Holiday      0.0      Yes
## 2941      818      9.9   2/4/2018      9.9 No Holiday      0.0      Yes
##      col 4271 col 4272 col 4273   col 4274 col 4275 col 4276 col 4277 col 4278
## 2151        0       17      3.7 28/02/2018       14       80      2.5       80
## 7575        0     1187      1.4 12/10/2018       14       32     -0.2       32
## 5295        0      110      1.0   9/7/2018       14       89     18.3       89
## 6873        0     2329      1.3 13/09/2018        8       68     14.7       68
## 1705        0      197      1.1  10/2/2018        0       71     -3.1       71
## 2941        0      818      2.0   2/4/2018       12       50      9.9       50
##      col 4279   col 4280 col 4281 col 4282 col 4283   col 4284 col 4285
## 2151      0.0 28/02/2018     0.13      Yes      Yes 28/02/2018       80
## 7575      0.0 12/10/2018     2.43      Yes      Yes 12/10/2018       32
## 5295      0.5   9/7/2018     0.27      Yes      Yes   9/7/2018       89
## 6873      0.0 13/09/2018     0.18      Yes      Yes 13/09/2018       68
## 1705      0.0  10/2/2018     0.00      Yes      Yes  10/2/2018       71
## 2941      0.0   2/4/2018     1.82      Yes      Yes   2/4/2018       50
##      col 4286   col 4287 col 4288 col 4289 col 4290 col 4291 col 4292 col 4293
## 2151   Winter No Holiday      348   Winter       80      3.7      2.5       17
## 7575   Autumn No Holiday     1841   Autumn       32      1.4     -0.2     1187
## 5295   Summer No Holiday     1854   Summer       89      1.0     18.3      110
## 6873   Autumn No Holiday     2000   Autumn       68      1.3     14.7     2329
## 1705   Winter No Holiday      590   Winter       71      1.1     -3.1      197
## 2941   Spring No Holiday     1240   Spring       50      2.0      9.9      818
##      col 4294   col 4295   col 4296 col 4297 col 4298 col 4299 col 4300
## 2151       17 No Holiday 28/02/2018   Winter      3.7      0.0       17
## 7575     1187 No Holiday 12/10/2018   Autumn      1.4      0.0     1187
## 5295      110 No Holiday   9/7/2018   Summer      1.0      0.5      110
## 6873     2329 No Holiday 13/09/2018   Autumn      1.3      0.0     2329
## 1705      197 No Holiday  10/2/2018   Winter      1.1      0.0      197
## 2941      818 No Holiday   2/4/2018   Spring      2.0      0.0      818
##      col 4301 col 4302   col 4303 col 4304   col 4305 col 4306   col 4307
## 2151       14      Yes 28/02/2018        0 28/02/2018      3.7 No Holiday
## 7575       14      Yes 12/10/2018        0 12/10/2018      1.4 No Holiday
## 5295       14      Yes   9/7/2018        0   9/7/2018      1.0 No Holiday
## 6873        8      Yes 13/09/2018        0 13/09/2018      1.3 No Holiday
## 1705        0      Yes  10/2/2018        0  10/2/2018      1.1 No Holiday
## 2941       12      Yes   2/4/2018        0   2/4/2018      2.0 No Holiday
##        col 4308 col 4309 col 4310   col 4311 col 4312 col 4313 col 4314
## 2151 No Holiday      0.0      3.7 28/02/2018   Winter      0.0       17
## 7575 No Holiday      0.0      1.4 12/10/2018   Autumn      0.0     1187
## 5295 No Holiday      0.5      1.0   9/7/2018   Summer      0.5      110
## 6873 No Holiday      0.0      1.3 13/09/2018   Autumn      0.0     2329
## 1705 No Holiday      0.0      1.1  10/2/2018   Winter      0.0      197
## 2941 No Holiday      0.0      2.0   2/4/2018   Spring      0.0      818
##      col 4315 col 4316   col 4317 col 4318 col 4319 col 4320 col 4321 col 4322
## 2151      5.7        0 No Holiday      5.7      3.7      3.7       80        0
## 7575     16.5        0 No Holiday     16.5      1.4      1.4       32        0
## 5295     20.2        0 No Holiday     20.2      1.0      1.0       89        0
## 6873     20.9        0 No Holiday     20.9      1.3      1.3       68        0
## 1705      1.5        0 No Holiday      1.5      1.1      1.1       71        0
## 2941     20.8        0 No Holiday     20.8      2.0      2.0       50        0
##        col 4323 col 4324 col 4325 col 4326   col 4327 col 4328 col 4329
## 2151 No Holiday      3.7      3.7     0.13 28/02/2018        0      Yes
## 7575 No Holiday      1.4      1.4     2.43 12/10/2018        0      Yes
## 5295 No Holiday      1.0      1.0     0.27   9/7/2018        0      Yes
## 6873 No Holiday      1.3      1.3     0.18 13/09/2018        0      Yes
## 1705 No Holiday      1.1      1.1     0.00  10/2/2018        0      Yes
## 2941 No Holiday      2.0      2.0     1.82   2/4/2018        0      Yes
##      col 4330 col 4331 col 4332 col 4333   col 4334 col 4335 col 4336 col 4337
## 2151      348      0.0      348      5.7 No Holiday        0      Yes      5.7
## 7575     1841      0.0     1841     16.5 No Holiday        0      Yes     16.5
## 5295     1854      0.5     1854     20.2 No Holiday        0      Yes     20.2
## 6873     2000      0.0     2000     20.9 No Holiday        0      Yes     20.9
## 1705      590      0.0      590      1.5 No Holiday        0      Yes      1.5
## 2941     1240      0.0     1240     20.8 No Holiday        0      Yes     20.8
##      col 4338   col 4339 col 4340 col 4341 col 4342 col 4343   col 4344
## 2151      Yes No Holiday       17      Yes       80      348 28/02/2018
## 7575      Yes No Holiday     1187      Yes       32     1841 12/10/2018
## 5295      Yes No Holiday      110      Yes       89     1854   9/7/2018
## 6873      Yes No Holiday     2329      Yes       68     2000 13/09/2018
## 1705      Yes No Holiday      197      Yes       71      590  10/2/2018
## 2941      Yes No Holiday      818      Yes       50     1240   2/4/2018
##      col 4345 col 4346 col 4347   col 4348 col 4349 col 4350 col 4351 col 4352
## 2151       80       17        0 No Holiday      0.0        0       80   Winter
## 7575       32     1187        0 No Holiday      0.0        0       32   Autumn
## 5295       89      110        0 No Holiday      0.5        0       89   Summer
## 6873       68     2329        0 No Holiday      0.0        0       68   Autumn
## 1705       71      197        0 No Holiday      0.0        0       71   Winter
## 2941       50      818        0 No Holiday      0.0        0       50   Spring
##      col 4353   col 4354 col 4355 col 4356 col 4357 col 4358   col 4359
## 2151     0.13 28/02/2018      5.7      3.7      Yes       17 No Holiday
## 7575     2.43 12/10/2018     16.5      1.4      Yes     1187 No Holiday
## 5295     0.27   9/7/2018     20.2      1.0      Yes      110 No Holiday
## 6873     0.18 13/09/2018     20.9      1.3      Yes     2329 No Holiday
## 1705     0.00  10/2/2018      1.5      1.1      Yes      197 No Holiday
## 2941     1.82   2/4/2018     20.8      2.0      Yes      818 No Holiday
##      col 4360 col 4361 col 4362 col 4363 col 4364 col 4365 col 4366 col 4367
## 2151   Winter        0       80      2.5     0.13      0.0   Winter      5.7
## 7575   Autumn        0       32     -0.2     2.43      0.0   Autumn     16.5
## 5295   Summer        0       89     18.3     0.27      0.5   Summer     20.2
## 6873   Autumn        0       68     14.7     0.18      0.0   Autumn     20.9
## 1705   Winter        0       71     -3.1     0.00      0.0   Winter      1.5
## 2941   Spring        0       50      9.9     1.82      0.0   Spring     20.8
##      col 4368 col 4369 col 4370   col 4371 col 4372 col 4373 col 4374 col 4375
## 2151      2.5   Winter   Winter 28/02/2018       17     0.13      3.7      3.7
## 7575     -0.2   Autumn   Autumn 12/10/2018     1187     2.43      1.4      1.4
## 5295     18.3   Summer   Summer   9/7/2018      110     0.27      1.0      1.0
## 6873     14.7   Autumn   Autumn 13/09/2018     2329     0.18      1.3      1.3
## 1705     -3.1   Winter   Winter  10/2/2018      197     0.00      1.1      1.1
## 2941      9.9   Spring   Spring   2/4/2018      818     1.82      2.0      2.0
##      col 4376 col 4377 col 4378 col 4379 col 4380
## 2151   Winter      2.5       14     0.13      2.5
## 7575   Autumn     -0.2       14     2.43     -0.2
## 5295   Summer     18.3       14     0.27     18.3
## 6873   Autumn     14.7        8     0.18     14.7
## 1705   Winter     -3.1        0     0.00     -3.1
## 2941   Spring      9.9       12     1.82      9.9

Subsample 1:**

This subsample includes various bike rental records with details such as the date, rented bike count, hour, temperature, humidity, wind speed, visibility, dew point temperature, solar radiation, rainfall, snowfall, seasons, holiday, and functioning day.

Notable aspects: This subsample contains diverse bike rental data with information across multiple columns, allowing for analysis of bike rentals under different conditions.

Subsample 2:**

Bike rental records in this subsample include a mix of dates, rented bike counts, hours, and weather-related variables similar to subsample 1.

Notable aspects: Like subsample 1, this subsample includes various bike rental records with information across different columns.

Subsample 3:**

This subsample consists of bike rental records with varying dates and rental counts, similar to subsample 1.

Notable aspects: It includes bike rental records under different weather conditions and dates, similar to subsample 1.

Subsample 4:**

Bike rental records in this subsample include different dates and rental counts, similar to subsample 1.

Notable aspects: It includes bike rental records under various conditions, allowing for analysis of rental patterns.

Subsample 5:**

This subsample includes bike rental records with details similar to subsample 1, with variations in dates and rental counts.

Notable aspects: It includes bike rental records under different conditions and dates, similar to subsample 1.

These descriptions highlight that the subsamples contain bike rental data under various conditions, including different dates, times, and weather-related variables, allowing for a comprehensive analysis of bike rental patterns and factors affecting them.