For this assignment I plan on trying to find a real data set and not one generated by an LLM. I would rather work with real data if possible because I feel like it is more reliable than an LLM and requires less effort to ensure its quality. I think finding time series data of stock or crypto is very abundant and will be easy to find. I may try to find something else more unique that I care about more but I am willing to do stocks if that is the best option. I also plan to use dplyr because I want to practice more in that library if time permits I will also try SQL so that I can get practice in both.
I do not believe this assignment will be too challenging but the toughest thing I may see that could cause a challenge is properly representing the data. Making sense of the averages and knowing my data set well enough to make proper claims and conclusions. Avoiding this challenge would mean I need to take my time to full understand the data and know the types of calculations I will preform and know what they mean.
library(dplyr)
## Warning: package 'dplyr' was built under R version 4.4.3
##
## 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)
## Warning: package 'ggplot2' was built under R version 4.4.3
data <- read.csv("C:/Users/typem/Documents/GitHub/DATA607_Assignment3B/Energy_Consuption_by_sector.csv")
#read and filter the data excluding years befor 2000.
homes2K <- data %>% filter(YYYYMM >= 200000, substr(as.character(YYYYMM), 5, 6) != "13", Description %in% c("Total Energy Consumed by the Commercial Sector", "Total Energy Consumed by the Residential Sector", "Total Energy Consumed by the Industrial Sector"))
homes2K
## MSN YYYYMM Value Column_Order
## 1 TERCBUS 200001 2307.212 5
## 2 TERCBUS 200002 2008.200 5
## 3 TERCBUS 200003 1655.684 5
## 4 TERCBUS 200004 1368.038 5
## 5 TERCBUS 200005 1307.360 5
## 6 TERCBUS 200006 1395.023 5
## 7 TERCBUS 200007 1538.590 5
## 8 TERCBUS 200008 1594.348 5
## 9 TERCBUS 200009 1346.983 5
## 10 TERCBUS 200010 1276.087 5
## 11 TERCBUS 200011 1557.121 5
## 12 TERCBUS 200012 2376.015 5
## 13 TERCBUS 200101 2550.652 5
## 14 TERCBUS 200102 1998.068 5
## 15 TERCBUS 200103 1886.343 5
## 16 TERCBUS 200104 1419.044 5
## 17 TERCBUS 200105 1226.644 5
## 18 TERCBUS 200106 1339.932 5
## 19 TERCBUS 200107 1565.860 5
## 20 TERCBUS 200108 1630.050 5
## 21 TERCBUS 200109 1305.218 5
## 22 TERCBUS 200110 1283.681 5
## 23 TERCBUS 200111 1381.590 5
## 24 TERCBUS 200112 1871.839 5
## 25 TERCBUS 200201 2257.729 5
## 26 TERCBUS 200202 1881.958 5
## 27 TERCBUS 200203 1866.310 5
## 28 TERCBUS 200204 1449.053 5
## 29 TERCBUS 200205 1312.878 5
## 30 TERCBUS 200206 1421.236 5
## 31 TERCBUS 200207 1669.514 5
## 32 TERCBUS 200208 1645.509 5
## 33 TERCBUS 200209 1416.054 5
## 34 TERCBUS 200210 1374.754 5
## 35 TERCBUS 200211 1609.551 5
## 36 TERCBUS 200212 2178.225 5
## 37 TERCBUS 200301 2539.074 5
## 38 TERCBUS 200302 2225.165 5
## 39 TERCBUS 200303 1907.592 5
## 40 TERCBUS 200304 1432.416 5
## 41 TERCBUS 200305 1310.895 5
## 42 TERCBUS 200306 1341.492 5
## 43 TERCBUS 200307 1618.748 5
## 44 TERCBUS 200308 1644.141 5
## 45 TERCBUS 200309 1388.515 5
## 46 TERCBUS 200310 1314.001 5
## 47 TERCBUS 200311 1503.062 5
## 48 TERCBUS 200312 2164.804 5
## 49 TERCBUS 200401 2564.677 5
## 50 TERCBUS 200402 2232.955 5
## 51 TERCBUS 200403 1792.639 5
## 52 TERCBUS 200404 1406.319 5
## 53 TERCBUS 200405 1323.620 5
## 54 TERCBUS 200406 1431.250 5
## 55 TERCBUS 200407 1609.334 5
## 56 TERCBUS 200408 1565.648 5
## 57 TERCBUS 200409 1390.887 5
## 58 TERCBUS 200410 1336.172 5
## 59 TERCBUS 200411 1524.794 5
## 60 TERCBUS 200412 2194.855 5
## 61 TERCBUS 200501 2449.860 5
## 62 TERCBUS 200502 2033.718 5
## 63 TERCBUS 200503 1952.923 5
## 64 TERCBUS 200504 1408.730 5
## 65 TERCBUS 200505 1313.642 5
## 66 TERCBUS 200506 1502.207 5
## 67 TERCBUS 200507 1768.877 5
## 68 TERCBUS 200508 1775.609 5
## 69 TERCBUS 200509 1500.857 5
## 70 TERCBUS 200510 1380.304 5
## 71 TERCBUS 200511 1512.658 5
## 72 TERCBUS 200512 2285.935 5
## 73 TERCBUS 200601 2114.754 5
## 74 TERCBUS 200602 1957.013 5
## 75 TERCBUS 200603 1873.466 5
## 76 TERCBUS 200604 1387.388 5
## 77 TERCBUS 200605 1302.075 5
## 78 TERCBUS 200606 1469.094 5
## 79 TERCBUS 200607 1761.962 5
## 80 TERCBUS 200608 1756.191 5
## 81 TERCBUS 200609 1365.582 5
## 82 TERCBUS 200610 1353.450 5
## 83 TERCBUS 200611 1538.938 5
## 84 TERCBUS 200612 2008.034 5
## 85 TERCBUS 200701 2321.201 5
## 86 TERCBUS 200702 2330.804 5
## 87 TERCBUS 200703 1867.852 5
## 88 TERCBUS 200704 1454.471 5
## 89 TERCBUS 200705 1315.043 5
## 90 TERCBUS 200706 1455.316 5
## 91 TERCBUS 200707 1660.407 5
## 92 TERCBUS 200708 1800.535 5
## 93 TERCBUS 200709 1498.398 5
## 94 TERCBUS 200710 1347.181 5
## 95 TERCBUS 200711 1563.161 5
## 96 TERCBUS 200712 2203.267 5
## 97 TERCBUS 200801 2505.242 5
## 98 TERCBUS 200802 2225.238 5
## 99 TERCBUS 200803 1940.269 5
## 100 TERCBUS 200804 1461.115 5
## 101 TERCBUS 200805 1302.644 5
## 102 TERCBUS 200806 1511.844 5
## 103 TERCBUS 200807 1704.049 5
## 104 TERCBUS 200808 1637.259 5
## 105 TERCBUS 200809 1378.478 5
## 106 TERCBUS 200810 1325.418 5
## 107 TERCBUS 200811 1595.843 5
## 108 TERCBUS 200812 2311.479 5
## 109 TERCBUS 200901 2570.763 5
## 110 TERCBUS 200902 2062.147 5
## 111 TERCBUS 200903 1840.111 5
## 112 TERCBUS 200904 1429.307 5
## 113 TERCBUS 200905 1273.888 5
## 114 TERCBUS 200906 1417.254 5
## 115 TERCBUS 200907 1605.567 5
## 116 TERCBUS 200908 1618.076 5
## 117 TERCBUS 200909 1341.279 5
## 118 TERCBUS 200910 1344.157 5
## 119 TERCBUS 200911 1453.218 5
## 120 TERCBUS 200912 2260.964 5
## 121 TERCBUS 201001 2636.069 5
## 122 TERCBUS 201002 2207.698 5
## 123 TERCBUS 201003 1826.536 5
## 124 TERCBUS 201004 1287.226 5
## 125 TERCBUS 201005 1303.082 5
## 126 TERCBUS 201006 1545.824 5
## 127 TERCBUS 201007 1782.237 5
## 128 TERCBUS 201008 1760.129 5
## 129 TERCBUS 201009 1413.878 5
## 130 TERCBUS 201010 1266.847 5
## 131 TERCBUS 201011 1546.081 5
## 132 TERCBUS 201012 2418.621 5
## 133 TERCBUS 201101 2603.851 5
## 134 TERCBUS 201102 2088.537 5
## 135 TERCBUS 201103 1770.608 5
## 136 TERCBUS 201104 1356.728 5
## 137 TERCBUS 201105 1267.351 5
## 138 TERCBUS 201106 1478.833 5
## 139 TERCBUS 201107 1782.574 5
## 140 TERCBUS 201108 1734.653 5
## 141 TERCBUS 201109 1383.938 5
## 142 TERCBUS 201110 1270.136 5
## 143 TERCBUS 201111 1508.995 5
## 144 TERCBUS 201112 2049.266 5
## 145 TERCBUS 201201 2194.386 5
## 146 TERCBUS 201202 1847.786 5
## 147 TERCBUS 201203 1466.215 5
## 148 TERCBUS 201204 1209.000 5
## 149 TERCBUS 201205 1250.238 5
## 150 TERCBUS 201206 1414.631 5
## 151 TERCBUS 201207 1740.775 5
## 152 TERCBUS 201208 1639.400 5
## 153 TERCBUS 201209 1330.800 5
## 154 TERCBUS 201210 1266.185 5
## 155 TERCBUS 201211 1565.717 5
## 156 TERCBUS 201212 1959.804 5
## 157 TERCBUS 201301 2351.341 5
## 158 TERCBUS 201302 2001.501 5
## 159 TERCBUS 201303 1925.297 5
## 160 TERCBUS 201304 1393.334 5
## 161 TERCBUS 201305 1217.018 5
## 162 TERCBUS 201306 1370.082 5
## 163 TERCBUS 201307 1606.835 5
## 164 TERCBUS 201308 1552.935 5
## 165 TERCBUS 201309 1362.417 5
## 166 TERCBUS 201310 1269.170 5
## 167 TERCBUS 201311 1628.882 5
## 168 TERCBUS 201312 2311.523 5
## 169 TERCBUS 201401 2698.192 5
## 170 TERCBUS 201402 2265.150 5
## 171 TERCBUS 201403 1981.571 5
## 172 TERCBUS 201404 1326.373 5
## 173 TERCBUS 201405 1246.412 5
## 174 TERCBUS 201406 1376.255 5
## 175 TERCBUS 201407 1548.910 5
## 176 TERCBUS 201408 1535.392 5
## 177 TERCBUS 201409 1356.758 5
## 178 TERCBUS 201410 1259.078 5
## 179 TERCBUS 201411 1686.446 5
## 180 TERCBUS 201412 2069.130 5
## 181 TERCBUS 201501 2476.103 5
## 182 TERCBUS 201502 2280.281 5
## 183 TERCBUS 201503 1872.599 5
## 184 TERCBUS 201504 1256.086 5
## 185 TERCBUS 201505 1206.427 5
## 186 TERCBUS 201506 1380.458 5
## 187 TERCBUS 201507 1616.773 5
## 188 TERCBUS 201508 1576.894 5
## 189 TERCBUS 201509 1356.457 5
## 190 TERCBUS 201510 1252.874 5
## 191 TERCBUS 201511 1439.574 5
## 192 TERCBUS 201512 1817.950 5
## 193 TERCBUS 201601 2310.576 5
## 194 TERCBUS 201602 1891.452 5
## 195 TERCBUS 201603 1476.593 5
## 196 TERCBUS 201604 1240.294 5
## 197 TERCBUS 201605 1177.816 5
## 198 TERCBUS 201606 1407.515 5
## 199 TERCBUS 201607 1682.165 5
## 200 TERCBUS 201608 1652.674 5
## 201 TERCBUS 201609 1369.003 5
## 202 TERCBUS 201610 1221.008 5
## 203 TERCBUS 201611 1366.785 5
## 204 TERCBUS 201612 2153.582 5
## 205 TERCBUS 201701 2221.188 5
## 206 TERCBUS 201702 1620.437 5
## 207 TERCBUS 201703 1659.873 5
## 208 TERCBUS 201704 1185.143 5
## 209 TERCBUS 201705 1186.789 5
## 210 TERCBUS 201706 1330.092 5
## 211 TERCBUS 201707 1595.615 5
## 212 TERCBUS 201708 1492.618 5
## 213 TERCBUS 201709 1262.630 5
## 214 TERCBUS 201710 1233.935 5
## 215 TERCBUS 201711 1519.045 5
## 216 TERCBUS 201712 2181.715 5
## 217 TERCBUS 201801 2597.400 5
## 218 TERCBUS 201802 1855.963 5
## 219 TERCBUS 201803 1786.551 5
## 220 TERCBUS 201804 1420.593 5
## 221 TERCBUS 201805 1227.639 5
## 222 TERCBUS 201806 1393.694 5
## 223 TERCBUS 201807 1628.017 5
## 224 TERCBUS 201808 1578.818 5
## 225 TERCBUS 201809 1351.890 5
## 226 TERCBUS 201810 1329.838 5
## 227 TERCBUS 201811 1747.051 5
## 228 TERCBUS 201812 2119.106 5
## 229 TERCBUS 201901 2411.364 5
## 230 TERCBUS 201902 2040.922 5
## 231 TERCBUS 201903 1872.632 5
## 232 TERCBUS 201904 1234.841 5
## 233 TERCBUS 201905 1222.468 5
## 234 TERCBUS 201906 1300.528 5
## 235 TERCBUS 201907 1595.962 5
## 236 TERCBUS 201908 1552.367 5
## 237 TERCBUS 201909 1347.715 5
## 238 TERCBUS 201910 1263.873 5
## 239 TERCBUS 201911 1702.397 5
## 240 TERCBUS 201912 2044.803 5
## 241 TERCBUS 202001 2098.259 5
## 242 TERCBUS 202002 1864.517 5
## 243 TERCBUS 202003 1552.644 5
## 244 TERCBUS 202004 1313.214 5
## 245 TERCBUS 202005 1261.675 5
## 246 TERCBUS 202006 1367.224 5
## 247 TERCBUS 202007 1672.623 5
## 248 TERCBUS 202008 1596.718 5
## 249 TERCBUS 202009 1290.541 5
## 250 TERCBUS 202010 1244.586 5
## 251 TERCBUS 202011 1429.908 5
## 252 TERCBUS 202012 2120.375 5
## 253 TERCBUS 202101 2292.658 5
## 254 TERCBUS 202102 2204.410 5
## 255 TERCBUS 202103 1677.575 5
## 256 TERCBUS 202104 1248.541 5
## 257 TERCBUS 202105 1199.197 5
## 258 TERCBUS 202106 1398.080 5
## 259 TERCBUS 202107 1576.782 5
## 260 TERCBUS 202108 1586.591 5
## 261 TERCBUS 202109 1303.218 5
## 262 TERCBUS 202110 1178.800 5
## 263 TERCBUS 202111 1497.959 5
## 264 TERCBUS 202112 1856.080 5
## 265 TERCBUS 202201 2427.453 5
## 266 TERCBUS 202202 2046.287 5
## 267 TERCBUS 202203 1669.718 5
## 268 TERCBUS 202204 1303.077 5
## 269 TERCBUS 202205 1252.911 5
## 270 TERCBUS 202206 1400.225 5
## 271 TERCBUS 202207 1649.056 5
## 272 TERCBUS 202208 1569.930 5
## 273 TERCBUS 202209 1279.309 5
## 274 TERCBUS 202210 1199.801 5
## 275 TERCBUS 202211 1554.460 5
## 276 TERCBUS 202212 2191.933 5
## 277 TERCBUS 202301 2115.859 5
## 278 TERCBUS 202302 1791.681 5
## 279 TERCBUS 202303 1722.190 5
## 280 TERCBUS 202304 1242.665 5
## 281 TERCBUS 202305 1145.485 5
## 282 TERCBUS 202306 1268.109 5
## 283 TERCBUS 202307 1601.031 5
## 284 TERCBUS 202308 1578.968 5
## 285 TERCBUS 202309 1297.031 5
## 286 TERCBUS 202310 1199.089 5
## 287 TERCBUS 202311 1511.005 5
## 288 TERCBUS 202312 1863.001 5
## 289 TERCBUS 202401 2398.662 5
## 290 TERCBUS 202402 1766.075 5
## 291 TERCBUS 202403 1501.261 5
## 292 TERCBUS 202404 1200.064 5
## 293 TERCBUS 202405 1179.099 5
## 294 TERCBUS 202406 1388.526 5
## 295 TERCBUS 202407 1601.415 5
## 296 TERCBUS 202408 1538.445 5
## 297 TERCBUS 202409 1246.772 5
## 298 TERCBUS 202410 1169.264 5
## 299 TERCBUS 202411 1382.160 5
## 300 TERCBUS 202412 2023.843 5
## 301 TERCBUS 202501 2601.425 5
## 302 TERCBUS 202502 2046.815 5
## 303 TERCBUS 202503 1572.749 5
## 304 TERCBUS 202504 1235.167 5
## 305 TERCBUS 202505 1165.049 5
## 306 TERCBUS 202506 1375.832 5
## 307 TERCBUS 202507 1644.979 5
## 308 TERCBUS 202508 1494.058 5
## 309 TERCBUS 202509 1264.215 5
## 310 TERCBUS 202510 1205.812 5
## 311 TECCBUS 200001 1566.582 10
## 312 TECCBUS 200002 1437.921 10
## 313 TECCBUS 200003 1399.892 10
## 314 TECCBUS 200004 1245.918 10
## 315 TECCBUS 200005 1324.867 10
## 316 TECCBUS 200006 1324.163 10
## 317 TECCBUS 200007 1367.367 10
## 318 TECCBUS 200008 1438.284 10
## 319 TECCBUS 200009 1247.627 10
## 320 TECCBUS 200010 1235.107 10
## 321 TECCBUS 200011 1331.622 10
## 322 TECCBUS 200012 1585.175 10
## 323 TECCBUS 200101 1648.321 10
## 324 TECCBUS 200102 1419.687 10
## 325 TECCBUS 200103 1456.050 10
## 326 TECCBUS 200104 1261.880 10
## 327 TECCBUS 200105 1273.185 10
## 328 TECCBUS 200106 1330.962 10
## 329 TECCBUS 200107 1417.055 10
## 330 TECCBUS 200108 1446.970 10
## 331 TECCBUS 200109 1273.920 10
## 332 TECCBUS 200110 1294.123 10
## 333 TECCBUS 200111 1279.308 10
## 334 TECCBUS 200112 1471.422 10
## 335 TECCBUS 200201 1527.199 10
## 336 TECCBUS 200202 1377.587 10
## 337 TECCBUS 200203 1425.160 10
## 338 TECCBUS 200204 1287.375 10
## 339 TECCBUS 200205 1282.895 10
## 340 TECCBUS 200206 1322.949 10
## 341 TECCBUS 200207 1429.006 10
## 342 TECCBUS 200208 1408.801 10
## 343 TECCBUS 200209 1315.518 10
## 344 TECCBUS 200210 1349.700 10
## 345 TECCBUS 200211 1379.614 10
## 346 TECCBUS 200212 1567.601 10
## 347 TECCBUS 200301 1690.822 10
## 348 TECCBUS 200302 1503.777 10
## 349 TECCBUS 200303 1441.421 10
## 350 TECCBUS 200304 1261.226 10
## 351 TECCBUS 200305 1257.814 10
## 352 TECCBUS 200306 1275.340 10
## 353 TECCBUS 200307 1410.279 10
## 354 TECCBUS 200308 1416.672 10
## 355 TECCBUS 200309 1261.873 10
## 356 TECCBUS 200310 1288.072 10
## 357 TECCBUS 200311 1321.092 10
## 358 TECCBUS 200312 1532.798 10
## 359 TECCBUS 200401 1676.066 10
## 360 TECCBUS 200402 1543.206 10
## 361 TECCBUS 200403 1421.743 10
## 362 TECCBUS 200404 1283.542 10
## 363 TECCBUS 200405 1332.122 10
## 364 TECCBUS 200406 1324.840 10
## 365 TECCBUS 200407 1415.006 10
## 366 TECCBUS 200408 1393.233 10
## 367 TECCBUS 200409 1313.639 10
## 368 TECCBUS 200410 1312.010 10
## 369 TECCBUS 200411 1348.352 10
## 370 TECCBUS 200412 1616.800 10
## 371 TECCBUS 200501 1636.020 10
## 372 TECCBUS 200502 1442.220 10
## 373 TECCBUS 200503 1486.593 10
## 374 TECCBUS 200504 1266.299 10
## 375 TECCBUS 200505 1298.253 10
## 376 TECCBUS 200506 1401.062 10
## 377 TECCBUS 200507 1480.338 10
## 378 TECCBUS 200508 1496.555 10
## 379 TECCBUS 200509 1352.331 10
## 380 TECCBUS 200510 1322.548 10
## 381 TECCBUS 200511 1351.020 10
## 382 TECCBUS 200512 1628.797 10
## 383 TECCBUS 200601 1510.656 10
## 384 TECCBUS 200602 1449.425 10
## 385 TECCBUS 200603 1461.342 10
## 386 TECCBUS 200604 1257.998 10
## 387 TECCBUS 200605 1328.660 10
## 388 TECCBUS 200606 1383.465 10
## 389 TECCBUS 200607 1492.909 10
## 390 TECCBUS 200608 1496.686 10
## 391 TECCBUS 200609 1304.316 10
## 392 TECCBUS 200610 1365.347 10
## 393 TECCBUS 200611 1371.423 10
## 394 TECCBUS 200612 1528.440 10
## 395 TECCBUS 200701 1635.488 10
## 396 TECCBUS 200702 1580.577 10
## 397 TECCBUS 200703 1475.452 10
## 398 TECCBUS 200704 1338.430 10
## 399 TECCBUS 200705 1338.773 10
## 400 TECCBUS 200706 1404.039 10
## 401 TECCBUS 200707 1461.388 10
## 402 TECCBUS 200708 1558.383 10
## 403 TECCBUS 200709 1361.759 10
## 404 TECCBUS 200710 1374.370 10
## 405 TECCBUS 200711 1410.705 10
## 406 TECCBUS 200712 1629.953 10
## 407 TECCBUS 200801 1709.282 10
## 408 TECCBUS 200802 1598.155 10
## 409 TECCBUS 200803 1513.693 10
## 410 TECCBUS 200804 1338.794 10
## 411 TECCBUS 200805 1341.150 10
## 412 TECCBUS 200806 1426.479 10
## 413 TECCBUS 200807 1504.261 10
## 414 TECCBUS 200808 1454.019 10
## 415 TECCBUS 200809 1345.581 10
## 416 TECCBUS 200810 1367.317 10
## 417 TECCBUS 200811 1411.147 10
## 418 TECCBUS 200812 1640.593 10
## 419 TECCBUS 200901 1745.220 10
## 420 TECCBUS 200902 1475.177 10
## 421 TECCBUS 200903 1463.570 10
## 422 TECCBUS 200904 1292.796 10
## 423 TECCBUS 200905 1290.365 10
## 424 TECCBUS 200906 1365.078 10
## 425 TECCBUS 200907 1403.760 10
## 426 TECCBUS 200908 1440.213 10
## 427 TECCBUS 200909 1298.705 10
## 428 TECCBUS 200910 1315.561 10
## 429 TECCBUS 200911 1308.490 10
## 430 TECCBUS 200912 1648.154 10
## 431 TECCBUS 201001 1690.046 10
## 432 TECCBUS 201002 1528.334 10
## 433 TECCBUS 201003 1397.295 10
## 434 TECCBUS 201004 1234.187 10
## 435 TECCBUS 201005 1322.958 10
## 436 TECCBUS 201006 1405.779 10
## 437 TECCBUS 201007 1468.484 10
## 438 TECCBUS 201008 1479.394 10
## 439 TECCBUS 201009 1326.084 10
## 440 TECCBUS 201010 1296.391 10
## 441 TECCBUS 201011 1379.416 10
## 442 TECCBUS 201012 1689.036 10
## 443 TECCBUS 201101 1690.486 10
## 444 TECCBUS 201102 1464.681 10
## 445 TECCBUS 201103 1443.132 10
## 446 TECCBUS 201104 1246.662 10
## 447 TECCBUS 201105 1270.743 10
## 448 TECCBUS 201106 1355.776 10
## 449 TECCBUS 201107 1481.001 10
## 450 TECCBUS 201108 1471.853 10
## 451 TECCBUS 201109 1307.152 10
## 452 TECCBUS 201110 1321.199 10
## 453 TECCBUS 201111 1354.629 10
## 454 TECCBUS 201112 1542.949 10
## 455 TECCBUS 201201 1556.801 10
## 456 TECCBUS 201202 1417.694 10
## 457 TECCBUS 201203 1288.568 10
## 458 TECCBUS 201204 1201.786 10
## 459 TECCBUS 201205 1285.607 10
## 460 TECCBUS 201206 1332.799 10
## 461 TECCBUS 201207 1457.415 10
## 462 TECCBUS 201208 1433.051 10
## 463 TECCBUS 201209 1289.866 10
## 464 TECCBUS 201210 1315.928 10
## 465 TECCBUS 201211 1364.640 10
## 466 TECCBUS 201212 1498.461 10
## 467 TECCBUS 201301 1613.400 10
## 468 TECCBUS 201302 1465.277 10
## 469 TECCBUS 201303 1477.172 10
## 470 TECCBUS 201304 1251.976 10
## 471 TECCBUS 201305 1259.474 10
## 472 TECCBUS 201306 1321.562 10
## 473 TECCBUS 201307 1417.773 10
## 474 TECCBUS 201308 1421.847 10
## 475 TECCBUS 201309 1302.778 10
## 476 TECCBUS 201310 1310.305 10
## 477 TECCBUS 201311 1424.589 10
## 478 TECCBUS 201312 1629.265 10
## 479 TECCBUS 201401 1786.168 10
## 480 TECCBUS 201402 1564.387 10
## 481 TECCBUS 201403 1526.337 10
## 482 TECCBUS 201404 1239.270 10
## 483 TECCBUS 201405 1286.529 10
## 484 TECCBUS 201406 1339.475 10
## 485 TECCBUS 201407 1405.449 10
## 486 TECCBUS 201408 1412.246 10
## 487 TECCBUS 201409 1315.193 10
## 488 TECCBUS 201410 1313.960 10
## 489 TECCBUS 201411 1451.888 10
## 490 TECCBUS 201412 1546.775 10
## 491 TECCBUS 201501 1724.194 10
## 492 TECCBUS 201502 1629.953 10
## 493 TECCBUS 201503 1469.710 10
## 494 TECCBUS 201504 1251.071 10
## 495 TECCBUS 201505 1291.988 10
## 496 TECCBUS 201506 1362.124 10
## 497 TECCBUS 201507 1453.000 10
## 498 TECCBUS 201508 1435.311 10
## 499 TECCBUS 201509 1334.159 10
## 500 TECCBUS 201510 1320.427 10
## 501 TECCBUS 201511 1358.386 10
## 502 TECCBUS 201512 1456.154 10
## 503 TECCBUS 201601 1661.966 10
## 504 TECCBUS 201602 1442.589 10
## 505 TECCBUS 201603 1321.501 10
## 506 TECCBUS 201604 1230.259 10
## 507 TECCBUS 201605 1260.405 10
## 508 TECCBUS 201606 1362.042 10
## 509 TECCBUS 201607 1461.488 10
## 510 TECCBUS 201608 1480.499 10
## 511 TECCBUS 201609 1331.706 10
## 512 TECCBUS 201610 1297.706 10
## 513 TECCBUS 201611 1332.259 10
## 514 TECCBUS 201612 1639.225 10
## 515 TECCBUS 201701 1610.697 10
## 516 TECCBUS 201702 1333.718 10
## 517 TECCBUS 201703 1433.162 10
## 518 TECCBUS 201704 1187.196 10
## 519 TECCBUS 201705 1245.133 10
## 520 TECCBUS 201706 1304.376 10
## 521 TECCBUS 201707 1415.590 10
## 522 TECCBUS 201708 1388.173 10
## 523 TECCBUS 201709 1275.009 10
## 524 TECCBUS 201710 1296.114 10
## 525 TECCBUS 201711 1384.292 10
## 526 TECCBUS 201712 1650.472 10
## 527 TECCBUS 201801 1744.226 10
## 528 TECCBUS 201802 1414.963 10
## 529 TECCBUS 201803 1475.825 10
## 530 TECCBUS 201804 1286.691 10
## 531 TECCBUS 201805 1273.197 10
## 532 TECCBUS 201806 1319.674 10
## 533 TECCBUS 201807 1430.367 10
## 534 TECCBUS 201808 1431.177 10
## 535 TECCBUS 201809 1297.777 10
## 536 TECCBUS 201810 1340.930 10
## 537 TECCBUS 201811 1466.299 10
## 538 TECCBUS 201812 1576.519 10
## 539 TECCBUS 201901 1704.990 10
## 540 TECCBUS 201902 1480.979 10
## 541 TECCBUS 201903 1475.588 10
## 542 TECCBUS 201904 1199.901 10
## 543 TECCBUS 201905 1247.625 10
## 544 TECCBUS 201906 1246.411 10
## 545 TECCBUS 201907 1392.228 10
## 546 TECCBUS 201908 1388.373 10
## 547 TECCBUS 201909 1268.565 10
## 548 TECCBUS 201910 1261.102 10
## 549 TECCBUS 201911 1421.631 10
## 550 TECCBUS 201912 1534.749 10
## 551 TECCBUS 202001 1565.589 10
## 552 TECCBUS 202002 1435.226 10
## 553 TECCBUS 202003 1311.233 10
## 554 TECCBUS 202004 1070.438 10
## 555 TECCBUS 202005 1056.980 10
## 556 TECCBUS 202006 1158.613 10
## 557 TECCBUS 202007 1322.279 10
## 558 TECCBUS 202008 1293.234 10
## 559 TECCBUS 202009 1171.537 10
## 560 TECCBUS 202010 1208.459 10
## 561 TECCBUS 202011 1224.608 10
## 562 TECCBUS 202012 1489.291 10
## 563 TECCBUS 202101 1534.263 10
## 564 TECCBUS 202102 1493.381 10
## 565 TECCBUS 202103 1311.374 10
## 566 TECCBUS 202104 1156.817 10
## 567 TECCBUS 202105 1169.481 10
## 568 TECCBUS 202106 1283.491 10
## 569 TECCBUS 202107 1360.999 10
## 570 TECCBUS 202108 1377.837 10
## 571 TECCBUS 202109 1221.142 10
## 572 TECCBUS 202110 1226.485 10
## 573 TECCBUS 202111 1330.139 10
## 574 TECCBUS 202112 1431.945 10
## 575 TECCBUS 202201 1692.387 10
## 576 TECCBUS 202202 1458.476 10
## 577 TECCBUS 202203 1386.283 10
## 578 TECCBUS 202204 1209.625 10
## 579 TECCBUS 202205 1235.115 10
## 580 TECCBUS 202206 1280.878 10
## 581 TECCBUS 202207 1404.928 10
## 582 TECCBUS 202208 1388.133 10
## 583 TECCBUS 202209 1257.714 10
## 584 TECCBUS 202210 1248.630 10
## 585 TECCBUS 202211 1375.687 10
## 586 TECCBUS 202212 1620.631 10
## 587 TECCBUS 202301 1550.038 10
## 588 TECCBUS 202302 1388.017 10
## 589 TECCBUS 202303 1448.133 10
## 590 TECCBUS 202304 1178.691 10
## 591 TECCBUS 202305 1207.796 10
## 592 TECCBUS 202306 1264.892 10
## 593 TECCBUS 202307 1413.403 10
## 594 TECCBUS 202308 1410.461 10
## 595 TECCBUS 202309 1260.080 10
## 596 TECCBUS 202310 1287.882 10
## 597 TECCBUS 202311 1375.841 10
## 598 TECCBUS 202312 1486.475 10
## 599 TECCBUS 202401 1708.150 10
## 600 TECCBUS 202402 1413.014 10
## 601 TECCBUS 202403 1352.503 10
## 602 TECCBUS 202404 1201.115 10
## 603 TECCBUS 202405 1241.530 10
## 604 TECCBUS 202406 1309.679 10
## 605 TECCBUS 202407 1412.236 10
## 606 TECCBUS 202408 1413.299 10
## 607 TECCBUS 202409 1269.145 10
## 608 TECCBUS 202410 1278.134 10
## 609 TECCBUS 202411 1347.676 10
## 610 TECCBUS 202412 1586.563 10
## 611 TECCBUS 202501 1824.111 10
## 612 TECCBUS 202502 1536.385 10
## 613 TECCBUS 202503 1382.536 10
## 614 TECCBUS 202504 1242.990 10
## 615 TECCBUS 202505 1251.697 10
## 616 TECCBUS 202506 1328.081 10
## 617 TECCBUS 202507 1458.217 10
## 618 TECCBUS 202508 1406.600 10
## 619 TECCBUS 202509 1307.630 10
## 620 TECCBUS 202510 1341.246 10
## 621 TEICBUS 200001 2809.797 15
## 622 TEICBUS 200002 2721.063 15
## 623 TEICBUS 200003 2846.097 15
## 624 TEICBUS 200004 2701.521 15
## 625 TEICBUS 200005 2950.592 15
## 626 TEICBUS 200006 2878.516 15
## 627 TEICBUS 200007 2845.303 15
## 628 TEICBUS 200008 3013.899 15
## 629 TEICBUS 200009 2797.878 15
## 630 TEICBUS 200010 2839.327 15
## 631 TEICBUS 200011 2743.589 15
## 632 TEICBUS 200012 2797.506 15
## 633 TEICBUS 200101 2744.890 15
## 634 TEICBUS 200102 2543.235 15
## 635 TEICBUS 200103 2752.111 15
## 636 TEICBUS 200104 2658.029 15
## 637 TEICBUS 200105 2722.669 15
## 638 TEICBUS 200106 2639.532 15
## 639 TEICBUS 200107 2693.801 15
## 640 TEICBUS 200108 2787.507 15
## 641 TEICBUS 200109 2586.656 15
## 642 TEICBUS 200110 2774.968 15
## 643 TEICBUS 200111 2635.524 15
## 644 TEICBUS 200112 2611.721 15
## 645 TEICBUS 200201 2682.897 15
## 646 TEICBUS 200202 2456.895 15
## 647 TEICBUS 200203 2666.007 15
## 648 TEICBUS 200204 2630.050 15
## 649 TEICBUS 200205 2711.755 15
## 650 TEICBUS 200206 2680.232 15
## 651 TEICBUS 200207 2807.834 15
## 652 TEICBUS 200208 2784.108 15
## 653 TEICBUS 200209 2631.694 15
## 654 TEICBUS 200210 2684.966 15
## 655 TEICBUS 200211 2653.432 15
## 656 TEICBUS 200212 2619.587 15
## 657 TEICBUS 200301 2693.128 15
## 658 TEICBUS 200302 2538.858 15
## 659 TEICBUS 200303 2618.944 15
## 660 TEICBUS 200304 2600.511 15
## 661 TEICBUS 200305 2615.162 15
## 662 TEICBUS 200306 2591.907 15
## 663 TEICBUS 200307 2738.139 15
## 664 TEICBUS 200308 2767.201 15
## 665 TEICBUS 200309 2616.390 15
## 666 TEICBUS 200310 2723.003 15
## 667 TEICBUS 200311 2639.698 15
## 668 TEICBUS 200312 2736.534 15
## 669 TEICBUS 200401 2706.303 15
## 670 TEICBUS 200402 2630.749 15
## 671 TEICBUS 200403 2718.652 15
## 672 TEICBUS 200404 2667.702 15
## 673 TEICBUS 200405 2788.225 15
## 674 TEICBUS 200406 2722.830 15
## 675 TEICBUS 200407 2803.817 15
## 676 TEICBUS 200408 2832.951 15
## 677 TEICBUS 200409 2700.788 15
## 678 TEICBUS 200410 2772.854 15
## 679 TEICBUS 200411 2729.539 15
## 680 TEICBUS 200412 2788.100 15
## 681 TEICBUS 200501 2729.271 15
## 682 TEICBUS 200502 2518.472 15
## 683 TEICBUS 200503 2739.250 15
## 684 TEICBUS 200504 2558.260 15
## 685 TEICBUS 200505 2704.356 15
## 686 TEICBUS 200506 2720.792 15
## 687 TEICBUS 200507 2686.589 15
## 688 TEICBUS 200508 2775.646 15
## 689 TEICBUS 200509 2515.103 15
## 690 TEICBUS 200510 2558.484 15
## 691 TEICBUS 200511 2605.763 15
## 692 TEICBUS 200512 2685.176 15
## 693 TEICBUS 200601 2636.360 15
## 694 TEICBUS 200602 2460.591 15
## 695 TEICBUS 200603 2649.609 15
## 696 TEICBUS 200604 2508.347 15
## 697 TEICBUS 200605 2665.629 15
## 698 TEICBUS 200606 2672.746 15
## 699 TEICBUS 200607 2678.890 15
## 700 TEICBUS 200608 2790.460 15
## 701 TEICBUS 200609 2646.080 15
## 702 TEICBUS 200610 2719.324 15
## 703 TEICBUS 200611 2638.564 15
## 704 TEICBUS 200612 2637.671 15
## 705 TEICBUS 200701 2709.948 15
## 706 TEICBUS 200702 2519.189 15
## 707 TEICBUS 200703 2627.455 15
## 708 TEICBUS 200704 2578.276 15
## 709 TEICBUS 200705 2687.791 15
## 710 TEICBUS 200706 2630.142 15
## 711 TEICBUS 200707 2669.981 15
## 712 TEICBUS 200708 2757.038 15
## 713 TEICBUS 200709 2597.877 15
## 714 TEICBUS 200710 2678.739 15
## 715 TEICBUS 200711 2617.650 15
## 716 TEICBUS 200712 2693.925 15
## 717 TEICBUS 200801 2739.232 15
## 718 TEICBUS 200802 2545.964 15
## 719 TEICBUS 200803 2616.805 15
## 720 TEICBUS 200804 2540.637 15
## 721 TEICBUS 200805 2634.980 15
## 722 TEICBUS 200806 2577.512 15
## 723 TEICBUS 200807 2625.948 15
## 724 TEICBUS 200808 2587.883 15
## 725 TEICBUS 200809 2352.704 15
## 726 TEICBUS 200810 2618.244 15
## 727 TEICBUS 200811 2463.348 15
## 728 TEICBUS 200812 2376.491 15
## 729 TEICBUS 200901 2406.605 15
## 730 TEICBUS 200902 2183.835 15
## 731 TEICBUS 200903 2296.968 15
## 732 TEICBUS 200904 2177.614 15
## 733 TEICBUS 200905 2240.720 15
## 734 TEICBUS 200906 2275.519 15
## 735 TEICBUS 200907 2312.892 15
## 736 TEICBUS 200908 2406.340 15
## 737 TEICBUS 200909 2325.074 15
## 738 TEICBUS 200910 2369.418 15
## 739 TEICBUS 200911 2339.223 15
## 740 TEICBUS 200912 2441.220 15
## 741 TEICBUS 201001 2436.378 15
## 742 TEICBUS 201002 2314.359 15
## 743 TEICBUS 201003 2512.249 15
## 744 TEICBUS 201004 2405.255 15
## 745 TEICBUS 201005 2505.400 15
## 746 TEICBUS 201006 2510.591 15
## 747 TEICBUS 201007 2540.960 15
## 748 TEICBUS 201008 2645.689 15
## 749 TEICBUS 201009 2520.206 15
## 750 TEICBUS 201010 2465.786 15
## 751 TEICBUS 201011 2475.909 15
## 752 TEICBUS 201012 2620.110 15
## 753 TEICBUS 201101 2585.006 15
## 754 TEICBUS 201102 2311.888 15
## 755 TEICBUS 201103 2576.281 15
## 756 TEICBUS 201104 2402.276 15
## 757 TEICBUS 201105 2469.342 15
## 758 TEICBUS 201106 2482.414 15
## 759 TEICBUS 201107 2551.936 15
## 760 TEICBUS 201108 2639.418 15
## 761 TEICBUS 201109 2479.923 15
## 762 TEICBUS 201110 2544.227 15
## 763 TEICBUS 201111 2547.099 15
## 764 TEICBUS 201112 2525.791 15
## 765 TEICBUS 201201 2574.639 15
## 766 TEICBUS 201202 2448.742 15
## 767 TEICBUS 201203 2476.116 15
## 768 TEICBUS 201204 2394.534 15
## 769 TEICBUS 201205 2540.243 15
## 770 TEICBUS 201206 2496.367 15
## 771 TEICBUS 201207 2575.007 15
## 772 TEICBUS 201208 2610.881 15
## 773 TEICBUS 201209 2436.070 15
## 774 TEICBUS 201210 2576.649 15
## 775 TEICBUS 201211 2522.776 15
## 776 TEICBUS 201212 2568.556 15
## 777 TEICBUS 201301 2616.577 15
## 778 TEICBUS 201302 2373.949 15
## 779 TEICBUS 201303 2510.399 15
## 780 TEICBUS 201304 2420.279 15
## 781 TEICBUS 201305 2562.446 15
## 782 TEICBUS 201306 2519.949 15
## 783 TEICBUS 201307 2631.396 15
## 784 TEICBUS 201308 2619.449 15
## 785 TEICBUS 201309 2563.126 15
## 786 TEICBUS 201310 2628.652 15
## 787 TEICBUS 201311 2635.670 15
## 788 TEICBUS 201312 2673.413 15
## 789 TEICBUS 201401 2694.643 15
## 790 TEICBUS 201402 2395.205 15
## 791 TEICBUS 201403 2519.387 15
## 792 TEICBUS 201404 2475.631 15
## 793 TEICBUS 201405 2547.813 15
## 794 TEICBUS 201406 2528.293 15
## 795 TEICBUS 201407 2647.981 15
## 796 TEICBUS 201408 2672.458 15
## 797 TEICBUS 201409 2572.341 15
## 798 TEICBUS 201410 2631.173 15
## 799 TEICBUS 201411 2593.346 15
## 800 TEICBUS 201412 2635.501 15
## 801 TEICBUS 201501 2657.254 15
## 802 TEICBUS 201502 2442.758 15
## 803 TEICBUS 201503 2531.318 15
## 804 TEICBUS 201504 2459.453 15
## 805 TEICBUS 201505 2578.974 15
## 806 TEICBUS 201506 2613.968 15
## 807 TEICBUS 201507 2692.947 15
## 808 TEICBUS 201508 2668.942 15
## 809 TEICBUS 201509 2507.926 15
## 810 TEICBUS 201510 2494.429 15
## 811 TEICBUS 201511 2431.026 15
## 812 TEICBUS 201512 2525.799 15
## 813 TEICBUS 201601 2615.212 15
## 814 TEICBUS 201602 2480.931 15
## 815 TEICBUS 201603 2519.114 15
## 816 TEICBUS 201604 2407.539 15
## 817 TEICBUS 201605 2484.221 15
## 818 TEICBUS 201606 2518.608 15
## 819 TEICBUS 201607 2601.186 15
## 820 TEICBUS 201608 2690.364 15
## 821 TEICBUS 201609 2502.782 15
## 822 TEICBUS 201610 2545.976 15
## 823 TEICBUS 201611 2500.700 15
## 824 TEICBUS 201612 2639.713 15
## 825 TEICBUS 201701 2607.945 15
## 826 TEICBUS 201702 2321.868 15
## 827 TEICBUS 201703 2591.161 15
## 828 TEICBUS 201704 2447.991 15
## 829 TEICBUS 201705 2558.072 15
## 830 TEICBUS 201706 2566.326 15
## 831 TEICBUS 201707 2666.217 15
## 832 TEICBUS 201708 2650.911 15
## 833 TEICBUS 201709 2509.223 15
## 834 TEICBUS 201710 2582.187 15
## 835 TEICBUS 201711 2623.251 15
## 836 TEICBUS 201712 2699.974 15
## 837 TEICBUS 201801 2725.692 15
## 838 TEICBUS 201802 2417.221 15
## 839 TEICBUS 201803 2675.871 15
## 840 TEICBUS 201804 2489.583 15
## 841 TEICBUS 201805 2659.549 15
## 842 TEICBUS 201806 2620.859 15
## 843 TEICBUS 201807 2736.059 15
## 844 TEICBUS 201808 2817.690 15
## 845 TEICBUS 201809 2613.487 15
## 846 TEICBUS 201810 2718.994 15
## 847 TEICBUS 201811 2668.987 15
## 848 TEICBUS 201812 2661.452 15
## 849 TEICBUS 201901 2801.772 15
## 850 TEICBUS 201902 2439.356 15
## 851 TEICBUS 201903 2626.261 15
## 852 TEICBUS 201904 2516.933 15
## 853 TEICBUS 201905 2644.658 15
## 854 TEICBUS 201906 2582.116 15
## 855 TEICBUS 201907 2718.871 15
## 856 TEICBUS 201908 2753.886 15
## 857 TEICBUS 201909 2611.830 15
## 858 TEICBUS 201910 2656.367 15
## 859 TEICBUS 201911 2659.096 15
## 860 TEICBUS 201912 2696.684 15
## 861 TEICBUS 202001 2715.714 15
## 862 TEICBUS 202002 2559.484 15
## 863 TEICBUS 202003 2618.152 15
## 864 TEICBUS 202004 2216.687 15
## 865 TEICBUS 202005 2322.099 15
## 866 TEICBUS 202006 2370.655 15
## 867 TEICBUS 202007 2549.348 15
## 868 TEICBUS 202008 2613.855 15
## 869 TEICBUS 202009 2468.375 15
## 870 TEICBUS 202010 2581.354 15
## 871 TEICBUS 202011 2583.385 15
## 872 TEICBUS 202012 2703.130 15
## 873 TEICBUS 202101 2708.514 15
## 874 TEICBUS 202102 2257.868 15
## 875 TEICBUS 202103 2520.504 15
## 876 TEICBUS 202104 2540.879 15
## 877 TEICBUS 202105 2635.075 15
## 878 TEICBUS 202106 2646.751 15
## 879 TEICBUS 202107 2711.668 15
## 880 TEICBUS 202108 2759.700 15
## 881 TEICBUS 202109 2581.757 15
## 882 TEICBUS 202110 2658.343 15
## 883 TEICBUS 202111 2639.474 15
## 884 TEICBUS 202112 2717.584 15
## 885 TEICBUS 202201 2751.332 15
## 886 TEICBUS 202202 2434.459 15
## 887 TEICBUS 202203 2637.152 15
## 888 TEICBUS 202204 2491.012 15
## 889 TEICBUS 202205 2566.460 15
## 890 TEICBUS 202206 2609.021 15
## 891 TEICBUS 202207 2692.253 15
## 892 TEICBUS 202208 2699.454 15
## 893 TEICBUS 202209 2552.853 15
## 894 TEICBUS 202210 2594.276 15
## 895 TEICBUS 202211 2595.355 15
## 896 TEICBUS 202212 2545.129 15
## 897 TEICBUS 202301 2586.916 15
## 898 TEICBUS 202302 2345.314 15
## 899 TEICBUS 202303 2595.054 15
## 900 TEICBUS 202304 2489.822 15
## 901 TEICBUS 202305 2581.643 15
## 902 TEICBUS 202306 2565.235 15
## 903 TEICBUS 202307 2641.434 15
## 904 TEICBUS 202308 2726.387 15
## 905 TEICBUS 202309 2576.452 15
## 906 TEICBUS 202310 2633.738 15
## 907 TEICBUS 202311 2652.648 15
## 908 TEICBUS 202312 2649.941 15
## 909 TEICBUS 202401 2698.698 15
## 910 TEICBUS 202402 2420.034 15
## 911 TEICBUS 202403 2546.423 15
## 912 TEICBUS 202404 2484.198 15
## 913 TEICBUS 202405 2639.128 15
## 914 TEICBUS 202406 2567.089 15
## 915 TEICBUS 202407 2694.408 15
## 916 TEICBUS 202408 2755.596 15
## 917 TEICBUS 202409 2577.158 15
## 918 TEICBUS 202410 2688.652 15
## 919 TEICBUS 202411 2594.323 15
## 920 TEICBUS 202412 2711.236 15
## 921 TEICBUS 202501 2800.814 15
## 922 TEICBUS 202502 2413.833 15
## 923 TEICBUS 202503 2562.880 15
## 924 TEICBUS 202504 2502.766 15
## 925 TEICBUS 202505 2614.116 15
## 926 TEICBUS 202506 2635.023 15
## 927 TEICBUS 202507 2756.340 15
## 928 TEICBUS 202508 2773.085 15
## 929 TEICBUS 202509 2638.205 15
## 930 TEICBUS 202510 2648.350 15
## Description Unit
## 1 Total Energy Consumed by the Residential Sector Trillion Btu
## 2 Total Energy Consumed by the Residential Sector Trillion Btu
## 3 Total Energy Consumed by the Residential Sector Trillion Btu
## 4 Total Energy Consumed by the Residential Sector Trillion Btu
## 5 Total Energy Consumed by the Residential Sector Trillion Btu
## 6 Total Energy Consumed by the Residential Sector Trillion Btu
## 7 Total Energy Consumed by the Residential Sector Trillion Btu
## 8 Total Energy Consumed by the Residential Sector Trillion Btu
## 9 Total Energy Consumed by the Residential Sector Trillion Btu
## 10 Total Energy Consumed by the Residential Sector Trillion Btu
## 11 Total Energy Consumed by the Residential Sector Trillion Btu
## 12 Total Energy Consumed by the Residential Sector Trillion Btu
## 13 Total Energy Consumed by the Residential Sector Trillion Btu
## 14 Total Energy Consumed by the Residential Sector Trillion Btu
## 15 Total Energy Consumed by the Residential Sector Trillion Btu
## 16 Total Energy Consumed by the Residential Sector Trillion Btu
## 17 Total Energy Consumed by the Residential Sector Trillion Btu
## 18 Total Energy Consumed by the Residential Sector Trillion Btu
## 19 Total Energy Consumed by the Residential Sector Trillion Btu
## 20 Total Energy Consumed by the Residential Sector Trillion Btu
## 21 Total Energy Consumed by the Residential Sector Trillion Btu
## 22 Total Energy Consumed by the Residential Sector Trillion Btu
## 23 Total Energy Consumed by the Residential Sector Trillion Btu
## 24 Total Energy Consumed by the Residential Sector Trillion Btu
## 25 Total Energy Consumed by the Residential Sector Trillion Btu
## 26 Total Energy Consumed by the Residential Sector Trillion Btu
## 27 Total Energy Consumed by the Residential Sector Trillion Btu
## 28 Total Energy Consumed by the Residential Sector Trillion Btu
## 29 Total Energy Consumed by the Residential Sector Trillion Btu
## 30 Total Energy Consumed by the Residential Sector Trillion Btu
## 31 Total Energy Consumed by the Residential Sector Trillion Btu
## 32 Total Energy Consumed by the Residential Sector Trillion Btu
## 33 Total Energy Consumed by the Residential Sector Trillion Btu
## 34 Total Energy Consumed by the Residential Sector Trillion Btu
## 35 Total Energy Consumed by the Residential Sector Trillion Btu
## 36 Total Energy Consumed by the Residential Sector Trillion Btu
## 37 Total Energy Consumed by the Residential Sector Trillion Btu
## 38 Total Energy Consumed by the Residential Sector Trillion Btu
## 39 Total Energy Consumed by the Residential Sector Trillion Btu
## 40 Total Energy Consumed by the Residential Sector Trillion Btu
## 41 Total Energy Consumed by the Residential Sector Trillion Btu
## 42 Total Energy Consumed by the Residential Sector Trillion Btu
## 43 Total Energy Consumed by the Residential Sector Trillion Btu
## 44 Total Energy Consumed by the Residential Sector Trillion Btu
## 45 Total Energy Consumed by the Residential Sector Trillion Btu
## 46 Total Energy Consumed by the Residential Sector Trillion Btu
## 47 Total Energy Consumed by the Residential Sector Trillion Btu
## 48 Total Energy Consumed by the Residential Sector Trillion Btu
## 49 Total Energy Consumed by the Residential Sector Trillion Btu
## 50 Total Energy Consumed by the Residential Sector Trillion Btu
## 51 Total Energy Consumed by the Residential Sector Trillion Btu
## 52 Total Energy Consumed by the Residential Sector Trillion Btu
## 53 Total Energy Consumed by the Residential Sector Trillion Btu
## 54 Total Energy Consumed by the Residential Sector Trillion Btu
## 55 Total Energy Consumed by the Residential Sector Trillion Btu
## 56 Total Energy Consumed by the Residential Sector Trillion Btu
## 57 Total Energy Consumed by the Residential Sector Trillion Btu
## 58 Total Energy Consumed by the Residential Sector Trillion Btu
## 59 Total Energy Consumed by the Residential Sector Trillion Btu
## 60 Total Energy Consumed by the Residential Sector Trillion Btu
## 61 Total Energy Consumed by the Residential Sector Trillion Btu
## 62 Total Energy Consumed by the Residential Sector Trillion Btu
## 63 Total Energy Consumed by the Residential Sector Trillion Btu
## 64 Total Energy Consumed by the Residential Sector Trillion Btu
## 65 Total Energy Consumed by the Residential Sector Trillion Btu
## 66 Total Energy Consumed by the Residential Sector Trillion Btu
## 67 Total Energy Consumed by the Residential Sector Trillion Btu
## 68 Total Energy Consumed by the Residential Sector Trillion Btu
## 69 Total Energy Consumed by the Residential Sector Trillion Btu
## 70 Total Energy Consumed by the Residential Sector Trillion Btu
## 71 Total Energy Consumed by the Residential Sector Trillion Btu
## 72 Total Energy Consumed by the Residential Sector Trillion Btu
## 73 Total Energy Consumed by the Residential Sector Trillion Btu
## 74 Total Energy Consumed by the Residential Sector Trillion Btu
## 75 Total Energy Consumed by the Residential Sector Trillion Btu
## 76 Total Energy Consumed by the Residential Sector Trillion Btu
## 77 Total Energy Consumed by the Residential Sector Trillion Btu
## 78 Total Energy Consumed by the Residential Sector Trillion Btu
## 79 Total Energy Consumed by the Residential Sector Trillion Btu
## 80 Total Energy Consumed by the Residential Sector Trillion Btu
## 81 Total Energy Consumed by the Residential Sector Trillion Btu
## 82 Total Energy Consumed by the Residential Sector Trillion Btu
## 83 Total Energy Consumed by the Residential Sector Trillion Btu
## 84 Total Energy Consumed by the Residential Sector Trillion Btu
## 85 Total Energy Consumed by the Residential Sector Trillion Btu
## 86 Total Energy Consumed by the Residential Sector Trillion Btu
## 87 Total Energy Consumed by the Residential Sector Trillion Btu
## 88 Total Energy Consumed by the Residential Sector Trillion Btu
## 89 Total Energy Consumed by the Residential Sector Trillion Btu
## 90 Total Energy Consumed by the Residential Sector Trillion Btu
## 91 Total Energy Consumed by the Residential Sector Trillion Btu
## 92 Total Energy Consumed by the Residential Sector Trillion Btu
## 93 Total Energy Consumed by the Residential Sector Trillion Btu
## 94 Total Energy Consumed by the Residential Sector Trillion Btu
## 95 Total Energy Consumed by the Residential Sector Trillion Btu
## 96 Total Energy Consumed by the Residential Sector Trillion Btu
## 97 Total Energy Consumed by the Residential Sector Trillion Btu
## 98 Total Energy Consumed by the Residential Sector Trillion Btu
## 99 Total Energy Consumed by the Residential Sector Trillion Btu
## 100 Total Energy Consumed by the Residential Sector Trillion Btu
## 101 Total Energy Consumed by the Residential Sector Trillion Btu
## 102 Total Energy Consumed by the Residential Sector Trillion Btu
## 103 Total Energy Consumed by the Residential Sector Trillion Btu
## 104 Total Energy Consumed by the Residential Sector Trillion Btu
## 105 Total Energy Consumed by the Residential Sector Trillion Btu
## 106 Total Energy Consumed by the Residential Sector Trillion Btu
## 107 Total Energy Consumed by the Residential Sector Trillion Btu
## 108 Total Energy Consumed by the Residential Sector Trillion Btu
## 109 Total Energy Consumed by the Residential Sector Trillion Btu
## 110 Total Energy Consumed by the Residential Sector Trillion Btu
## 111 Total Energy Consumed by the Residential Sector Trillion Btu
## 112 Total Energy Consumed by the Residential Sector Trillion Btu
## 113 Total Energy Consumed by the Residential Sector Trillion Btu
## 114 Total Energy Consumed by the Residential Sector Trillion Btu
## 115 Total Energy Consumed by the Residential Sector Trillion Btu
## 116 Total Energy Consumed by the Residential Sector Trillion Btu
## 117 Total Energy Consumed by the Residential Sector Trillion Btu
## 118 Total Energy Consumed by the Residential Sector Trillion Btu
## 119 Total Energy Consumed by the Residential Sector Trillion Btu
## 120 Total Energy Consumed by the Residential Sector Trillion Btu
## 121 Total Energy Consumed by the Residential Sector Trillion Btu
## 122 Total Energy Consumed by the Residential Sector Trillion Btu
## 123 Total Energy Consumed by the Residential Sector Trillion Btu
## 124 Total Energy Consumed by the Residential Sector Trillion Btu
## 125 Total Energy Consumed by the Residential Sector Trillion Btu
## 126 Total Energy Consumed by the Residential Sector Trillion Btu
## 127 Total Energy Consumed by the Residential Sector Trillion Btu
## 128 Total Energy Consumed by the Residential Sector Trillion Btu
## 129 Total Energy Consumed by the Residential Sector Trillion Btu
## 130 Total Energy Consumed by the Residential Sector Trillion Btu
## 131 Total Energy Consumed by the Residential Sector Trillion Btu
## 132 Total Energy Consumed by the Residential Sector Trillion Btu
## 133 Total Energy Consumed by the Residential Sector Trillion Btu
## 134 Total Energy Consumed by the Residential Sector Trillion Btu
## 135 Total Energy Consumed by the Residential Sector Trillion Btu
## 136 Total Energy Consumed by the Residential Sector Trillion Btu
## 137 Total Energy Consumed by the Residential Sector Trillion Btu
## 138 Total Energy Consumed by the Residential Sector Trillion Btu
## 139 Total Energy Consumed by the Residential Sector Trillion Btu
## 140 Total Energy Consumed by the Residential Sector Trillion Btu
## 141 Total Energy Consumed by the Residential Sector Trillion Btu
## 142 Total Energy Consumed by the Residential Sector Trillion Btu
## 143 Total Energy Consumed by the Residential Sector Trillion Btu
## 144 Total Energy Consumed by the Residential Sector Trillion Btu
## 145 Total Energy Consumed by the Residential Sector Trillion Btu
## 146 Total Energy Consumed by the Residential Sector Trillion Btu
## 147 Total Energy Consumed by the Residential Sector Trillion Btu
## 148 Total Energy Consumed by the Residential Sector Trillion Btu
## 149 Total Energy Consumed by the Residential Sector Trillion Btu
## 150 Total Energy Consumed by the Residential Sector Trillion Btu
## 151 Total Energy Consumed by the Residential Sector Trillion Btu
## 152 Total Energy Consumed by the Residential Sector Trillion Btu
## 153 Total Energy Consumed by the Residential Sector Trillion Btu
## 154 Total Energy Consumed by the Residential Sector Trillion Btu
## 155 Total Energy Consumed by the Residential Sector Trillion Btu
## 156 Total Energy Consumed by the Residential Sector Trillion Btu
## 157 Total Energy Consumed by the Residential Sector Trillion Btu
## 158 Total Energy Consumed by the Residential Sector Trillion Btu
## 159 Total Energy Consumed by the Residential Sector Trillion Btu
## 160 Total Energy Consumed by the Residential Sector Trillion Btu
## 161 Total Energy Consumed by the Residential Sector Trillion Btu
## 162 Total Energy Consumed by the Residential Sector Trillion Btu
## 163 Total Energy Consumed by the Residential Sector Trillion Btu
## 164 Total Energy Consumed by the Residential Sector Trillion Btu
## 165 Total Energy Consumed by the Residential Sector Trillion Btu
## 166 Total Energy Consumed by the Residential Sector Trillion Btu
## 167 Total Energy Consumed by the Residential Sector Trillion Btu
## 168 Total Energy Consumed by the Residential Sector Trillion Btu
## 169 Total Energy Consumed by the Residential Sector Trillion Btu
## 170 Total Energy Consumed by the Residential Sector Trillion Btu
## 171 Total Energy Consumed by the Residential Sector Trillion Btu
## 172 Total Energy Consumed by the Residential Sector Trillion Btu
## 173 Total Energy Consumed by the Residential Sector Trillion Btu
## 174 Total Energy Consumed by the Residential Sector Trillion Btu
## 175 Total Energy Consumed by the Residential Sector Trillion Btu
## 176 Total Energy Consumed by the Residential Sector Trillion Btu
## 177 Total Energy Consumed by the Residential Sector Trillion Btu
## 178 Total Energy Consumed by the Residential Sector Trillion Btu
## 179 Total Energy Consumed by the Residential Sector Trillion Btu
## 180 Total Energy Consumed by the Residential Sector Trillion Btu
## 181 Total Energy Consumed by the Residential Sector Trillion Btu
## 182 Total Energy Consumed by the Residential Sector Trillion Btu
## 183 Total Energy Consumed by the Residential Sector Trillion Btu
## 184 Total Energy Consumed by the Residential Sector Trillion Btu
## 185 Total Energy Consumed by the Residential Sector Trillion Btu
## 186 Total Energy Consumed by the Residential Sector Trillion Btu
## 187 Total Energy Consumed by the Residential Sector Trillion Btu
## 188 Total Energy Consumed by the Residential Sector Trillion Btu
## 189 Total Energy Consumed by the Residential Sector Trillion Btu
## 190 Total Energy Consumed by the Residential Sector Trillion Btu
## 191 Total Energy Consumed by the Residential Sector Trillion Btu
## 192 Total Energy Consumed by the Residential Sector Trillion Btu
## 193 Total Energy Consumed by the Residential Sector Trillion Btu
## 194 Total Energy Consumed by the Residential Sector Trillion Btu
## 195 Total Energy Consumed by the Residential Sector Trillion Btu
## 196 Total Energy Consumed by the Residential Sector Trillion Btu
## 197 Total Energy Consumed by the Residential Sector Trillion Btu
## 198 Total Energy Consumed by the Residential Sector Trillion Btu
## 199 Total Energy Consumed by the Residential Sector Trillion Btu
## 200 Total Energy Consumed by the Residential Sector Trillion Btu
## 201 Total Energy Consumed by the Residential Sector Trillion Btu
## 202 Total Energy Consumed by the Residential Sector Trillion Btu
## 203 Total Energy Consumed by the Residential Sector Trillion Btu
## 204 Total Energy Consumed by the Residential Sector Trillion Btu
## 205 Total Energy Consumed by the Residential Sector Trillion Btu
## 206 Total Energy Consumed by the Residential Sector Trillion Btu
## 207 Total Energy Consumed by the Residential Sector Trillion Btu
## 208 Total Energy Consumed by the Residential Sector Trillion Btu
## 209 Total Energy Consumed by the Residential Sector Trillion Btu
## 210 Total Energy Consumed by the Residential Sector Trillion Btu
## 211 Total Energy Consumed by the Residential Sector Trillion Btu
## 212 Total Energy Consumed by the Residential Sector Trillion Btu
## 213 Total Energy Consumed by the Residential Sector Trillion Btu
## 214 Total Energy Consumed by the Residential Sector Trillion Btu
## 215 Total Energy Consumed by the Residential Sector Trillion Btu
## 216 Total Energy Consumed by the Residential Sector Trillion Btu
## 217 Total Energy Consumed by the Residential Sector Trillion Btu
## 218 Total Energy Consumed by the Residential Sector Trillion Btu
## 219 Total Energy Consumed by the Residential Sector Trillion Btu
## 220 Total Energy Consumed by the Residential Sector Trillion Btu
## 221 Total Energy Consumed by the Residential Sector Trillion Btu
## 222 Total Energy Consumed by the Residential Sector Trillion Btu
## 223 Total Energy Consumed by the Residential Sector Trillion Btu
## 224 Total Energy Consumed by the Residential Sector Trillion Btu
## 225 Total Energy Consumed by the Residential Sector Trillion Btu
## 226 Total Energy Consumed by the Residential Sector Trillion Btu
## 227 Total Energy Consumed by the Residential Sector Trillion Btu
## 228 Total Energy Consumed by the Residential Sector Trillion Btu
## 229 Total Energy Consumed by the Residential Sector Trillion Btu
## 230 Total Energy Consumed by the Residential Sector Trillion Btu
## 231 Total Energy Consumed by the Residential Sector Trillion Btu
## 232 Total Energy Consumed by the Residential Sector Trillion Btu
## 233 Total Energy Consumed by the Residential Sector Trillion Btu
## 234 Total Energy Consumed by the Residential Sector Trillion Btu
## 235 Total Energy Consumed by the Residential Sector Trillion Btu
## 236 Total Energy Consumed by the Residential Sector Trillion Btu
## 237 Total Energy Consumed by the Residential Sector Trillion Btu
## 238 Total Energy Consumed by the Residential Sector Trillion Btu
## 239 Total Energy Consumed by the Residential Sector Trillion Btu
## 240 Total Energy Consumed by the Residential Sector Trillion Btu
## 241 Total Energy Consumed by the Residential Sector Trillion Btu
## 242 Total Energy Consumed by the Residential Sector Trillion Btu
## 243 Total Energy Consumed by the Residential Sector Trillion Btu
## 244 Total Energy Consumed by the Residential Sector Trillion Btu
## 245 Total Energy Consumed by the Residential Sector Trillion Btu
## 246 Total Energy Consumed by the Residential Sector Trillion Btu
## 247 Total Energy Consumed by the Residential Sector Trillion Btu
## 248 Total Energy Consumed by the Residential Sector Trillion Btu
## 249 Total Energy Consumed by the Residential Sector Trillion Btu
## 250 Total Energy Consumed by the Residential Sector Trillion Btu
## 251 Total Energy Consumed by the Residential Sector Trillion Btu
## 252 Total Energy Consumed by the Residential Sector Trillion Btu
## 253 Total Energy Consumed by the Residential Sector Trillion Btu
## 254 Total Energy Consumed by the Residential Sector Trillion Btu
## 255 Total Energy Consumed by the Residential Sector Trillion Btu
## 256 Total Energy Consumed by the Residential Sector Trillion Btu
## 257 Total Energy Consumed by the Residential Sector Trillion Btu
## 258 Total Energy Consumed by the Residential Sector Trillion Btu
## 259 Total Energy Consumed by the Residential Sector Trillion Btu
## 260 Total Energy Consumed by the Residential Sector Trillion Btu
## 261 Total Energy Consumed by the Residential Sector Trillion Btu
## 262 Total Energy Consumed by the Residential Sector Trillion Btu
## 263 Total Energy Consumed by the Residential Sector Trillion Btu
## 264 Total Energy Consumed by the Residential Sector Trillion Btu
## 265 Total Energy Consumed by the Residential Sector Trillion Btu
## 266 Total Energy Consumed by the Residential Sector Trillion Btu
## 267 Total Energy Consumed by the Residential Sector Trillion Btu
## 268 Total Energy Consumed by the Residential Sector Trillion Btu
## 269 Total Energy Consumed by the Residential Sector Trillion Btu
## 270 Total Energy Consumed by the Residential Sector Trillion Btu
## 271 Total Energy Consumed by the Residential Sector Trillion Btu
## 272 Total Energy Consumed by the Residential Sector Trillion Btu
## 273 Total Energy Consumed by the Residential Sector Trillion Btu
## 274 Total Energy Consumed by the Residential Sector Trillion Btu
## 275 Total Energy Consumed by the Residential Sector Trillion Btu
## 276 Total Energy Consumed by the Residential Sector Trillion Btu
## 277 Total Energy Consumed by the Residential Sector Trillion Btu
## 278 Total Energy Consumed by the Residential Sector Trillion Btu
## 279 Total Energy Consumed by the Residential Sector Trillion Btu
## 280 Total Energy Consumed by the Residential Sector Trillion Btu
## 281 Total Energy Consumed by the Residential Sector Trillion Btu
## 282 Total Energy Consumed by the Residential Sector Trillion Btu
## 283 Total Energy Consumed by the Residential Sector Trillion Btu
## 284 Total Energy Consumed by the Residential Sector Trillion Btu
## 285 Total Energy Consumed by the Residential Sector Trillion Btu
## 286 Total Energy Consumed by the Residential Sector Trillion Btu
## 287 Total Energy Consumed by the Residential Sector Trillion Btu
## 288 Total Energy Consumed by the Residential Sector Trillion Btu
## 289 Total Energy Consumed by the Residential Sector Trillion Btu
## 290 Total Energy Consumed by the Residential Sector Trillion Btu
## 291 Total Energy Consumed by the Residential Sector Trillion Btu
## 292 Total Energy Consumed by the Residential Sector Trillion Btu
## 293 Total Energy Consumed by the Residential Sector Trillion Btu
## 294 Total Energy Consumed by the Residential Sector Trillion Btu
## 295 Total Energy Consumed by the Residential Sector Trillion Btu
## 296 Total Energy Consumed by the Residential Sector Trillion Btu
## 297 Total Energy Consumed by the Residential Sector Trillion Btu
## 298 Total Energy Consumed by the Residential Sector Trillion Btu
## 299 Total Energy Consumed by the Residential Sector Trillion Btu
## 300 Total Energy Consumed by the Residential Sector Trillion Btu
## 301 Total Energy Consumed by the Residential Sector Trillion Btu
## 302 Total Energy Consumed by the Residential Sector Trillion Btu
## 303 Total Energy Consumed by the Residential Sector Trillion Btu
## 304 Total Energy Consumed by the Residential Sector Trillion Btu
## 305 Total Energy Consumed by the Residential Sector Trillion Btu
## 306 Total Energy Consumed by the Residential Sector Trillion Btu
## 307 Total Energy Consumed by the Residential Sector Trillion Btu
## 308 Total Energy Consumed by the Residential Sector Trillion Btu
## 309 Total Energy Consumed by the Residential Sector Trillion Btu
## 310 Total Energy Consumed by the Residential Sector Trillion Btu
## 311 Total Energy Consumed by the Commercial Sector Trillion Btu
## 312 Total Energy Consumed by the Commercial Sector Trillion Btu
## 313 Total Energy Consumed by the Commercial Sector Trillion Btu
## 314 Total Energy Consumed by the Commercial Sector Trillion Btu
## 315 Total Energy Consumed by the Commercial Sector Trillion Btu
## 316 Total Energy Consumed by the Commercial Sector Trillion Btu
## 317 Total Energy Consumed by the Commercial Sector Trillion Btu
## 318 Total Energy Consumed by the Commercial Sector Trillion Btu
## 319 Total Energy Consumed by the Commercial Sector Trillion Btu
## 320 Total Energy Consumed by the Commercial Sector Trillion Btu
## 321 Total Energy Consumed by the Commercial Sector Trillion Btu
## 322 Total Energy Consumed by the Commercial Sector Trillion Btu
## 323 Total Energy Consumed by the Commercial Sector Trillion Btu
## 324 Total Energy Consumed by the Commercial Sector Trillion Btu
## 325 Total Energy Consumed by the Commercial Sector Trillion Btu
## 326 Total Energy Consumed by the Commercial Sector Trillion Btu
## 327 Total Energy Consumed by the Commercial Sector Trillion Btu
## 328 Total Energy Consumed by the Commercial Sector Trillion Btu
## 329 Total Energy Consumed by the Commercial Sector Trillion Btu
## 330 Total Energy Consumed by the Commercial Sector Trillion Btu
## 331 Total Energy Consumed by the Commercial Sector Trillion Btu
## 332 Total Energy Consumed by the Commercial Sector Trillion Btu
## 333 Total Energy Consumed by the Commercial Sector Trillion Btu
## 334 Total Energy Consumed by the Commercial Sector Trillion Btu
## 335 Total Energy Consumed by the Commercial Sector Trillion Btu
## 336 Total Energy Consumed by the Commercial Sector Trillion Btu
## 337 Total Energy Consumed by the Commercial Sector Trillion Btu
## 338 Total Energy Consumed by the Commercial Sector Trillion Btu
## 339 Total Energy Consumed by the Commercial Sector Trillion Btu
## 340 Total Energy Consumed by the Commercial Sector Trillion Btu
## 341 Total Energy Consumed by the Commercial Sector Trillion Btu
## 342 Total Energy Consumed by the Commercial Sector Trillion Btu
## 343 Total Energy Consumed by the Commercial Sector Trillion Btu
## 344 Total Energy Consumed by the Commercial Sector Trillion Btu
## 345 Total Energy Consumed by the Commercial Sector Trillion Btu
## 346 Total Energy Consumed by the Commercial Sector Trillion Btu
## 347 Total Energy Consumed by the Commercial Sector Trillion Btu
## 348 Total Energy Consumed by the Commercial Sector Trillion Btu
## 349 Total Energy Consumed by the Commercial Sector Trillion Btu
## 350 Total Energy Consumed by the Commercial Sector Trillion Btu
## 351 Total Energy Consumed by the Commercial Sector Trillion Btu
## 352 Total Energy Consumed by the Commercial Sector Trillion Btu
## 353 Total Energy Consumed by the Commercial Sector Trillion Btu
## 354 Total Energy Consumed by the Commercial Sector Trillion Btu
## 355 Total Energy Consumed by the Commercial Sector Trillion Btu
## 356 Total Energy Consumed by the Commercial Sector Trillion Btu
## 357 Total Energy Consumed by the Commercial Sector Trillion Btu
## 358 Total Energy Consumed by the Commercial Sector Trillion Btu
## 359 Total Energy Consumed by the Commercial Sector Trillion Btu
## 360 Total Energy Consumed by the Commercial Sector Trillion Btu
## 361 Total Energy Consumed by the Commercial Sector Trillion Btu
## 362 Total Energy Consumed by the Commercial Sector Trillion Btu
## 363 Total Energy Consumed by the Commercial Sector Trillion Btu
## 364 Total Energy Consumed by the Commercial Sector Trillion Btu
## 365 Total Energy Consumed by the Commercial Sector Trillion Btu
## 366 Total Energy Consumed by the Commercial Sector Trillion Btu
## 367 Total Energy Consumed by the Commercial Sector Trillion Btu
## 368 Total Energy Consumed by the Commercial Sector Trillion Btu
## 369 Total Energy Consumed by the Commercial Sector Trillion Btu
## 370 Total Energy Consumed by the Commercial Sector Trillion Btu
## 371 Total Energy Consumed by the Commercial Sector Trillion Btu
## 372 Total Energy Consumed by the Commercial Sector Trillion Btu
## 373 Total Energy Consumed by the Commercial Sector Trillion Btu
## 374 Total Energy Consumed by the Commercial Sector Trillion Btu
## 375 Total Energy Consumed by the Commercial Sector Trillion Btu
## 376 Total Energy Consumed by the Commercial Sector Trillion Btu
## 377 Total Energy Consumed by the Commercial Sector Trillion Btu
## 378 Total Energy Consumed by the Commercial Sector Trillion Btu
## 379 Total Energy Consumed by the Commercial Sector Trillion Btu
## 380 Total Energy Consumed by the Commercial Sector Trillion Btu
## 381 Total Energy Consumed by the Commercial Sector Trillion Btu
## 382 Total Energy Consumed by the Commercial Sector Trillion Btu
## 383 Total Energy Consumed by the Commercial Sector Trillion Btu
## 384 Total Energy Consumed by the Commercial Sector Trillion Btu
## 385 Total Energy Consumed by the Commercial Sector Trillion Btu
## 386 Total Energy Consumed by the Commercial Sector Trillion Btu
## 387 Total Energy Consumed by the Commercial Sector Trillion Btu
## 388 Total Energy Consumed by the Commercial Sector Trillion Btu
## 389 Total Energy Consumed by the Commercial Sector Trillion Btu
## 390 Total Energy Consumed by the Commercial Sector Trillion Btu
## 391 Total Energy Consumed by the Commercial Sector Trillion Btu
## 392 Total Energy Consumed by the Commercial Sector Trillion Btu
## 393 Total Energy Consumed by the Commercial Sector Trillion Btu
## 394 Total Energy Consumed by the Commercial Sector Trillion Btu
## 395 Total Energy Consumed by the Commercial Sector Trillion Btu
## 396 Total Energy Consumed by the Commercial Sector Trillion Btu
## 397 Total Energy Consumed by the Commercial Sector Trillion Btu
## 398 Total Energy Consumed by the Commercial Sector Trillion Btu
## 399 Total Energy Consumed by the Commercial Sector Trillion Btu
## 400 Total Energy Consumed by the Commercial Sector Trillion Btu
## 401 Total Energy Consumed by the Commercial Sector Trillion Btu
## 402 Total Energy Consumed by the Commercial Sector Trillion Btu
## 403 Total Energy Consumed by the Commercial Sector Trillion Btu
## 404 Total Energy Consumed by the Commercial Sector Trillion Btu
## 405 Total Energy Consumed by the Commercial Sector Trillion Btu
## 406 Total Energy Consumed by the Commercial Sector Trillion Btu
## 407 Total Energy Consumed by the Commercial Sector Trillion Btu
## 408 Total Energy Consumed by the Commercial Sector Trillion Btu
## 409 Total Energy Consumed by the Commercial Sector Trillion Btu
## 410 Total Energy Consumed by the Commercial Sector Trillion Btu
## 411 Total Energy Consumed by the Commercial Sector Trillion Btu
## 412 Total Energy Consumed by the Commercial Sector Trillion Btu
## 413 Total Energy Consumed by the Commercial Sector Trillion Btu
## 414 Total Energy Consumed by the Commercial Sector Trillion Btu
## 415 Total Energy Consumed by the Commercial Sector Trillion Btu
## 416 Total Energy Consumed by the Commercial Sector Trillion Btu
## 417 Total Energy Consumed by the Commercial Sector Trillion Btu
## 418 Total Energy Consumed by the Commercial Sector Trillion Btu
## 419 Total Energy Consumed by the Commercial Sector Trillion Btu
## 420 Total Energy Consumed by the Commercial Sector Trillion Btu
## 421 Total Energy Consumed by the Commercial Sector Trillion Btu
## 422 Total Energy Consumed by the Commercial Sector Trillion Btu
## 423 Total Energy Consumed by the Commercial Sector Trillion Btu
## 424 Total Energy Consumed by the Commercial Sector Trillion Btu
## 425 Total Energy Consumed by the Commercial Sector Trillion Btu
## 426 Total Energy Consumed by the Commercial Sector Trillion Btu
## 427 Total Energy Consumed by the Commercial Sector Trillion Btu
## 428 Total Energy Consumed by the Commercial Sector Trillion Btu
## 429 Total Energy Consumed by the Commercial Sector Trillion Btu
## 430 Total Energy Consumed by the Commercial Sector Trillion Btu
## 431 Total Energy Consumed by the Commercial Sector Trillion Btu
## 432 Total Energy Consumed by the Commercial Sector Trillion Btu
## 433 Total Energy Consumed by the Commercial Sector Trillion Btu
## 434 Total Energy Consumed by the Commercial Sector Trillion Btu
## 435 Total Energy Consumed by the Commercial Sector Trillion Btu
## 436 Total Energy Consumed by the Commercial Sector Trillion Btu
## 437 Total Energy Consumed by the Commercial Sector Trillion Btu
## 438 Total Energy Consumed by the Commercial Sector Trillion Btu
## 439 Total Energy Consumed by the Commercial Sector Trillion Btu
## 440 Total Energy Consumed by the Commercial Sector Trillion Btu
## 441 Total Energy Consumed by the Commercial Sector Trillion Btu
## 442 Total Energy Consumed by the Commercial Sector Trillion Btu
## 443 Total Energy Consumed by the Commercial Sector Trillion Btu
## 444 Total Energy Consumed by the Commercial Sector Trillion Btu
## 445 Total Energy Consumed by the Commercial Sector Trillion Btu
## 446 Total Energy Consumed by the Commercial Sector Trillion Btu
## 447 Total Energy Consumed by the Commercial Sector Trillion Btu
## 448 Total Energy Consumed by the Commercial Sector Trillion Btu
## 449 Total Energy Consumed by the Commercial Sector Trillion Btu
## 450 Total Energy Consumed by the Commercial Sector Trillion Btu
## 451 Total Energy Consumed by the Commercial Sector Trillion Btu
## 452 Total Energy Consumed by the Commercial Sector Trillion Btu
## 453 Total Energy Consumed by the Commercial Sector Trillion Btu
## 454 Total Energy Consumed by the Commercial Sector Trillion Btu
## 455 Total Energy Consumed by the Commercial Sector Trillion Btu
## 456 Total Energy Consumed by the Commercial Sector Trillion Btu
## 457 Total Energy Consumed by the Commercial Sector Trillion Btu
## 458 Total Energy Consumed by the Commercial Sector Trillion Btu
## 459 Total Energy Consumed by the Commercial Sector Trillion Btu
## 460 Total Energy Consumed by the Commercial Sector Trillion Btu
## 461 Total Energy Consumed by the Commercial Sector Trillion Btu
## 462 Total Energy Consumed by the Commercial Sector Trillion Btu
## 463 Total Energy Consumed by the Commercial Sector Trillion Btu
## 464 Total Energy Consumed by the Commercial Sector Trillion Btu
## 465 Total Energy Consumed by the Commercial Sector Trillion Btu
## 466 Total Energy Consumed by the Commercial Sector Trillion Btu
## 467 Total Energy Consumed by the Commercial Sector Trillion Btu
## 468 Total Energy Consumed by the Commercial Sector Trillion Btu
## 469 Total Energy Consumed by the Commercial Sector Trillion Btu
## 470 Total Energy Consumed by the Commercial Sector Trillion Btu
## 471 Total Energy Consumed by the Commercial Sector Trillion Btu
## 472 Total Energy Consumed by the Commercial Sector Trillion Btu
## 473 Total Energy Consumed by the Commercial Sector Trillion Btu
## 474 Total Energy Consumed by the Commercial Sector Trillion Btu
## 475 Total Energy Consumed by the Commercial Sector Trillion Btu
## 476 Total Energy Consumed by the Commercial Sector Trillion Btu
## 477 Total Energy Consumed by the Commercial Sector Trillion Btu
## 478 Total Energy Consumed by the Commercial Sector Trillion Btu
## 479 Total Energy Consumed by the Commercial Sector Trillion Btu
## 480 Total Energy Consumed by the Commercial Sector Trillion Btu
## 481 Total Energy Consumed by the Commercial Sector Trillion Btu
## 482 Total Energy Consumed by the Commercial Sector Trillion Btu
## 483 Total Energy Consumed by the Commercial Sector Trillion Btu
## 484 Total Energy Consumed by the Commercial Sector Trillion Btu
## 485 Total Energy Consumed by the Commercial Sector Trillion Btu
## 486 Total Energy Consumed by the Commercial Sector Trillion Btu
## 487 Total Energy Consumed by the Commercial Sector Trillion Btu
## 488 Total Energy Consumed by the Commercial Sector Trillion Btu
## 489 Total Energy Consumed by the Commercial Sector Trillion Btu
## 490 Total Energy Consumed by the Commercial Sector Trillion Btu
## 491 Total Energy Consumed by the Commercial Sector Trillion Btu
## 492 Total Energy Consumed by the Commercial Sector Trillion Btu
## 493 Total Energy Consumed by the Commercial Sector Trillion Btu
## 494 Total Energy Consumed by the Commercial Sector Trillion Btu
## 495 Total Energy Consumed by the Commercial Sector Trillion Btu
## 496 Total Energy Consumed by the Commercial Sector Trillion Btu
## 497 Total Energy Consumed by the Commercial Sector Trillion Btu
## 498 Total Energy Consumed by the Commercial Sector Trillion Btu
## 499 Total Energy Consumed by the Commercial Sector Trillion Btu
## 500 Total Energy Consumed by the Commercial Sector Trillion Btu
## 501 Total Energy Consumed by the Commercial Sector Trillion Btu
## 502 Total Energy Consumed by the Commercial Sector Trillion Btu
## 503 Total Energy Consumed by the Commercial Sector Trillion Btu
## 504 Total Energy Consumed by the Commercial Sector Trillion Btu
## 505 Total Energy Consumed by the Commercial Sector Trillion Btu
## 506 Total Energy Consumed by the Commercial Sector Trillion Btu
## 507 Total Energy Consumed by the Commercial Sector Trillion Btu
## 508 Total Energy Consumed by the Commercial Sector Trillion Btu
## 509 Total Energy Consumed by the Commercial Sector Trillion Btu
## 510 Total Energy Consumed by the Commercial Sector Trillion Btu
## 511 Total Energy Consumed by the Commercial Sector Trillion Btu
## 512 Total Energy Consumed by the Commercial Sector Trillion Btu
## 513 Total Energy Consumed by the Commercial Sector Trillion Btu
## 514 Total Energy Consumed by the Commercial Sector Trillion Btu
## 515 Total Energy Consumed by the Commercial Sector Trillion Btu
## 516 Total Energy Consumed by the Commercial Sector Trillion Btu
## 517 Total Energy Consumed by the Commercial Sector Trillion Btu
## 518 Total Energy Consumed by the Commercial Sector Trillion Btu
## 519 Total Energy Consumed by the Commercial Sector Trillion Btu
## 520 Total Energy Consumed by the Commercial Sector Trillion Btu
## 521 Total Energy Consumed by the Commercial Sector Trillion Btu
## 522 Total Energy Consumed by the Commercial Sector Trillion Btu
## 523 Total Energy Consumed by the Commercial Sector Trillion Btu
## 524 Total Energy Consumed by the Commercial Sector Trillion Btu
## 525 Total Energy Consumed by the Commercial Sector Trillion Btu
## 526 Total Energy Consumed by the Commercial Sector Trillion Btu
## 527 Total Energy Consumed by the Commercial Sector Trillion Btu
## 528 Total Energy Consumed by the Commercial Sector Trillion Btu
## 529 Total Energy Consumed by the Commercial Sector Trillion Btu
## 530 Total Energy Consumed by the Commercial Sector Trillion Btu
## 531 Total Energy Consumed by the Commercial Sector Trillion Btu
## 532 Total Energy Consumed by the Commercial Sector Trillion Btu
## 533 Total Energy Consumed by the Commercial Sector Trillion Btu
## 534 Total Energy Consumed by the Commercial Sector Trillion Btu
## 535 Total Energy Consumed by the Commercial Sector Trillion Btu
## 536 Total Energy Consumed by the Commercial Sector Trillion Btu
## 537 Total Energy Consumed by the Commercial Sector Trillion Btu
## 538 Total Energy Consumed by the Commercial Sector Trillion Btu
## 539 Total Energy Consumed by the Commercial Sector Trillion Btu
## 540 Total Energy Consumed by the Commercial Sector Trillion Btu
## 541 Total Energy Consumed by the Commercial Sector Trillion Btu
## 542 Total Energy Consumed by the Commercial Sector Trillion Btu
## 543 Total Energy Consumed by the Commercial Sector Trillion Btu
## 544 Total Energy Consumed by the Commercial Sector Trillion Btu
## 545 Total Energy Consumed by the Commercial Sector Trillion Btu
## 546 Total Energy Consumed by the Commercial Sector Trillion Btu
## 547 Total Energy Consumed by the Commercial Sector Trillion Btu
## 548 Total Energy Consumed by the Commercial Sector Trillion Btu
## 549 Total Energy Consumed by the Commercial Sector Trillion Btu
## 550 Total Energy Consumed by the Commercial Sector Trillion Btu
## 551 Total Energy Consumed by the Commercial Sector Trillion Btu
## 552 Total Energy Consumed by the Commercial Sector Trillion Btu
## 553 Total Energy Consumed by the Commercial Sector Trillion Btu
## 554 Total Energy Consumed by the Commercial Sector Trillion Btu
## 555 Total Energy Consumed by the Commercial Sector Trillion Btu
## 556 Total Energy Consumed by the Commercial Sector Trillion Btu
## 557 Total Energy Consumed by the Commercial Sector Trillion Btu
## 558 Total Energy Consumed by the Commercial Sector Trillion Btu
## 559 Total Energy Consumed by the Commercial Sector Trillion Btu
## 560 Total Energy Consumed by the Commercial Sector Trillion Btu
## 561 Total Energy Consumed by the Commercial Sector Trillion Btu
## 562 Total Energy Consumed by the Commercial Sector Trillion Btu
## 563 Total Energy Consumed by the Commercial Sector Trillion Btu
## 564 Total Energy Consumed by the Commercial Sector Trillion Btu
## 565 Total Energy Consumed by the Commercial Sector Trillion Btu
## 566 Total Energy Consumed by the Commercial Sector Trillion Btu
## 567 Total Energy Consumed by the Commercial Sector Trillion Btu
## 568 Total Energy Consumed by the Commercial Sector Trillion Btu
## 569 Total Energy Consumed by the Commercial Sector Trillion Btu
## 570 Total Energy Consumed by the Commercial Sector Trillion Btu
## 571 Total Energy Consumed by the Commercial Sector Trillion Btu
## 572 Total Energy Consumed by the Commercial Sector Trillion Btu
## 573 Total Energy Consumed by the Commercial Sector Trillion Btu
## 574 Total Energy Consumed by the Commercial Sector Trillion Btu
## 575 Total Energy Consumed by the Commercial Sector Trillion Btu
## 576 Total Energy Consumed by the Commercial Sector Trillion Btu
## 577 Total Energy Consumed by the Commercial Sector Trillion Btu
## 578 Total Energy Consumed by the Commercial Sector Trillion Btu
## 579 Total Energy Consumed by the Commercial Sector Trillion Btu
## 580 Total Energy Consumed by the Commercial Sector Trillion Btu
## 581 Total Energy Consumed by the Commercial Sector Trillion Btu
## 582 Total Energy Consumed by the Commercial Sector Trillion Btu
## 583 Total Energy Consumed by the Commercial Sector Trillion Btu
## 584 Total Energy Consumed by the Commercial Sector Trillion Btu
## 585 Total Energy Consumed by the Commercial Sector Trillion Btu
## 586 Total Energy Consumed by the Commercial Sector Trillion Btu
## 587 Total Energy Consumed by the Commercial Sector Trillion Btu
## 588 Total Energy Consumed by the Commercial Sector Trillion Btu
## 589 Total Energy Consumed by the Commercial Sector Trillion Btu
## 590 Total Energy Consumed by the Commercial Sector Trillion Btu
## 591 Total Energy Consumed by the Commercial Sector Trillion Btu
## 592 Total Energy Consumed by the Commercial Sector Trillion Btu
## 593 Total Energy Consumed by the Commercial Sector Trillion Btu
## 594 Total Energy Consumed by the Commercial Sector Trillion Btu
## 595 Total Energy Consumed by the Commercial Sector Trillion Btu
## 596 Total Energy Consumed by the Commercial Sector Trillion Btu
## 597 Total Energy Consumed by the Commercial Sector Trillion Btu
## 598 Total Energy Consumed by the Commercial Sector Trillion Btu
## 599 Total Energy Consumed by the Commercial Sector Trillion Btu
## 600 Total Energy Consumed by the Commercial Sector Trillion Btu
## 601 Total Energy Consumed by the Commercial Sector Trillion Btu
## 602 Total Energy Consumed by the Commercial Sector Trillion Btu
## 603 Total Energy Consumed by the Commercial Sector Trillion Btu
## 604 Total Energy Consumed by the Commercial Sector Trillion Btu
## 605 Total Energy Consumed by the Commercial Sector Trillion Btu
## 606 Total Energy Consumed by the Commercial Sector Trillion Btu
## 607 Total Energy Consumed by the Commercial Sector Trillion Btu
## 608 Total Energy Consumed by the Commercial Sector Trillion Btu
## 609 Total Energy Consumed by the Commercial Sector Trillion Btu
## 610 Total Energy Consumed by the Commercial Sector Trillion Btu
## 611 Total Energy Consumed by the Commercial Sector Trillion Btu
## 612 Total Energy Consumed by the Commercial Sector Trillion Btu
## 613 Total Energy Consumed by the Commercial Sector Trillion Btu
## 614 Total Energy Consumed by the Commercial Sector Trillion Btu
## 615 Total Energy Consumed by the Commercial Sector Trillion Btu
## 616 Total Energy Consumed by the Commercial Sector Trillion Btu
## 617 Total Energy Consumed by the Commercial Sector Trillion Btu
## 618 Total Energy Consumed by the Commercial Sector Trillion Btu
## 619 Total Energy Consumed by the Commercial Sector Trillion Btu
## 620 Total Energy Consumed by the Commercial Sector Trillion Btu
## 621 Total Energy Consumed by the Industrial Sector Trillion Btu
## 622 Total Energy Consumed by the Industrial Sector Trillion Btu
## 623 Total Energy Consumed by the Industrial Sector Trillion Btu
## 624 Total Energy Consumed by the Industrial Sector Trillion Btu
## 625 Total Energy Consumed by the Industrial Sector Trillion Btu
## 626 Total Energy Consumed by the Industrial Sector Trillion Btu
## 627 Total Energy Consumed by the Industrial Sector Trillion Btu
## 628 Total Energy Consumed by the Industrial Sector Trillion Btu
## 629 Total Energy Consumed by the Industrial Sector Trillion Btu
## 630 Total Energy Consumed by the Industrial Sector Trillion Btu
## 631 Total Energy Consumed by the Industrial Sector Trillion Btu
## 632 Total Energy Consumed by the Industrial Sector Trillion Btu
## 633 Total Energy Consumed by the Industrial Sector Trillion Btu
## 634 Total Energy Consumed by the Industrial Sector Trillion Btu
## 635 Total Energy Consumed by the Industrial Sector Trillion Btu
## 636 Total Energy Consumed by the Industrial Sector Trillion Btu
## 637 Total Energy Consumed by the Industrial Sector Trillion Btu
## 638 Total Energy Consumed by the Industrial Sector Trillion Btu
## 639 Total Energy Consumed by the Industrial Sector Trillion Btu
## 640 Total Energy Consumed by the Industrial Sector Trillion Btu
## 641 Total Energy Consumed by the Industrial Sector Trillion Btu
## 642 Total Energy Consumed by the Industrial Sector Trillion Btu
## 643 Total Energy Consumed by the Industrial Sector Trillion Btu
## 644 Total Energy Consumed by the Industrial Sector Trillion Btu
## 645 Total Energy Consumed by the Industrial Sector Trillion Btu
## 646 Total Energy Consumed by the Industrial Sector Trillion Btu
## 647 Total Energy Consumed by the Industrial Sector Trillion Btu
## 648 Total Energy Consumed by the Industrial Sector Trillion Btu
## 649 Total Energy Consumed by the Industrial Sector Trillion Btu
## 650 Total Energy Consumed by the Industrial Sector Trillion Btu
## 651 Total Energy Consumed by the Industrial Sector Trillion Btu
## 652 Total Energy Consumed by the Industrial Sector Trillion Btu
## 653 Total Energy Consumed by the Industrial Sector Trillion Btu
## 654 Total Energy Consumed by the Industrial Sector Trillion Btu
## 655 Total Energy Consumed by the Industrial Sector Trillion Btu
## 656 Total Energy Consumed by the Industrial Sector Trillion Btu
## 657 Total Energy Consumed by the Industrial Sector Trillion Btu
## 658 Total Energy Consumed by the Industrial Sector Trillion Btu
## 659 Total Energy Consumed by the Industrial Sector Trillion Btu
## 660 Total Energy Consumed by the Industrial Sector Trillion Btu
## 661 Total Energy Consumed by the Industrial Sector Trillion Btu
## 662 Total Energy Consumed by the Industrial Sector Trillion Btu
## 663 Total Energy Consumed by the Industrial Sector Trillion Btu
## 664 Total Energy Consumed by the Industrial Sector Trillion Btu
## 665 Total Energy Consumed by the Industrial Sector Trillion Btu
## 666 Total Energy Consumed by the Industrial Sector Trillion Btu
## 667 Total Energy Consumed by the Industrial Sector Trillion Btu
## 668 Total Energy Consumed by the Industrial Sector Trillion Btu
## 669 Total Energy Consumed by the Industrial Sector Trillion Btu
## 670 Total Energy Consumed by the Industrial Sector Trillion Btu
## 671 Total Energy Consumed by the Industrial Sector Trillion Btu
## 672 Total Energy Consumed by the Industrial Sector Trillion Btu
## 673 Total Energy Consumed by the Industrial Sector Trillion Btu
## 674 Total Energy Consumed by the Industrial Sector Trillion Btu
## 675 Total Energy Consumed by the Industrial Sector Trillion Btu
## 676 Total Energy Consumed by the Industrial Sector Trillion Btu
## 677 Total Energy Consumed by the Industrial Sector Trillion Btu
## 678 Total Energy Consumed by the Industrial Sector Trillion Btu
## 679 Total Energy Consumed by the Industrial Sector Trillion Btu
## 680 Total Energy Consumed by the Industrial Sector Trillion Btu
## 681 Total Energy Consumed by the Industrial Sector Trillion Btu
## 682 Total Energy Consumed by the Industrial Sector Trillion Btu
## 683 Total Energy Consumed by the Industrial Sector Trillion Btu
## 684 Total Energy Consumed by the Industrial Sector Trillion Btu
## 685 Total Energy Consumed by the Industrial Sector Trillion Btu
## 686 Total Energy Consumed by the Industrial Sector Trillion Btu
## 687 Total Energy Consumed by the Industrial Sector Trillion Btu
## 688 Total Energy Consumed by the Industrial Sector Trillion Btu
## 689 Total Energy Consumed by the Industrial Sector Trillion Btu
## 690 Total Energy Consumed by the Industrial Sector Trillion Btu
## 691 Total Energy Consumed by the Industrial Sector Trillion Btu
## 692 Total Energy Consumed by the Industrial Sector Trillion Btu
## 693 Total Energy Consumed by the Industrial Sector Trillion Btu
## 694 Total Energy Consumed by the Industrial Sector Trillion Btu
## 695 Total Energy Consumed by the Industrial Sector Trillion Btu
## 696 Total Energy Consumed by the Industrial Sector Trillion Btu
## 697 Total Energy Consumed by the Industrial Sector Trillion Btu
## 698 Total Energy Consumed by the Industrial Sector Trillion Btu
## 699 Total Energy Consumed by the Industrial Sector Trillion Btu
## 700 Total Energy Consumed by the Industrial Sector Trillion Btu
## 701 Total Energy Consumed by the Industrial Sector Trillion Btu
## 702 Total Energy Consumed by the Industrial Sector Trillion Btu
## 703 Total Energy Consumed by the Industrial Sector Trillion Btu
## 704 Total Energy Consumed by the Industrial Sector Trillion Btu
## 705 Total Energy Consumed by the Industrial Sector Trillion Btu
## 706 Total Energy Consumed by the Industrial Sector Trillion Btu
## 707 Total Energy Consumed by the Industrial Sector Trillion Btu
## 708 Total Energy Consumed by the Industrial Sector Trillion Btu
## 709 Total Energy Consumed by the Industrial Sector Trillion Btu
## 710 Total Energy Consumed by the Industrial Sector Trillion Btu
## 711 Total Energy Consumed by the Industrial Sector Trillion Btu
## 712 Total Energy Consumed by the Industrial Sector Trillion Btu
## 713 Total Energy Consumed by the Industrial Sector Trillion Btu
## 714 Total Energy Consumed by the Industrial Sector Trillion Btu
## 715 Total Energy Consumed by the Industrial Sector Trillion Btu
## 716 Total Energy Consumed by the Industrial Sector Trillion Btu
## 717 Total Energy Consumed by the Industrial Sector Trillion Btu
## 718 Total Energy Consumed by the Industrial Sector Trillion Btu
## 719 Total Energy Consumed by the Industrial Sector Trillion Btu
## 720 Total Energy Consumed by the Industrial Sector Trillion Btu
## 721 Total Energy Consumed by the Industrial Sector Trillion Btu
## 722 Total Energy Consumed by the Industrial Sector Trillion Btu
## 723 Total Energy Consumed by the Industrial Sector Trillion Btu
## 724 Total Energy Consumed by the Industrial Sector Trillion Btu
## 725 Total Energy Consumed by the Industrial Sector Trillion Btu
## 726 Total Energy Consumed by the Industrial Sector Trillion Btu
## 727 Total Energy Consumed by the Industrial Sector Trillion Btu
## 728 Total Energy Consumed by the Industrial Sector Trillion Btu
## 729 Total Energy Consumed by the Industrial Sector Trillion Btu
## 730 Total Energy Consumed by the Industrial Sector Trillion Btu
## 731 Total Energy Consumed by the Industrial Sector Trillion Btu
## 732 Total Energy Consumed by the Industrial Sector Trillion Btu
## 733 Total Energy Consumed by the Industrial Sector Trillion Btu
## 734 Total Energy Consumed by the Industrial Sector Trillion Btu
## 735 Total Energy Consumed by the Industrial Sector Trillion Btu
## 736 Total Energy Consumed by the Industrial Sector Trillion Btu
## 737 Total Energy Consumed by the Industrial Sector Trillion Btu
## 738 Total Energy Consumed by the Industrial Sector Trillion Btu
## 739 Total Energy Consumed by the Industrial Sector Trillion Btu
## 740 Total Energy Consumed by the Industrial Sector Trillion Btu
## 741 Total Energy Consumed by the Industrial Sector Trillion Btu
## 742 Total Energy Consumed by the Industrial Sector Trillion Btu
## 743 Total Energy Consumed by the Industrial Sector Trillion Btu
## 744 Total Energy Consumed by the Industrial Sector Trillion Btu
## 745 Total Energy Consumed by the Industrial Sector Trillion Btu
## 746 Total Energy Consumed by the Industrial Sector Trillion Btu
## 747 Total Energy Consumed by the Industrial Sector Trillion Btu
## 748 Total Energy Consumed by the Industrial Sector Trillion Btu
## 749 Total Energy Consumed by the Industrial Sector Trillion Btu
## 750 Total Energy Consumed by the Industrial Sector Trillion Btu
## 751 Total Energy Consumed by the Industrial Sector Trillion Btu
## 752 Total Energy Consumed by the Industrial Sector Trillion Btu
## 753 Total Energy Consumed by the Industrial Sector Trillion Btu
## 754 Total Energy Consumed by the Industrial Sector Trillion Btu
## 755 Total Energy Consumed by the Industrial Sector Trillion Btu
## 756 Total Energy Consumed by the Industrial Sector Trillion Btu
## 757 Total Energy Consumed by the Industrial Sector Trillion Btu
## 758 Total Energy Consumed by the Industrial Sector Trillion Btu
## 759 Total Energy Consumed by the Industrial Sector Trillion Btu
## 760 Total Energy Consumed by the Industrial Sector Trillion Btu
## 761 Total Energy Consumed by the Industrial Sector Trillion Btu
## 762 Total Energy Consumed by the Industrial Sector Trillion Btu
## 763 Total Energy Consumed by the Industrial Sector Trillion Btu
## 764 Total Energy Consumed by the Industrial Sector Trillion Btu
## 765 Total Energy Consumed by the Industrial Sector Trillion Btu
## 766 Total Energy Consumed by the Industrial Sector Trillion Btu
## 767 Total Energy Consumed by the Industrial Sector Trillion Btu
## 768 Total Energy Consumed by the Industrial Sector Trillion Btu
## 769 Total Energy Consumed by the Industrial Sector Trillion Btu
## 770 Total Energy Consumed by the Industrial Sector Trillion Btu
## 771 Total Energy Consumed by the Industrial Sector Trillion Btu
## 772 Total Energy Consumed by the Industrial Sector Trillion Btu
## 773 Total Energy Consumed by the Industrial Sector Trillion Btu
## 774 Total Energy Consumed by the Industrial Sector Trillion Btu
## 775 Total Energy Consumed by the Industrial Sector Trillion Btu
## 776 Total Energy Consumed by the Industrial Sector Trillion Btu
## 777 Total Energy Consumed by the Industrial Sector Trillion Btu
## 778 Total Energy Consumed by the Industrial Sector Trillion Btu
## 779 Total Energy Consumed by the Industrial Sector Trillion Btu
## 780 Total Energy Consumed by the Industrial Sector Trillion Btu
## 781 Total Energy Consumed by the Industrial Sector Trillion Btu
## 782 Total Energy Consumed by the Industrial Sector Trillion Btu
## 783 Total Energy Consumed by the Industrial Sector Trillion Btu
## 784 Total Energy Consumed by the Industrial Sector Trillion Btu
## 785 Total Energy Consumed by the Industrial Sector Trillion Btu
## 786 Total Energy Consumed by the Industrial Sector Trillion Btu
## 787 Total Energy Consumed by the Industrial Sector Trillion Btu
## 788 Total Energy Consumed by the Industrial Sector Trillion Btu
## 789 Total Energy Consumed by the Industrial Sector Trillion Btu
## 790 Total Energy Consumed by the Industrial Sector Trillion Btu
## 791 Total Energy Consumed by the Industrial Sector Trillion Btu
## 792 Total Energy Consumed by the Industrial Sector Trillion Btu
## 793 Total Energy Consumed by the Industrial Sector Trillion Btu
## 794 Total Energy Consumed by the Industrial Sector Trillion Btu
## 795 Total Energy Consumed by the Industrial Sector Trillion Btu
## 796 Total Energy Consumed by the Industrial Sector Trillion Btu
## 797 Total Energy Consumed by the Industrial Sector Trillion Btu
## 798 Total Energy Consumed by the Industrial Sector Trillion Btu
## 799 Total Energy Consumed by the Industrial Sector Trillion Btu
## 800 Total Energy Consumed by the Industrial Sector Trillion Btu
## 801 Total Energy Consumed by the Industrial Sector Trillion Btu
## 802 Total Energy Consumed by the Industrial Sector Trillion Btu
## 803 Total Energy Consumed by the Industrial Sector Trillion Btu
## 804 Total Energy Consumed by the Industrial Sector Trillion Btu
## 805 Total Energy Consumed by the Industrial Sector Trillion Btu
## 806 Total Energy Consumed by the Industrial Sector Trillion Btu
## 807 Total Energy Consumed by the Industrial Sector Trillion Btu
## 808 Total Energy Consumed by the Industrial Sector Trillion Btu
## 809 Total Energy Consumed by the Industrial Sector Trillion Btu
## 810 Total Energy Consumed by the Industrial Sector Trillion Btu
## 811 Total Energy Consumed by the Industrial Sector Trillion Btu
## 812 Total Energy Consumed by the Industrial Sector Trillion Btu
## 813 Total Energy Consumed by the Industrial Sector Trillion Btu
## 814 Total Energy Consumed by the Industrial Sector Trillion Btu
## 815 Total Energy Consumed by the Industrial Sector Trillion Btu
## 816 Total Energy Consumed by the Industrial Sector Trillion Btu
## 817 Total Energy Consumed by the Industrial Sector Trillion Btu
## 818 Total Energy Consumed by the Industrial Sector Trillion Btu
## 819 Total Energy Consumed by the Industrial Sector Trillion Btu
## 820 Total Energy Consumed by the Industrial Sector Trillion Btu
## 821 Total Energy Consumed by the Industrial Sector Trillion Btu
## 822 Total Energy Consumed by the Industrial Sector Trillion Btu
## 823 Total Energy Consumed by the Industrial Sector Trillion Btu
## 824 Total Energy Consumed by the Industrial Sector Trillion Btu
## 825 Total Energy Consumed by the Industrial Sector Trillion Btu
## 826 Total Energy Consumed by the Industrial Sector Trillion Btu
## 827 Total Energy Consumed by the Industrial Sector Trillion Btu
## 828 Total Energy Consumed by the Industrial Sector Trillion Btu
## 829 Total Energy Consumed by the Industrial Sector Trillion Btu
## 830 Total Energy Consumed by the Industrial Sector Trillion Btu
## 831 Total Energy Consumed by the Industrial Sector Trillion Btu
## 832 Total Energy Consumed by the Industrial Sector Trillion Btu
## 833 Total Energy Consumed by the Industrial Sector Trillion Btu
## 834 Total Energy Consumed by the Industrial Sector Trillion Btu
## 835 Total Energy Consumed by the Industrial Sector Trillion Btu
## 836 Total Energy Consumed by the Industrial Sector Trillion Btu
## 837 Total Energy Consumed by the Industrial Sector Trillion Btu
## 838 Total Energy Consumed by the Industrial Sector Trillion Btu
## 839 Total Energy Consumed by the Industrial Sector Trillion Btu
## 840 Total Energy Consumed by the Industrial Sector Trillion Btu
## 841 Total Energy Consumed by the Industrial Sector Trillion Btu
## 842 Total Energy Consumed by the Industrial Sector Trillion Btu
## 843 Total Energy Consumed by the Industrial Sector Trillion Btu
## 844 Total Energy Consumed by the Industrial Sector Trillion Btu
## 845 Total Energy Consumed by the Industrial Sector Trillion Btu
## 846 Total Energy Consumed by the Industrial Sector Trillion Btu
## 847 Total Energy Consumed by the Industrial Sector Trillion Btu
## 848 Total Energy Consumed by the Industrial Sector Trillion Btu
## 849 Total Energy Consumed by the Industrial Sector Trillion Btu
## 850 Total Energy Consumed by the Industrial Sector Trillion Btu
## 851 Total Energy Consumed by the Industrial Sector Trillion Btu
## 852 Total Energy Consumed by the Industrial Sector Trillion Btu
## 853 Total Energy Consumed by the Industrial Sector Trillion Btu
## 854 Total Energy Consumed by the Industrial Sector Trillion Btu
## 855 Total Energy Consumed by the Industrial Sector Trillion Btu
## 856 Total Energy Consumed by the Industrial Sector Trillion Btu
## 857 Total Energy Consumed by the Industrial Sector Trillion Btu
## 858 Total Energy Consumed by the Industrial Sector Trillion Btu
## 859 Total Energy Consumed by the Industrial Sector Trillion Btu
## 860 Total Energy Consumed by the Industrial Sector Trillion Btu
## 861 Total Energy Consumed by the Industrial Sector Trillion Btu
## 862 Total Energy Consumed by the Industrial Sector Trillion Btu
## 863 Total Energy Consumed by the Industrial Sector Trillion Btu
## 864 Total Energy Consumed by the Industrial Sector Trillion Btu
## 865 Total Energy Consumed by the Industrial Sector Trillion Btu
## 866 Total Energy Consumed by the Industrial Sector Trillion Btu
## 867 Total Energy Consumed by the Industrial Sector Trillion Btu
## 868 Total Energy Consumed by the Industrial Sector Trillion Btu
## 869 Total Energy Consumed by the Industrial Sector Trillion Btu
## 870 Total Energy Consumed by the Industrial Sector Trillion Btu
## 871 Total Energy Consumed by the Industrial Sector Trillion Btu
## 872 Total Energy Consumed by the Industrial Sector Trillion Btu
## 873 Total Energy Consumed by the Industrial Sector Trillion Btu
## 874 Total Energy Consumed by the Industrial Sector Trillion Btu
## 875 Total Energy Consumed by the Industrial Sector Trillion Btu
## 876 Total Energy Consumed by the Industrial Sector Trillion Btu
## 877 Total Energy Consumed by the Industrial Sector Trillion Btu
## 878 Total Energy Consumed by the Industrial Sector Trillion Btu
## 879 Total Energy Consumed by the Industrial Sector Trillion Btu
## 880 Total Energy Consumed by the Industrial Sector Trillion Btu
## 881 Total Energy Consumed by the Industrial Sector Trillion Btu
## 882 Total Energy Consumed by the Industrial Sector Trillion Btu
## 883 Total Energy Consumed by the Industrial Sector Trillion Btu
## 884 Total Energy Consumed by the Industrial Sector Trillion Btu
## 885 Total Energy Consumed by the Industrial Sector Trillion Btu
## 886 Total Energy Consumed by the Industrial Sector Trillion Btu
## 887 Total Energy Consumed by the Industrial Sector Trillion Btu
## 888 Total Energy Consumed by the Industrial Sector Trillion Btu
## 889 Total Energy Consumed by the Industrial Sector Trillion Btu
## 890 Total Energy Consumed by the Industrial Sector Trillion Btu
## 891 Total Energy Consumed by the Industrial Sector Trillion Btu
## 892 Total Energy Consumed by the Industrial Sector Trillion Btu
## 893 Total Energy Consumed by the Industrial Sector Trillion Btu
## 894 Total Energy Consumed by the Industrial Sector Trillion Btu
## 895 Total Energy Consumed by the Industrial Sector Trillion Btu
## 896 Total Energy Consumed by the Industrial Sector Trillion Btu
## 897 Total Energy Consumed by the Industrial Sector Trillion Btu
## 898 Total Energy Consumed by the Industrial Sector Trillion Btu
## 899 Total Energy Consumed by the Industrial Sector Trillion Btu
## 900 Total Energy Consumed by the Industrial Sector Trillion Btu
## 901 Total Energy Consumed by the Industrial Sector Trillion Btu
## 902 Total Energy Consumed by the Industrial Sector Trillion Btu
## 903 Total Energy Consumed by the Industrial Sector Trillion Btu
## 904 Total Energy Consumed by the Industrial Sector Trillion Btu
## 905 Total Energy Consumed by the Industrial Sector Trillion Btu
## 906 Total Energy Consumed by the Industrial Sector Trillion Btu
## 907 Total Energy Consumed by the Industrial Sector Trillion Btu
## 908 Total Energy Consumed by the Industrial Sector Trillion Btu
## 909 Total Energy Consumed by the Industrial Sector Trillion Btu
## 910 Total Energy Consumed by the Industrial Sector Trillion Btu
## 911 Total Energy Consumed by the Industrial Sector Trillion Btu
## 912 Total Energy Consumed by the Industrial Sector Trillion Btu
## 913 Total Energy Consumed by the Industrial Sector Trillion Btu
## 914 Total Energy Consumed by the Industrial Sector Trillion Btu
## 915 Total Energy Consumed by the Industrial Sector Trillion Btu
## 916 Total Energy Consumed by the Industrial Sector Trillion Btu
## 917 Total Energy Consumed by the Industrial Sector Trillion Btu
## 918 Total Energy Consumed by the Industrial Sector Trillion Btu
## 919 Total Energy Consumed by the Industrial Sector Trillion Btu
## 920 Total Energy Consumed by the Industrial Sector Trillion Btu
## 921 Total Energy Consumed by the Industrial Sector Trillion Btu
## 922 Total Energy Consumed by the Industrial Sector Trillion Btu
## 923 Total Energy Consumed by the Industrial Sector Trillion Btu
## 924 Total Energy Consumed by the Industrial Sector Trillion Btu
## 925 Total Energy Consumed by the Industrial Sector Trillion Btu
## 926 Total Energy Consumed by the Industrial Sector Trillion Btu
## 927 Total Energy Consumed by the Industrial Sector Trillion Btu
## 928 Total Energy Consumed by the Industrial Sector Trillion Btu
## 929 Total Energy Consumed by the Industrial Sector Trillion Btu
## 930 Total Energy Consumed by the Industrial Sector Trillion Btu
Here is a time line of the total energy consumed by three different sectors since 2000.
ggplot(homes2K, aes(x= YYYYMM, y= Value, color = Description))+
geom_line()
df_windows <- homes2K %>%
arrange(Description, YYYYMM) %>%
group_by(Description) %>%
mutate(
# Extract year from YYYYMM
Year = substr(as.character(YYYYMM), 1, 4),
) %>%
group_by(Description, Year) %>%
mutate(
# Year-to-date average: average of all values from start of year up to current row
ytd_avg = cummean(Value)
) %>%
group_by(Description) %>%
mutate(
# 6-month moving average: average of current + 5 previous rows
moving_avg_6 = zoo::rollmean(Value, k = 6, fill = NA, align = "right")
) %>%
ungroup()
df_windows %>%
select(Description, YYYYMM, Value, ytd_avg, moving_avg_6)
## # A tibble: 930 × 5
## Description YYYYMM Value ytd_avg moving_avg_6
## <chr> <int> <dbl> <dbl> <dbl>
## 1 Total Energy Consumed by the Commercial Se… 200001 1567. 1567. NA
## 2 Total Energy Consumed by the Commercial Se… 200002 1438. 1502. NA
## 3 Total Energy Consumed by the Commercial Se… 200003 1400. 1468. NA
## 4 Total Energy Consumed by the Commercial Se… 200004 1246. 1413. NA
## 5 Total Energy Consumed by the Commercial Se… 200005 1325. 1395. NA
## 6 Total Energy Consumed by the Commercial Se… 200006 1324. 1383. 1383.
## 7 Total Energy Consumed by the Commercial Se… 200007 1367. 1381. 1350.
## 8 Total Energy Consumed by the Commercial Se… 200008 1438. 1388. 1350.
## 9 Total Energy Consumed by the Commercial Se… 200009 1248. 1373. 1325.
## 10 Total Energy Consumed by the Commercial Se… 200010 1235. 1359. 1323.
## # ℹ 920 more rows