@cdc/chart 4.24.1 → 4.24.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/dist/cdcchart.js +48948 -37923
  2. package/examples/{private/combo.json → chart-regression-1.json} +40 -31
  3. package/examples/chart-regression-2.json +2360 -0
  4. package/examples/feature/filters/url-filter.json +1076 -0
  5. package/examples/feature/line/line-chart-preliminary.json +84 -37
  6. package/examples/feature/line/line-chart.json +2 -1
  7. package/examples/feature/regions/index.json +55 -5
  8. package/examples/feature/sankey/sankey-example-data.json +1364 -0
  9. package/examples/feature/sankey/sankey_chart_data.csv +20 -0
  10. package/examples/gallery/bar-chart-vertical/vertical-bar-chart-stacked.json +306 -19
  11. package/examples/sparkline.json +868 -0
  12. package/index.html +128 -121
  13. package/package.json +4 -2
  14. package/src/CdcChart.tsx +73 -38
  15. package/src/_stories/ChartEditor.stories.tsx +15 -4
  16. package/src/_stories/_mock/pie_config.json +4 -3
  17. package/src/_stories/_mock/url_filter.json +1076 -0
  18. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +2 -1
  19. package/src/components/AreaChart/components/AreaChart.jsx +2 -25
  20. package/src/components/BarChart/components/BarChart.Horizontal.tsx +39 -49
  21. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +36 -56
  22. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +36 -41
  23. package/src/components/BarChart/components/BarChart.Vertical.tsx +48 -64
  24. package/src/components/BoxPlot/BoxPlot.jsx +11 -9
  25. package/src/components/DeviationBar.jsx +3 -3
  26. package/src/components/EditorPanel/EditorPanel.tsx +1717 -1961
  27. package/src/components/EditorPanel/EditorPanelContext.ts +40 -0
  28. package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +148 -0
  29. package/src/components/EditorPanel/components/{Panel.ForestPlotSettings.tsx → Panels/Panel.ForestPlotSettings.tsx} +16 -7
  30. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +160 -0
  31. package/src/components/EditorPanel/components/{Panel.Regions.tsx → Panels/Panel.Regions.tsx} +6 -6
  32. package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +108 -0
  33. package/src/components/EditorPanel/components/{Panel.Series.tsx → Panels/Panel.Series.tsx} +50 -6
  34. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +338 -0
  35. package/src/components/EditorPanel/components/Panels/index.tsx +19 -0
  36. package/src/components/EditorPanel/components/panels.scss +11 -0
  37. package/src/components/EditorPanel/editor-panel.scss +1 -13
  38. package/src/components/EditorPanel/useEditorPermissions.js +44 -13
  39. package/src/components/Legend/Legend.Component.tsx +207 -0
  40. package/src/components/Legend/Legend.tsx +8 -327
  41. package/src/components/Legend/helpers/createFormatLabels.tsx +140 -0
  42. package/src/components/LineChart/LineChartProps.ts +2 -1
  43. package/src/components/LineChart/components/LineChart.Circle.tsx +85 -52
  44. package/src/components/LineChart/helpers.ts +3 -3
  45. package/src/components/LineChart/index.tsx +99 -23
  46. package/src/components/LinearChart.jsx +12 -33
  47. package/src/components/PairedBarChart.jsx +10 -12
  48. package/src/components/PieChart/PieChart.tsx +80 -27
  49. package/src/components/Regions/components/Regions.tsx +120 -69
  50. package/src/components/Sankey/index.tsx +434 -0
  51. package/src/components/Sankey/sankey.scss +153 -0
  52. package/src/components/Sankey/types/index.ts +16 -0
  53. package/src/components/ScatterPlot/ScatterPlot.jsx +1 -0
  54. package/src/components/Sparkline/{SparkLine.jsx → components/SparkLine.tsx} +14 -30
  55. package/src/components/Sparkline/index.scss +3 -0
  56. package/src/components/Sparkline/index.tsx +1 -1
  57. package/src/components/ZoomBrush.tsx +2 -1
  58. package/src/data/initial-state.js +51 -4
  59. package/src/helpers/computeMarginBottom.ts +4 -3
  60. package/src/helpers/tests/computeMarginBottom.test.ts +2 -1
  61. package/src/hooks/useBarChart.js +5 -2
  62. package/src/hooks/useHighlightedBars.js +1 -1
  63. package/src/hooks/useMinMax.ts +3 -3
  64. package/src/hooks/useScales.ts +28 -18
  65. package/src/hooks/useTooltip.tsx +19 -14
  66. package/src/scss/main.scss +8 -96
  67. package/src/types/ChartConfig.ts +47 -20
  68. package/src/types/ChartContext.ts +17 -4
  69. package/src/types/Label.ts +7 -0
  70. package/examples/private/chart-t.json +0 -3740
  71. package/examples/private/epi-data.csv +0 -13
  72. package/examples/private/epi-data.json +0 -62
  73. package/examples/private/epi.json +0 -403
  74. package/examples/private/occupancy.json +0 -109283
  75. package/examples/private/prod-line-config.json +0 -401
  76. package/examples/private/region-data.json +0 -822
  77. package/examples/private/region-testing.json +0 -312
  78. package/examples/private/scaling.json +0 -45325
  79. package/examples/private/testing-data.json +0 -1739
  80. package/examples/private/testing.json +0 -816
  81. package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +0 -109
  82. package/src/components/EditorPanel/components/Panels.tsx +0 -13
@@ -1,1739 +0,0 @@
1
- [
2
- {
3
- "date": "2022-01-01",
4
- "Midwest": "17.334992834206012",
5
- "National": "16.722852415945177",
6
- "Northeast": "17.973922977459853",
7
- "South": "16.0985034961384",
8
- "West": "15.907056875338592",
9
- "date_period": "All Results"
10
- },
11
- {
12
- "date": "2022-01-08",
13
- "Midwest": "20.264997586586716",
14
- "National": "22.888933499553286",
15
- "Northeast": "21.083165108225224",
16
- "South": "22.610754106359735",
17
- "West": "34.594686891353184",
18
- "date_period": "All Results"
19
- },
20
- {
21
- "date": "2022-01-15",
22
- "Midwest": "18.842958864760405",
23
- "National": "22.696861736763733",
24
- "Northeast": "26.45413746384437",
25
- "South": "23.413300415875185",
26
- "West": "34.891894290455355",
27
- "date_period": "All Results"
28
- },
29
- {
30
- "date": "2022-01-22",
31
- "Midwest": "17.680047381324567",
32
- "National": "18.56069496304348",
33
- "Northeast": "23.27841710182411",
34
- "South": "15.189728977012408",
35
- "West": "26.277157625347016",
36
- "date_period": "All Results"
37
- },
38
- {
39
- "date": "2022-01-29",
40
- "Midwest": "12.099545182927741",
41
- "National": "13.623660024791977",
42
- "Northeast": "14.121119504960893",
43
- "South": "11.350075861419946",
44
- "West": "20.220580222785202",
45
- "date_period": "All Results"
46
- },
47
- {
48
- "date": "2022-02-05",
49
- "Midwest": "8.875443492346122",
50
- "National": "8.989729943529344",
51
- "Northeast": "9.115301546803742",
52
- "South": "7.917583980162185",
53
- "West": "10.406277038180905",
54
- "date_period": "All Results"
55
- },
56
- {
57
- "date": "2022-02-12",
58
- "Midwest": "5.725598151699167",
59
- "National": "5.660708494372174",
60
- "Northeast": "6.798975576384176",
61
- "South": "5.176642296295685",
62
- "West": "5.18720104997347",
63
- "date_period": "All Results"
64
- },
65
- {
66
- "date": "2022-02-19",
67
- "Midwest": "4.080092724855096",
68
- "National": "3.63629941969161",
69
- "Northeast": "4.565164085319568",
70
- "South": "3.4069804437856206",
71
- "West": "2.733566077137087",
72
- "date_period": "All Results"
73
- },
74
- {
75
- "date": "2022-02-26",
76
- "Midwest": "2.741264489660024",
77
- "National": "2.372357214954068",
78
- "Northeast": "3.531323892167359",
79
- "South": "2.279918194938724",
80
- "West": "1.4094963979005166",
81
- "date_period": "All Results"
82
- },
83
- {
84
- "date": "2022-03-05",
85
- "Midwest": "1.8318180178430097",
86
- "National": "1.537793378170369",
87
- "Northeast": "2.413702840741707",
88
- "South": "1.3698663310327517",
89
- "West": "1.0222283801775147",
90
- "date_period": "All Results"
91
- },
92
- {
93
- "date": "2022-03-12",
94
- "Midwest": "1.6553376088709721",
95
- "National": "1.3670795915417648",
96
- "Northeast": "1.6284080179062308",
97
- "South": "1.2210622343310917",
98
- "West": "0.7296894138474543",
99
- "date_period": "All Results"
100
- },
101
- {
102
- "date": "2022-03-19",
103
- "Midwest": "1.3315976221969712",
104
- "National": "1.1188106270028084",
105
- "Northeast": "1.3558150005378893",
106
- "South": "1.0",
107
- "West": "0.6683739142102721",
108
- "date_period": "All Results"
109
- },
110
- {
111
- "date": "2022-03-26",
112
- "Midwest": "1.4290758482306243",
113
- "National": "1.187253443180662",
114
- "Northeast": "3.6112174889326525",
115
- "South": "0.9711857670925864",
116
- "West": "0.49543723223519387",
117
- "date_period": "All Results"
118
- },
119
- {
120
- "date": "2022-04-02",
121
- "Midwest": "1.1934868069453404",
122
- "National": "1.1620664549724316",
123
- "Northeast": "4.4746904827471905",
124
- "South": "1.0613020857634214",
125
- "West": "0.8141841953551248",
126
- "date_period": "All Results"
127
- },
128
- {
129
- "date": "2022-04-09",
130
- "Midwest": "1.472288509128231",
131
- "National": "1.472288509128231",
132
- "Northeast": "5.901244613898702",
133
- "South": "1.3392402949237536",
134
- "West": "0.9834538881247422",
135
- "date_period": "All Results"
136
- },
137
- {
138
- "date": "2022-04-16",
139
- "Midwest": "2.0574719993917894",
140
- "National": "1.9212400389397213",
141
- "Northeast": "5.0263408484013485",
142
- "South": "1.7328566659331115",
143
- "West": "1.1530705535070396",
144
- "date_period": "All Results"
145
- },
146
- {
147
- "date": "2022-04-23",
148
- "Midwest": "2.647407906657701",
149
- "National": "2.8891312776476514",
150
- "Northeast": "7.450227158398084",
151
- "South": "2.9249418668089366",
152
- "West": "2.209972490752126",
153
- "date_period": "All Results"
154
- },
155
- {
156
- "date": "2022-04-30",
157
- "Midwest": "4.131299375205779",
158
- "National": "3.6956826619606966",
159
- "Northeast": "8.586705721719392",
160
- "South": "3.388442624308067",
161
- "West": "2.209245258727787",
162
- "date_period": "All Results"
163
- },
164
- {
165
- "date": "2022-05-07",
166
- "Midwest": "5.520551487513726",
167
- "National": "4.716100599401586",
168
- "Northeast": "8.803293957693029",
169
- "South": "3.81106602203945",
170
- "West": "3.2454485938243804",
171
- "date_period": "All Results"
172
- },
173
- {
174
- "date": "2022-05-14",
175
- "Midwest": "6.0500524195812275",
176
- "National": "5.359339186748389",
177
- "Northeast": "5.647992616493562",
178
- "South": "4.792299592107494",
179
- "West": "4.169291245109246",
180
- "date_period": "All Results"
181
- },
182
- {
183
- "date": "2022-05-21",
184
- "Midwest": "7.030811972000948",
185
- "National": "6.4524682100657245",
186
- "Northeast": "6.94789330365531",
187
- "South": "6.325355932117251",
188
- "West": "4.997061491296302",
189
- "date_period": "All Results"
190
- },
191
- {
192
- "date": "2022-05-28",
193
- "Midwest": "7.146402312844618",
194
- "National": "6.830121651397778",
195
- "Northeast": "6.455814195189694",
196
- "South": "6.132734518544012",
197
- "West": "6.82638075276128",
198
- "date_period": "All Results"
199
- },
200
- {
201
- "date": "2022-06-04",
202
- "Midwest": "6.614909958727996",
203
- "National": "6.604812040503214",
204
- "Northeast": "4.419682899139588",
205
- "South": "5.545242903080547",
206
- "West": "8.190891392248362",
207
- "date_period": "All Results"
208
- },
209
- {
210
- "date": "2022-06-11",
211
- "Midwest": "6.596689259470585",
212
- "National": "6.4439418557194355",
213
- "Northeast": "3.0780023870937434",
214
- "South": "6.152775278509091",
215
- "West": "8.616724118630879",
216
- "date_period": "All Results"
217
- },
218
- {
219
- "date": "2022-06-18",
220
- "Midwest": "6.303931042955908",
221
- "National": "6.371877215431281",
222
- "Northeast": "4.054874373773464",
223
- "South": "5.710152649764929",
224
- "West": "8.285766641783303",
225
- "date_period": "All Results"
226
- },
227
- {
228
- "date": "2022-06-25",
229
- "Midwest": "6.6742619041416535",
230
- "National": "6.724233944520426",
231
- "Northeast": "3.0963803790362863",
232
- "South": "5.988441224362367",
233
- "West": "9.983729206650043",
234
- "date_period": "All Results"
235
- },
236
- {
237
- "date": "2022-07-02",
238
- "Midwest": "7.0569643475401715",
239
- "National": "7.2463234101975615",
240
- "Northeast": "4.135586211722883",
241
- "South": "6.239342644833018",
242
- "West": "10.806483350732488",
243
- "date_period": "All Results"
244
- },
245
- {
246
- "date": "2022-07-09",
247
- "Midwest": "9.01596156841045",
248
- "National": "8.844717969451407",
249
- "Northeast": "5.232890625998122",
250
- "South": "8.035978290703422",
251
- "West": "11.411486798001514",
252
- "date_period": "All Results"
253
- },
254
- {
255
- "date": "2022-07-16",
256
- "Midwest": "8.368481306121357",
257
- "National": "8.567898548687324",
258
- "Northeast": "5.572574823330007",
259
- "South": "7.944755669572952",
260
- "West": "10.87827919411192",
261
- "date_period": "All Results"
262
- },
263
- {
264
- "date": "2022-07-23",
265
- "Midwest": "8.850183985592794",
266
- "National": "9.101718543120246",
267
- "Northeast": "6.742163915703021",
268
- "South": "8.788635933484466",
269
- "West": "10.855892195362301",
270
- "date_period": "All Results"
271
- },
272
- {
273
- "date": "2022-07-30",
274
- "Midwest": "9.516227593610719",
275
- "National": "8.550760816578507",
276
- "Northeast": "5.024641720860658",
277
- "South": "8.33436315787953",
278
- "West": "8.875356058998067",
279
- "date_period": "All Results"
280
- },
281
- {
282
- "date": "2022-08-06",
283
- "Midwest": "8.825971697512493",
284
- "National": "7.45135579411312",
285
- "Northeast": "5.092626006725219",
286
- "South": "7.896209136659778",
287
- "West": "6.606953861230883",
288
- "date_period": "All Results"
289
- },
290
- {
291
- "date": "2022-08-13",
292
- "Midwest": "8.459799123665878",
293
- "National": "6.817707242698091",
294
- "Northeast": "6.384994152836976",
295
- "South": "6.6172668527740415",
296
- "West": "5.650781155873313",
297
- "date_period": "All Results"
298
- },
299
- {
300
- "date": "2022-08-20",
301
- "Midwest": "8.068062741471122",
302
- "National": "6.301053386205918",
303
- "Northeast": "5.740084707076083",
304
- "South": "6.205601557310055",
305
- "West": "5.086558975191802",
306
- "date_period": "All Results"
307
- },
308
- {
309
- "date": "2022-08-27",
310
- "Midwest": "7.243368167633866",
311
- "National": "6.173932107214194",
312
- "Northeast": "5.9053362186272365",
313
- "South": "6.339320799634996",
314
- "West": "4.952085686359318",
315
- "date_period": "All Results"
316
- },
317
- {
318
- "date": "2022-09-03",
319
- "Midwest": "6.263356614186559",
320
- "National": "5.4345532873800995",
321
- "Northeast": "5.301103315219122",
322
- "South": "6.0035923743869954",
323
- "West": "4.212285825965408",
324
- "date_period": "All Results"
325
- },
326
- {
327
- "date": "2022-09-10",
328
- "Midwest": "5.764110967297143",
329
- "National": "5.229220008721427",
330
- "Northeast": "6.009470310628721",
331
- "South": "5.580802871753618",
332
- "West": "3.8275086706676973",
333
- "date_period": "All Results"
334
- },
335
- {
336
- "date": "2022-09-17",
337
- "Midwest": "5.172903586914707",
338
- "National": "4.70204545804676",
339
- "Northeast": "6.704879016338901",
340
- "South": "4.332558481342829",
341
- "West": "3.62072081643171",
342
- "date_period": "All Results"
343
- },
344
- {
345
- "date": "2022-09-24",
346
- "Midwest": "3.9555338720765274",
347
- "National": "4.236651410540145",
348
- "Northeast": "4.91476517254579",
349
- "South": "4.348712124327303",
350
- "West": "4.175212402406744",
351
- "date_period": "All Results"
352
- },
353
- {
354
- "date": "2022-10-01",
355
- "Midwest": "3.413055217395199",
356
- "National": "3.4263341199681276",
357
- "Northeast": "6.082659342157049",
358
- "South": "2.2166162620011005",
359
- "West": "3.5024717065343283",
360
- "date_period": "All Results"
361
- },
362
- {
363
- "date": "2022-10-08",
364
- "Midwest": "3.588061117704751",
365
- "National": "3.0952567964032323",
366
- "Northeast": "4.513952985881793",
367
- "South": "2.022833645467564",
368
- "West": "3.0527548458685065",
369
- "date_period": "All Results"
370
- },
371
- {
372
- "date": "2022-10-15",
373
- "Midwest": "3.435571759542908",
374
- "National": "3.1373571730243217",
375
- "Northeast": "5.847809985416584",
376
- "South": "1.987339045560379",
377
- "West": "2.897726244794719",
378
- "date_period": "All Results"
379
- },
380
- {
381
- "date": "2022-10-22",
382
- "Midwest": "3.9008423953262",
383
- "National": "3.1076619934194625",
384
- "Northeast": "3.574887381332105",
385
- "South": "2.1756373642117746",
386
- "West": "2.8830090394986474",
387
- "date_period": "All Results"
388
- },
389
- {
390
- "date": "2022-10-29",
391
- "Midwest": "4.671472104331834",
392
- "National": "3.6457442425719515",
393
- "Northeast": "4.76485821715515",
394
- "South": "2.6505932584095",
395
- "West": "3.285042827601099",
396
- "date_period": "All Results"
397
- },
398
- {
399
- "date": "2022-11-05",
400
- "Midwest": "4.83196864050437",
401
- "National": "3.7282512771153558",
402
- "Northeast": "4.033608069531598",
403
- "South": "2.6006038919502683",
404
- "West": "3.8568294452239598",
405
- "date_period": "All Results"
406
- },
407
- {
408
- "date": "2022-11-12",
409
- "Midwest": "4.744267359260501",
410
- "National": "3.715890979228231",
411
- "Northeast": "3.114106098673926",
412
- "South": "2.305590260844426",
413
- "West": "4.786029989269546",
414
- "date_period": "All Results"
415
- },
416
- {
417
- "date": "2022-11-19",
418
- "Midwest": "4.65294920556286",
419
- "National": "4.196078393458944",
420
- "Northeast": "3.719240584008803",
421
- "South": "2.6438293851320918",
422
- "West": "6.328590172129866",
423
- "date_period": "All Results"
424
- },
425
- {
426
- "date": "2022-11-26",
427
- "Midwest": "5.986059615323633",
428
- "National": "4.980869518225257",
429
- "Northeast": "3.851985956348452",
430
- "South": "3.207317808063194",
431
- "West": "7.786261796525312",
432
- "date_period": "All Results"
433
- },
434
- {
435
- "date": "2022-12-03",
436
- "Midwest": "8.501946962993516",
437
- "National": "7.982882771368729",
438
- "Northeast": "6.281657663938336",
439
- "South": "6.774676759414987",
440
- "West": "10.41914713705238",
441
- "date_period": "All Results"
442
- },
443
- {
444
- "date": "2022-12-10",
445
- "Midwest": "8.674743375202018",
446
- "National": "8.083478400635757",
447
- "Northeast": "8.01507473918997",
448
- "South": "6.178869020965413",
449
- "West": "10.494194602429623",
450
- "date_period": "All Results"
451
- },
452
- {
453
- "date": "2022-12-17",
454
- "Midwest": "9.54671185949319",
455
- "National": "8.6331437131189",
456
- "Northeast": "7.944251144964873",
457
- "South": "7.378765605327193",
458
- "West": "9.330547068844592",
459
- "date_period": "All Results"
460
- },
461
- {
462
- "date": "2022-12-24",
463
- "Midwest": "9.396453496298768",
464
- "National": "9.093656098736977",
465
- "Northeast": "8.20716770412164",
466
- "South": "9.47323843787075",
467
- "West": "9.21783260105769",
468
- "date_period": "All Results"
469
- },
470
- {
471
- "date": "2022-12-31",
472
- "Midwest": "10.48692674478258",
473
- "National": "10.469026022754681",
474
- "Northeast": "9.496251173147344",
475
- "South": "12.671208619919579",
476
- "West": "9.44128286063331",
477
- "date_period": "All Results"
478
- },
479
- {
480
- "date": "2023-01-07",
481
- "Midwest": "6.6822229747092665",
482
- "National": "8.003067481317663",
483
- "Northeast": "7.030849522510964",
484
- "South": "10.237378954469865",
485
- "West": "8.188653176937551",
486
- "date_period": "All Results"
487
- },
488
- {
489
- "date": "2023-01-14",
490
- "Midwest": "5.083729118353563",
491
- "National": "5.768729343904318",
492
- "Northeast": "5.517708188333225",
493
- "South": "6.9361411812682725",
494
- "West": "5.709019580728517",
495
- "date_period": "All Results"
496
- },
497
- {
498
- "date": "2023-01-14",
499
- "Midwest": "5.083729118353563",
500
- "National": "5.768729343904318",
501
- "Northeast": "5.517708188333225",
502
- "South": "6.9361411812682725",
503
- "West": "5.709019580728517",
504
- "date_period": "1 Year"
505
- },
506
- {
507
- "date": "2023-01-21",
508
- "Midwest": "4.91498943931002",
509
- "National": "5.341608200951429",
510
- "Northeast": "6.366773981881543",
511
- "South": "6.360114993822824",
512
- "West": "4.73371854857084",
513
- "date_period": "All Results"
514
- },
515
- {
516
- "date": "2023-01-21",
517
- "Midwest": "4.91498943931002",
518
- "National": "5.341608200951429",
519
- "Northeast": "6.366773981881543",
520
- "South": "6.360114993822824",
521
- "West": "4.73371854857084",
522
- "date_period": "1 Year"
523
- },
524
- {
525
- "date": "2023-01-28",
526
- "Midwest": "4.965838149574618",
527
- "National": "5.56232119903478",
528
- "Northeast": "6.683748681023634",
529
- "South": "6.71377987909637",
530
- "West": "4.343135285570277",
531
- "date_period": "All Results"
532
- },
533
- {
534
- "date": "2023-01-28",
535
- "Midwest": "4.965838149574618",
536
- "National": "5.56232119903478",
537
- "Northeast": "6.683748681023634",
538
- "South": "6.71377987909637",
539
- "West": "4.343135285570277",
540
- "date_period": "1 Year"
541
- },
542
- {
543
- "date": "2023-02-04",
544
- "Midwest": "5.0591484660688035",
545
- "National": "5.693093617667271",
546
- "Northeast": "5.974345400098664",
547
- "South": "6.939710180555067",
548
- "West": "5.857720690669988",
549
- "date_period": "All Results"
550
- },
551
- {
552
- "date": "2023-02-04",
553
- "Midwest": "5.0591484660688035",
554
- "National": "5.693093617667271",
555
- "Northeast": "5.974345400098664",
556
- "South": "6.939710180555067",
557
- "West": "5.857720690669988",
558
- "date_period": "1 Year"
559
- },
560
- {
561
- "date": "2023-02-11",
562
- "Midwest": "5.722481027397134",
563
- "National": "5.7892191151267145",
564
- "Northeast": "4.492259765980662",
565
- "South": "6.57245188197297",
566
- "West": "6.373769205272075",
567
- "date_period": "All Results"
568
- },
569
- {
570
- "date": "2023-02-11",
571
- "Midwest": "5.722481027397134",
572
- "National": "5.7892191151267145",
573
- "Northeast": "4.492259765980662",
574
- "South": "6.57245188197297",
575
- "West": "6.373769205272075",
576
- "date_period": "1 Year"
577
- },
578
- {
579
- "date": "2023-02-18",
580
- "Midwest": "6.18437463647428",
581
- "National": "5.877846063267205",
582
- "Northeast": "5.42686943463101",
583
- "South": "5.334000903852162",
584
- "West": "6.223477112290479",
585
- "date_period": "All Results"
586
- },
587
- {
588
- "date": "2023-02-18",
589
- "Midwest": "6.18437463647428",
590
- "National": "5.877846063267205",
591
- "Northeast": "5.42686943463101",
592
- "South": "5.334000903852162",
593
- "West": "6.223477112290479",
594
- "date_period": "1 Year"
595
- },
596
- {
597
- "date": "2023-02-25",
598
- "Midwest": "5.83852768619516",
599
- "National": "5.416220494683869",
600
- "Northeast": "5.263983634842465",
601
- "South": "3.962573555782868",
602
- "West": "6.299718172780535",
603
- "date_period": "All Results"
604
- },
605
- {
606
- "date": "2023-02-25",
607
- "Midwest": "5.83852768619516",
608
- "National": "5.416220494683869",
609
- "Northeast": "5.263983634842465",
610
- "South": "3.962573555782868",
611
- "West": "6.299718172780535",
612
- "date_period": "1 Year"
613
- },
614
- {
615
- "date": "2023-03-04",
616
- "Midwest": "5.353544494518379",
617
- "National": "4.745338033282198",
618
- "Northeast": "3.782641322136427",
619
- "South": "3.513571885746007",
620
- "West": "5.758702830857668",
621
- "date_period": "All Results"
622
- },
623
- {
624
- "date": "2023-03-04",
625
- "Midwest": "5.353544494518379",
626
- "National": "4.745338033282198",
627
- "Northeast": "3.782641322136427",
628
- "South": "3.513571885746007",
629
- "West": "5.758702830857668",
630
- "date_period": "1 Year"
631
- },
632
- {
633
- "date": "2023-03-11",
634
- "Midwest": "5.503838919859289",
635
- "National": "4.125129972468582",
636
- "Northeast": "2.5912663097451936",
637
- "South": "2.581368648228141",
638
- "West": "4.970341750010838",
639
- "date_period": "All Results"
640
- },
641
- {
642
- "date": "2023-03-11",
643
- "Midwest": "5.503838919859289",
644
- "National": "4.125129972468582",
645
- "Northeast": "2.5912663097451936",
646
- "South": "2.581368648228141",
647
- "West": "4.970341750010838",
648
- "date_period": "1 Year"
649
- },
650
- {
651
- "date": "2023-03-18",
652
- "Midwest": "5.494749915245038",
653
- "National": "4.278397601702612",
654
- "Northeast": "3.4620001348711558",
655
- "South": "2.671630519115257",
656
- "West": "5.273064136375217",
657
- "date_period": "All Results"
658
- },
659
- {
660
- "date": "2023-03-18",
661
- "Midwest": "5.494749915245038",
662
- "National": "4.278397601702612",
663
- "Northeast": "3.4620001348711558",
664
- "South": "2.671630519115257",
665
- "West": "5.273064136375217",
666
- "date_period": "1 Year"
667
- },
668
- {
669
- "date": "2023-03-25",
670
- "Midwest": "5.04985148454227",
671
- "National": "4.187524137070092",
672
- "Northeast": "2.925624944237119",
673
- "South": "3.3683350703873733",
674
- "West": "4.911972824021309",
675
- "date_period": "All Results"
676
- },
677
- {
678
- "date": "2023-03-25",
679
- "Midwest": "5.04985148454227",
680
- "National": "4.187524137070092",
681
- "Northeast": "2.925624944237119",
682
- "South": "3.3683350703873733",
683
- "West": "4.911972824021309",
684
- "date_period": "1 Year"
685
- },
686
- {
687
- "date": "2023-04-01",
688
- "Midwest": "4.040493554907747",
689
- "National": "3.238217550838627",
690
- "Northeast": "1.8248315782266626",
691
- "South": "2.8821089631865253",
692
- "West": "3.9871657904052222",
693
- "date_period": "All Results"
694
- },
695
- {
696
- "date": "2023-04-01",
697
- "Midwest": "4.040493554907747",
698
- "National": "3.238217550838627",
699
- "Northeast": "1.8248315782266626",
700
- "South": "2.8821089631865253",
701
- "West": "3.9871657904052222",
702
- "date_period": "1 Year"
703
- },
704
- {
705
- "date": "2023-04-08",
706
- "Midwest": "3.825428095454565",
707
- "National": "2.628887010470089",
708
- "Northeast": "1.5543667589593606",
709
- "South": "2.161045760142242",
710
- "West": "2.9160398146002926",
711
- "date_period": "All Results"
712
- },
713
- {
714
- "date": "2023-04-08",
715
- "Midwest": "3.825428095454565",
716
- "National": "2.628887010470089",
717
- "Northeast": "1.5543667589593606",
718
- "South": "2.161045760142242",
719
- "West": "2.9160398146002926",
720
- "date_period": "1 Year"
721
- },
722
- {
723
- "date": "2023-04-15",
724
- "Midwest": "3.1668599911306616",
725
- "National": "2.631190282980815",
726
- "Northeast": "1.4678644326246897",
727
- "South": "2.183936121727367",
728
- "West": "2.937301235115446",
729
- "date_period": "All Results"
730
- },
731
- {
732
- "date": "2023-04-15",
733
- "Midwest": "3.1668599911306616",
734
- "National": "2.631190282980815",
735
- "Northeast": "1.4678644326246897",
736
- "South": "2.183936121727367",
737
- "West": "2.937301235115446",
738
- "date_period": "1 Year"
739
- },
740
- {
741
- "date": "2023-04-22",
742
- "Midwest": "3.0583935384267638",
743
- "National": "1.9844092453775595",
744
- "Northeast": "1.1258099242720379",
745
- "South": "1.7643624663619524",
746
- "West": "2.253665232373492",
747
- "date_period": "All Results"
748
- },
749
- {
750
- "date": "2023-04-22",
751
- "Midwest": "3.0583935384267638",
752
- "National": "1.9844092453775595",
753
- "Northeast": "1.1258099242720379",
754
- "South": "1.7643624663619524",
755
- "West": "2.253665232373492",
756
- "date_period": "1 Year"
757
- },
758
- {
759
- "date": "2023-04-29",
760
- "Midwest": "2.234322609599782",
761
- "National": "1.798345986172288",
762
- "Northeast": "1.2257871846116937",
763
- "South": "1.6862136450430398",
764
- "West": "1.8652945742754858",
765
- "date_period": "All Results"
766
- },
767
- {
768
- "date": "2023-04-29",
769
- "Midwest": "2.234322609599782",
770
- "National": "1.798345986172288",
771
- "Northeast": "1.2257871846116937",
772
- "South": "1.6862136450430398",
773
- "West": "1.8652945742754858",
774
- "date_period": "1 Year"
775
- },
776
- {
777
- "date": "2023-05-06",
778
- "Midwest": "2.297133165119719",
779
- "National": "1.9286829225243374",
780
- "Northeast": "1.4661197325682702",
781
- "South": "1.886026468650831",
782
- "West": "1.9848328037558096",
783
- "date_period": "All Results"
784
- },
785
- {
786
- "date": "2023-05-06",
787
- "Midwest": "2.297133165119719",
788
- "National": "1.9286829225243374",
789
- "Northeast": "1.4661197325682702",
790
- "South": "1.886026468650831",
791
- "West": "1.9848328037558096",
792
- "date_period": "1 Year"
793
- },
794
- {
795
- "date": "2023-05-13",
796
- "Midwest": "2.250528165546226",
797
- "National": "1.8565067006479221",
798
- "Northeast": "1.2690359985428914",
799
- "South": "1.7323677084164264",
800
- "West": "1.8189383755522441",
801
- "date_period": "All Results"
802
- },
803
- {
804
- "date": "2023-05-13",
805
- "Midwest": "2.250528165546226",
806
- "National": "1.8565067006479221",
807
- "Northeast": "1.2690359985428914",
808
- "South": "1.7323677084164264",
809
- "West": "1.8189383755522441",
810
- "date_period": "1 Year"
811
- },
812
- {
813
- "date": "2023-05-20",
814
- "Midwest": "1.74281480879477",
815
- "National": "1.5845130420355622",
816
- "Northeast": "1.0839024499948373",
817
- "South": "1.6404333615529334",
818
- "West": "1.7261056031873276",
819
- "date_period": "All Results"
820
- },
821
- {
822
- "date": "2023-05-20",
823
- "Midwest": "1.74281480879477",
824
- "National": "1.5845130420355622",
825
- "Northeast": "1.0839024499948373",
826
- "South": "1.6404333615529334",
827
- "West": "1.7261056031873276",
828
- "date_period": "1 Year"
829
- },
830
- {
831
- "date": "2023-05-27",
832
- "Midwest": "1.62775482571196",
833
- "National": "1.4571961754852853",
834
- "Northeast": "1.1565917331652609",
835
- "South": "1.4261013970729486",
836
- "West": "1.4137261122782219",
837
- "date_period": "All Results"
838
- },
839
- {
840
- "date": "2023-05-27",
841
- "Midwest": "1.62775482571196",
842
- "National": "1.4571961754852853",
843
- "Northeast": "1.1565917331652609",
844
- "South": "1.4261013970729486",
845
- "West": "1.4137261122782219",
846
- "date_period": "1 Year"
847
- },
848
- {
849
- "date": "2023-06-03",
850
- "Midwest": "1.248367536522471",
851
- "National": "1.229283303788272",
852
- "Northeast": "1.0041023756233711",
853
- "South": "1.4258337924692053",
854
- "West": "1.338340654785763",
855
- "date_period": "All Results"
856
- },
857
- {
858
- "date": "2023-06-03",
859
- "Midwest": "1.248367536522471",
860
- "National": "1.229283303788272",
861
- "Northeast": "1.0041023756233711",
862
- "South": "1.4258337924692053",
863
- "West": "1.338340654785763",
864
- "date_period": "1 Year"
865
- },
866
- {
867
- "date": "2023-06-10",
868
- "Midwest": "1.0451932740187058",
869
- "National": "1.08206070360641",
870
- "Northeast": "1.0",
871
- "South": "1.238045983863381",
872
- "West": "1.216902751468142",
873
- "date_period": "All Results"
874
- },
875
- {
876
- "date": "2023-06-10",
877
- "Midwest": "1.0451932740187058",
878
- "National": "1.08206070360641",
879
- "Northeast": "1.0",
880
- "South": "1.238045983863381",
881
- "West": "1.216902751468142",
882
- "date_period": "1 Year"
883
- },
884
- {
885
- "date": "2023-06-17",
886
- "Midwest": "1.074775438649616",
887
- "National": "1.1044336962211634",
888
- "Northeast": "1.0319879949711728",
889
- "South": "1.1863460093068912",
890
- "West": "1.1146187040084865",
891
- "date_period": "All Results"
892
- },
893
- {
894
- "date": "2023-06-17",
895
- "Midwest": "1.074775438649616",
896
- "National": "1.1044336962211634",
897
- "Northeast": "1.0319879949711728",
898
- "South": "1.1863460093068912",
899
- "West": "1.1146187040084865",
900
- "date_period": "1 Year"
901
- },
902
- {
903
- "date": "2023-06-24",
904
- "Midwest": "1.0",
905
- "National": "1.096189599982595",
906
- "Northeast": "1.021194771591663",
907
- "South": "1.381292264810017",
908
- "West": "1.250947109666866",
909
- "date_period": "All Results"
910
- },
911
- {
912
- "date": "2023-06-24",
913
- "Midwest": "1.0",
914
- "National": "1.096189599982595",
915
- "Northeast": "1.021194771591663",
916
- "South": "1.381292264810017",
917
- "West": "1.250947109666866",
918
- "date_period": "1 Year"
919
- },
920
- {
921
- "date": "2023-07-01",
922
- "Midwest": "1.0827214113499473",
923
- "National": "1.2443446719851303",
924
- "Northeast": "1.082312773383963",
925
- "South": "1.6437217724558228",
926
- "West": "1.4633244447797176",
927
- "date_period": "All Results"
928
- },
929
- {
930
- "date": "2023-07-01",
931
- "Midwest": "1.0827214113499473",
932
- "National": "1.2443446719851303",
933
- "Northeast": "1.082312773383963",
934
- "South": "1.6437217724558228",
935
- "West": "1.4633244447797176",
936
- "date_period": "1 Year"
937
- },
938
- {
939
- "date": "2023-07-08",
940
- "Midwest": "1.2242154485809698",
941
- "National": "1.477562916932536",
942
- "Northeast": "1.2787978650443557",
943
- "South": "1.929211603426048",
944
- "West": "1.6025189657358208",
945
- "date_period": "All Results"
946
- },
947
- {
948
- "date": "2023-07-08",
949
- "Midwest": "1.2242154485809698",
950
- "National": "1.477562916932536",
951
- "Northeast": "1.2787978650443557",
952
- "South": "1.929211603426048",
953
- "West": "1.6025189657358208",
954
- "date_period": "1 Year"
955
- },
956
- {
957
- "date": "2023-07-15",
958
- "Midwest": "1.3047975738293554",
959
- "National": "1.6272995166305335",
960
- "Northeast": "1.5860842911281345",
961
- "South": "1.9880591996805275",
962
- "West": "2.076496388371102",
963
- "date_period": "All Results"
964
- },
965
- {
966
- "date": "2023-07-15",
967
- "Midwest": "1.3047975738293554",
968
- "National": "1.6272995166305335",
969
- "Northeast": "1.5860842911281345",
970
- "South": "1.9880591996805275",
971
- "West": "2.076496388371102",
972
- "date_period": "1 Year"
973
- },
974
- {
975
- "date": "2023-07-22",
976
- "Midwest": "1.4934819023546109",
977
- "National": "1.874800413680821",
978
- "Northeast": "1.8394781479345037",
979
- "South": "2.1815181757999733",
980
- "West": "2.3570312862180596",
981
- "date_period": "6 Months"
982
- },
983
- {
984
- "date": "2023-07-22",
985
- "Midwest": "1.4934819023546109",
986
- "National": "1.874800413680821",
987
- "Northeast": "1.8394781479345037",
988
- "South": "2.1815181757999733",
989
- "West": "2.3570312862180596",
990
- "date_period": "All Results"
991
- },
992
- {
993
- "date": "2023-07-22",
994
- "Midwest": "1.4934819023546109",
995
- "National": "1.874800413680821",
996
- "Northeast": "1.8394781479345037",
997
- "South": "2.1815181757999733",
998
- "West": "2.3570312862180596",
999
- "date_period": "1 Year"
1000
- },
1001
- {
1002
- "date": "2023-07-29",
1003
- "Midwest": "1.748261798870174",
1004
- "National": "2.331373133255995",
1005
- "Northeast": "2.246811595929113",
1006
- "South": "3.115454335412517",
1007
- "West": "3.138740500747317",
1008
- "date_period": "6 Months"
1009
- },
1010
- {
1011
- "date": "2023-07-29",
1012
- "Midwest": "1.748261798870174",
1013
- "National": "2.331373133255995",
1014
- "Northeast": "2.246811595929113",
1015
- "South": "3.115454335412517",
1016
- "West": "3.138740500747317",
1017
- "date_period": "All Results"
1018
- },
1019
- {
1020
- "date": "2023-07-29",
1021
- "Midwest": "1.748261798870174",
1022
- "National": "2.331373133255995",
1023
- "Northeast": "2.246811595929113",
1024
- "South": "3.115454335412517",
1025
- "West": "3.138740500747317",
1026
- "date_period": "1 Year"
1027
- },
1028
- {
1029
- "date": "2023-08-05",
1030
- "Midwest": "2.150499692126853",
1031
- "National": "2.7859618163812234",
1032
- "Northeast": "2.5661595470657357",
1033
- "South": "3.7123605281712857",
1034
- "West": "3.538179526375232",
1035
- "date_period": "6 Months"
1036
- },
1037
- {
1038
- "date": "2023-08-05",
1039
- "Midwest": "2.150499692126853",
1040
- "National": "2.7859618163812234",
1041
- "Northeast": "2.5661595470657357",
1042
- "South": "3.7123605281712857",
1043
- "West": "3.538179526375232",
1044
- "date_period": "All Results"
1045
- },
1046
- {
1047
- "date": "2023-08-05",
1048
- "Midwest": "2.150499692126853",
1049
- "National": "2.7859618163812234",
1050
- "Northeast": "2.5661595470657357",
1051
- "South": "3.7123605281712857",
1052
- "West": "3.538179526375232",
1053
- "date_period": "1 Year"
1054
- },
1055
- {
1056
- "date": "2023-08-12",
1057
- "Midwest": "2.736093050841074",
1058
- "National": "3.552801855893131",
1059
- "Northeast": "3.188805692027165",
1060
- "South": "4.993647237296566",
1061
- "West": "4.465568517207471",
1062
- "date_period": "6 Months"
1063
- },
1064
- {
1065
- "date": "2023-08-12",
1066
- "Midwest": "2.736093050841074",
1067
- "National": "3.552801855893131",
1068
- "Northeast": "3.188805692027165",
1069
- "South": "4.993647237296566",
1070
- "West": "4.465568517207471",
1071
- "date_period": "All Results"
1072
- },
1073
- {
1074
- "date": "2023-08-12",
1075
- "Midwest": "2.736093050841074",
1076
- "National": "3.552801855893131",
1077
- "Northeast": "3.188805692027165",
1078
- "South": "4.993647237296566",
1079
- "West": "4.465568517207471",
1080
- "date_period": "1 Year"
1081
- },
1082
- {
1083
- "date": "2023-08-19",
1084
- "Midwest": "3.5384173058003094",
1085
- "National": "3.892580408156049",
1086
- "Northeast": "3.0156085137520368",
1087
- "South": "5.412683507827478",
1088
- "West": "4.283331108040148",
1089
- "date_period": "6 Months"
1090
- },
1091
- {
1092
- "date": "2023-08-19",
1093
- "Midwest": "3.5384173058003094",
1094
- "National": "3.892580408156049",
1095
- "Northeast": "3.0156085137520368",
1096
- "South": "5.412683507827478",
1097
- "West": "4.283331108040148",
1098
- "date_period": "All Results"
1099
- },
1100
- {
1101
- "date": "2023-08-19",
1102
- "Midwest": "3.5384173058003094",
1103
- "National": "3.892580408156049",
1104
- "Northeast": "3.0156085137520368",
1105
- "South": "5.412683507827478",
1106
- "West": "4.283331108040148",
1107
- "date_period": "1 Year"
1108
- },
1109
- {
1110
- "date": "2023-08-26",
1111
- "Midwest": "3.7964805225699423",
1112
- "National": "4.322011349421249",
1113
- "Northeast": "3.5061827750786154",
1114
- "South": "6.15503318938719",
1115
- "West": "4.524627313997459",
1116
- "date_period": "6 Months"
1117
- },
1118
- {
1119
- "date": "2023-08-26",
1120
- "Midwest": "3.7964805225699423",
1121
- "National": "4.322011349421249",
1122
- "Northeast": "3.5061827750786154",
1123
- "South": "6.15503318938719",
1124
- "West": "4.524627313997459",
1125
- "date_period": "All Results"
1126
- },
1127
- {
1128
- "date": "2023-08-26",
1129
- "Midwest": "3.7964805225699423",
1130
- "National": "4.322011349421249",
1131
- "Northeast": "3.5061827750786154",
1132
- "South": "6.15503318938719",
1133
- "West": "4.524627313997459",
1134
- "date_period": "1 Year"
1135
- },
1136
- {
1137
- "date": "2023-09-02",
1138
- "Midwest": "4.64681446052209",
1139
- "National": "5.082985568693583",
1140
- "Northeast": "3.998118108551886",
1141
- "South": "6.5690086492953785",
1142
- "West": "5.583454323253342",
1143
- "date_period": "6 Months"
1144
- },
1145
- {
1146
- "date": "2023-09-02",
1147
- "Midwest": "4.64681446052209",
1148
- "National": "5.082985568693583",
1149
- "Northeast": "3.998118108551886",
1150
- "South": "6.5690086492953785",
1151
- "West": "5.583454323253342",
1152
- "date_period": "All Results"
1153
- },
1154
- {
1155
- "date": "2023-09-02",
1156
- "Midwest": "4.64681446052209",
1157
- "National": "5.082985568693583",
1158
- "Northeast": "3.998118108551886",
1159
- "South": "6.5690086492953785",
1160
- "West": "5.583454323253342",
1161
- "date_period": "1 Year"
1162
- },
1163
- {
1164
- "date": "2023-09-09",
1165
- "Midwest": "5.638588446073422",
1166
- "National": "5.797239087897305",
1167
- "Northeast": "5.480045315075704",
1168
- "South": "7.135296584444936",
1169
- "West": "5.183066766844571",
1170
- "date_period": "6 Months"
1171
- },
1172
- {
1173
- "date": "2023-09-09",
1174
- "Midwest": "5.638588446073422",
1175
- "National": "5.797239087897305",
1176
- "Northeast": "5.480045315075704",
1177
- "South": "7.135296584444936",
1178
- "West": "5.183066766844571",
1179
- "date_period": "All Results"
1180
- },
1181
- {
1182
- "date": "2023-09-09",
1183
- "Midwest": "5.638588446073422",
1184
- "National": "5.797239087897305",
1185
- "Northeast": "5.480045315075704",
1186
- "South": "7.135296584444936",
1187
- "West": "5.183066766844571",
1188
- "date_period": "1 Year"
1189
- },
1190
- {
1191
- "date": "2023-09-16",
1192
- "Midwest": "5.119733891111932",
1193
- "National": "5.134457216965192",
1194
- "Northeast": "6.112968859800924",
1195
- "South": "4.807849395683031",
1196
- "West": "4.547996440753919",
1197
- "date_period": "6 Months"
1198
- },
1199
- {
1200
- "date": "2023-09-16",
1201
- "Midwest": "5.119733891111932",
1202
- "National": "5.134457216965192",
1203
- "Northeast": "6.112968859800924",
1204
- "South": "4.807849395683031",
1205
- "West": "4.547996440753919",
1206
- "date_period": "All Results"
1207
- },
1208
- {
1209
- "date": "2023-09-16",
1210
- "Midwest": "5.119733891111932",
1211
- "National": "5.134457216965192",
1212
- "Northeast": "6.112968859800924",
1213
- "South": "4.807849395683031",
1214
- "West": "4.547996440753919",
1215
- "date_period": "1 Year"
1216
- },
1217
- {
1218
- "date": "2023-09-23",
1219
- "Midwest": "4.065334840987264",
1220
- "National": "4.621982422446565",
1221
- "Northeast": "5.724095718113016",
1222
- "South": "4.3972486366136",
1223
- "West": "4.345009587769665",
1224
- "date_period": "6 Months"
1225
- },
1226
- {
1227
- "date": "2023-09-23",
1228
- "Midwest": "4.065334840987264",
1229
- "National": "4.621982422446565",
1230
- "Northeast": "5.724095718113016",
1231
- "South": "4.3972486366136",
1232
- "West": "4.345009587769665",
1233
- "date_period": "All Results"
1234
- },
1235
- {
1236
- "date": "2023-09-23",
1237
- "Midwest": "4.065334840987264",
1238
- "National": "4.621982422446565",
1239
- "Northeast": "5.724095718113016",
1240
- "South": "4.3972486366136",
1241
- "West": "4.345009587769665",
1242
- "date_period": "1 Year"
1243
- },
1244
- {
1245
- "date": "2023-09-30",
1246
- "Midwest": "3.984074405078454",
1247
- "National": "4.403330598893701",
1248
- "Northeast": "6.1617777912944645",
1249
- "South": "4.014189070762295",
1250
- "West": "4.2280133415343855",
1251
- "date_period": "6 Months"
1252
- },
1253
- {
1254
- "date": "2023-09-30",
1255
- "Midwest": "3.984074405078454",
1256
- "National": "4.403330598893701",
1257
- "Northeast": "6.1617777912944645",
1258
- "South": "4.014189070762295",
1259
- "West": "4.2280133415343855",
1260
- "date_period": "All Results"
1261
- },
1262
- {
1263
- "date": "2023-09-30",
1264
- "Midwest": "3.984074405078454",
1265
- "National": "4.403330598893701",
1266
- "Northeast": "6.1617777912944645",
1267
- "South": "4.014189070762295",
1268
- "West": "4.2280133415343855",
1269
- "date_period": "1 Year"
1270
- },
1271
- {
1272
- "date": "2023-10-07",
1273
- "Midwest": "3.200596625238988",
1274
- "National": "3.821750547079438",
1275
- "Northeast": "5.753787653451566",
1276
- "South": "3.4109918106513817",
1277
- "West": "3.7798262552680413",
1278
- "date_period": "6 Months"
1279
- },
1280
- {
1281
- "date": "2023-10-07",
1282
- "Midwest": "3.200596625238988",
1283
- "National": "3.821750547079438",
1284
- "Northeast": "5.753787653451566",
1285
- "South": "3.4109918106513817",
1286
- "West": "3.7798262552680413",
1287
- "date_period": "All Results"
1288
- },
1289
- {
1290
- "date": "2023-10-07",
1291
- "Midwest": "3.200596625238988",
1292
- "National": "3.821750547079438",
1293
- "Northeast": "5.753787653451566",
1294
- "South": "3.4109918106513817",
1295
- "West": "3.7798262552680413",
1296
- "date_period": "1 Year"
1297
- },
1298
- {
1299
- "date": "2023-10-14",
1300
- "Midwest": "2.6318143878647122",
1301
- "National": "3.2432890613444414",
1302
- "Northeast": "4.202192254477503",
1303
- "South": "3.067459579860307",
1304
- "West": "3.7897347842786053",
1305
- "date_period": "6 Months"
1306
- },
1307
- {
1308
- "date": "2023-10-14",
1309
- "Midwest": "2.6318143878647122",
1310
- "National": "3.2432890613444414",
1311
- "Northeast": "4.202192254477503",
1312
- "South": "3.067459579860307",
1313
- "West": "3.7897347842786053",
1314
- "date_period": "All Results"
1315
- },
1316
- {
1317
- "date": "2023-10-14",
1318
- "Midwest": "2.6318143878647122",
1319
- "National": "3.2432890613444414",
1320
- "Northeast": "4.202192254477503",
1321
- "South": "3.067459579860307",
1322
- "West": "3.7897347842786053",
1323
- "date_period": "1 Year"
1324
- },
1325
- {
1326
- "date": "2023-10-21",
1327
- "Midwest": "2.794723041663371",
1328
- "National": "3.3257361712238054",
1329
- "Northeast": "4.083156012199553",
1330
- "South": "3.041332197896137",
1331
- "West": "3.7043665806495647",
1332
- "date_period": "6 Months"
1333
- },
1334
- {
1335
- "date": "2023-10-21",
1336
- "Midwest": "2.794723041663371",
1337
- "National": "3.3257361712238054",
1338
- "Northeast": "4.083156012199553",
1339
- "South": "3.041332197896137",
1340
- "West": "3.7043665806495647",
1341
- "date_period": "All Results"
1342
- },
1343
- {
1344
- "date": "2023-10-21",
1345
- "Midwest": "2.794723041663371",
1346
- "National": "3.3257361712238054",
1347
- "Northeast": "4.083156012199553",
1348
- "South": "3.041332197896137",
1349
- "West": "3.7043665806495647",
1350
- "date_period": "1 Year"
1351
- },
1352
- {
1353
- "date": "2023-10-28",
1354
- "Midwest": "3.4867280215461527",
1355
- "National": "3.4269088643078778",
1356
- "Northeast": "4.132889829159147",
1357
- "South": "2.9615547455707247",
1358
- "West": "3.2589043861226226",
1359
- "date_period": "6 Months"
1360
- },
1361
- {
1362
- "date": "2023-10-28",
1363
- "Midwest": "3.4867280215461527",
1364
- "National": "3.4269088643078778",
1365
- "Northeast": "4.132889829159147",
1366
- "South": "2.9615547455707247",
1367
- "West": "3.2589043861226226",
1368
- "date_period": "All Results"
1369
- },
1370
- {
1371
- "date": "2023-10-28",
1372
- "Midwest": "3.4867280215461527",
1373
- "National": "3.4269088643078778",
1374
- "Northeast": "4.132889829159147",
1375
- "South": "2.9615547455707247",
1376
- "West": "3.2589043861226226",
1377
- "date_period": "1 Year"
1378
- },
1379
- {
1380
- "date": "2023-11-04",
1381
- "Midwest": "3.8761850400663507",
1382
- "National": "3.67642556268947",
1383
- "Northeast": "4.120439436889155",
1384
- "South": "3.2463951916236145",
1385
- "West": "3.4658640792789837",
1386
- "date_period": "6 Months"
1387
- },
1388
- {
1389
- "date": "2023-11-04",
1390
- "Midwest": "3.8761850400663507",
1391
- "National": "3.67642556268947",
1392
- "Northeast": "4.120439436889155",
1393
- "South": "3.2463951916236145",
1394
- "West": "3.4658640792789837",
1395
- "date_period": "All Results"
1396
- },
1397
- {
1398
- "date": "2023-11-04",
1399
- "Midwest": "3.8761850400663507",
1400
- "National": "3.67642556268947",
1401
- "Northeast": "4.120439436889155",
1402
- "South": "3.2463951916236145",
1403
- "West": "3.4658640792789837",
1404
- "date_period": "1 Year"
1405
- },
1406
- {
1407
- "date": "2023-11-11",
1408
- "Midwest": "5.055948519754642",
1409
- "National": "4.076190153199825",
1410
- "Northeast": "3.5143509344784523",
1411
- "South": "3.7408922256208723",
1412
- "West": "4.226042635821957",
1413
- "date_period": "6 Months"
1414
- },
1415
- {
1416
- "date": "2023-11-11",
1417
- "Midwest": "5.055948519754642",
1418
- "National": "4.076190153199825",
1419
- "Northeast": "3.5143509344784523",
1420
- "South": "3.7408922256208723",
1421
- "West": "4.226042635821957",
1422
- "date_period": "All Results"
1423
- },
1424
- {
1425
- "date": "2023-11-11",
1426
- "Midwest": "5.055948519754642",
1427
- "National": "4.076190153199825",
1428
- "Northeast": "3.5143509344784523",
1429
- "South": "3.7408922256208723",
1430
- "West": "4.226042635821957",
1431
- "date_period": "1 Year"
1432
- },
1433
- {
1434
- "date": "2023-11-18",
1435
- "Midwest": "5.552316147931434",
1436
- "National": "4.719074643215141",
1437
- "Northeast": "3.9685225885174846",
1438
- "South": "3.597027143010807",
1439
- "West": "5.085507763066963",
1440
- "date_period": "6 Months"
1441
- },
1442
- {
1443
- "date": "2023-11-18",
1444
- "Midwest": "5.552316147931434",
1445
- "National": "4.719074643215141",
1446
- "Northeast": "3.9685225885174846",
1447
- "South": "3.597027143010807",
1448
- "West": "5.085507763066963",
1449
- "date_period": "All Results"
1450
- },
1451
- {
1452
- "date": "2023-11-18",
1453
- "Midwest": "5.552316147931434",
1454
- "National": "4.719074643215141",
1455
- "Northeast": "3.9685225885174846",
1456
- "South": "3.597027143010807",
1457
- "West": "5.085507763066963",
1458
- "date_period": "1 Year"
1459
- },
1460
- {
1461
- "date": "2023-11-25",
1462
- "Midwest": "7.399486725765341",
1463
- "National": "5.326780678185345",
1464
- "Northeast": "4.777321462495621",
1465
- "South": "4.138035112971415",
1466
- "West": "4.720400720839783",
1467
- "date_period": "6 Months"
1468
- },
1469
- {
1470
- "date": "2023-11-25",
1471
- "Midwest": "7.399486725765341",
1472
- "National": "5.326780678185345",
1473
- "Northeast": "4.777321462495621",
1474
- "South": "4.138035112971415",
1475
- "West": "4.720400720839783",
1476
- "date_period": "All Results"
1477
- },
1478
- {
1479
- "date": "2023-11-25",
1480
- "Midwest": "7.399486725765341",
1481
- "National": "5.326780678185345",
1482
- "Northeast": "4.777321462495621",
1483
- "South": "4.138035112971415",
1484
- "West": "4.720400720839783",
1485
- "date_period": "1 Year"
1486
- },
1487
- {
1488
- "date": "2023-12-02",
1489
- "Midwest": "9.712185027206802",
1490
- "National": "6.765250461074681",
1491
- "Northeast": "5.8283208394173585",
1492
- "South": "6.120233203415811",
1493
- "West": "5.7230831643024205",
1494
- "date_period": "6 Months"
1495
- },
1496
- {
1497
- "date": "2023-12-02",
1498
- "Midwest": "9.712185027206802",
1499
- "National": "6.765250461074681",
1500
- "Northeast": "5.8283208394173585",
1501
- "South": "6.120233203415811",
1502
- "West": "5.7230831643024205",
1503
- "date_period": "All Results"
1504
- },
1505
- {
1506
- "date": "2023-12-02",
1507
- "Midwest": "9.712185027206802",
1508
- "National": "6.765250461074681",
1509
- "Northeast": "5.8283208394173585",
1510
- "South": "6.120233203415811",
1511
- "West": "5.7230831643024205",
1512
- "date_period": "1 Year"
1513
- },
1514
- {
1515
- "date": "2023-12-02",
1516
- "Midwest": "9.712185027206802",
1517
- "National": "6.765250461074681",
1518
- "Northeast": "5.8283208394173585",
1519
- "South": "6.120233203415811",
1520
- "West": "5.7230831643024205",
1521
- "date_period": "45 Days"
1522
- },
1523
- {
1524
- "date": "2023-12-09",
1525
- "Midwest": "9.779876512003643",
1526
- "National": "7.48166682164793",
1527
- "Northeast": "7.685399294612889",
1528
- "South": "5.7518764616462805",
1529
- "West": "6.17574877471379",
1530
- "date_period": "6 Months"
1531
- },
1532
- {
1533
- "date": "2023-12-09",
1534
- "Midwest": "9.779876512003643",
1535
- "National": "7.48166682164793",
1536
- "Northeast": "7.685399294612889",
1537
- "South": "5.7518764616462805",
1538
- "West": "6.17574877471379",
1539
- "date_period": "All Results"
1540
- },
1541
- {
1542
- "date": "2023-12-09",
1543
- "Midwest": "9.779876512003643",
1544
- "National": "7.48166682164793",
1545
- "Northeast": "7.685399294612889",
1546
- "South": "5.7518764616462805",
1547
- "West": "6.17574877471379",
1548
- "date_period": "1 Year"
1549
- },
1550
- {
1551
- "date": "2023-12-09",
1552
- "Midwest": "9.779876512003643",
1553
- "National": "7.48166682164793",
1554
- "Northeast": "7.685399294612889",
1555
- "South": "5.7518764616462805",
1556
- "West": "6.17574877471379",
1557
- "date_period": "45 Days"
1558
- },
1559
- {
1560
- "date": "2023-12-16",
1561
- "Midwest": "10.385019398179214",
1562
- "National": "8.909674612574594",
1563
- "Northeast": "9.456247155365457",
1564
- "South": "7.648430225312161",
1565
- "West": "6.865632623906126",
1566
- "date_period": "6 Months"
1567
- },
1568
- {
1569
- "date": "2023-12-16",
1570
- "Midwest": "10.385019398179214",
1571
- "National": "8.909674612574594",
1572
- "Northeast": "9.456247155365457",
1573
- "South": "7.648430225312161",
1574
- "West": "6.865632623906126",
1575
- "date_period": "All Results"
1576
- },
1577
- {
1578
- "date": "2023-12-16",
1579
- "Midwest": "10.385019398179214",
1580
- "National": "8.909674612574594",
1581
- "Northeast": "9.456247155365457",
1582
- "South": "7.648430225312161",
1583
- "West": "6.865632623906126",
1584
- "date_period": "1 Year"
1585
- },
1586
- {
1587
- "date": "2023-12-16",
1588
- "Midwest": "10.385019398179214",
1589
- "National": "8.909674612574594",
1590
- "Northeast": "9.456247155365457",
1591
- "South": "7.648430225312161",
1592
- "West": "6.865632623906126",
1593
- "date_period": "45 Days"
1594
- },
1595
- {
1596
- "date": "2023-12-23",
1597
- "Midwest": "11.43333833400149",
1598
- "National": "10.837043922310814",
1599
- "Northeast": "9.603046042385646",
1600
- "South": "11.148072063781408",
1601
- "West": "10.975630222505332",
1602
- "date_period": "6 Months"
1603
- },
1604
- {
1605
- "date": "2023-12-23",
1606
- "Midwest": "11.43333833400149",
1607
- "National": "10.837043922310814",
1608
- "Northeast": "9.603046042385646",
1609
- "South": "11.148072063781408",
1610
- "West": "10.975630222505332",
1611
- "date_period": "All Results"
1612
- },
1613
- {
1614
- "date": "2023-12-23",
1615
- "Midwest": "11.43333833400149",
1616
- "National": "10.837043922310814",
1617
- "Northeast": "9.603046042385646",
1618
- "South": "11.148072063781408",
1619
- "West": "10.975630222505332",
1620
- "date_period": "1 Year"
1621
- },
1622
- {
1623
- "date": "2023-12-23",
1624
- "Midwest": "11.43333833400149",
1625
- "National": "10.837043922310814",
1626
- "Northeast": "9.603046042385646",
1627
- "South": "11.148072063781408",
1628
- "West": "10.975630222505332",
1629
- "date_period": "45 Days"
1630
- },
1631
- {
1632
- "date": "2023-12-30",
1633
- "Midwest": "13.159745173564769",
1634
- "National": "12.458511300757475",
1635
- "Northeast": "11.030007589486537",
1636
- "South": "13.62666327596709",
1637
- "West": "11.297034456001485",
1638
- "date_period": "6 Months"
1639
- },
1640
- {
1641
- "date": "2023-12-30",
1642
- "Midwest": "13.159745173564769",
1643
- "National": "12.458511300757475",
1644
- "Northeast": "11.030007589486537",
1645
- "South": "13.62666327596709",
1646
- "West": "11.297034456001485",
1647
- "date_period": "All Results"
1648
- },
1649
- {
1650
- "date": "2023-12-30",
1651
- "Midwest": "13.159745173564769",
1652
- "National": "12.458511300757475",
1653
- "Northeast": "11.030007589486537",
1654
- "South": "13.62666327596709",
1655
- "West": "11.297034456001485",
1656
- "date_period": "1 Year"
1657
- },
1658
- {
1659
- "date": "2023-12-30",
1660
- "Midwest": "13.159745173564769",
1661
- "National": "12.458511300757475",
1662
- "Northeast": "11.030007589486537",
1663
- "South": "13.62666327596709",
1664
- "West": "11.297034456001485",
1665
- "date_period": "45 Days"
1666
- },
1667
- {
1668
- "date": "2024-01-06",
1669
- "Midwest": "11.49205528009189",
1670
- "National": "11.662070085400206",
1671
- "Northeast": "10.065026332919913",
1672
- "South": "12.825647163847222",
1673
- "West": "12.819118439946735",
1674
- "date_period": "6 Months"
1675
- },
1676
- {
1677
- "date": "2024-01-06",
1678
- "Midwest": "11.49205528009189",
1679
- "National": "11.662070085400206",
1680
- "Northeast": "10.065026332919913",
1681
- "South": "12.825647163847222",
1682
- "West": "12.819118439946735",
1683
- "date_period": "All Results"
1684
- },
1685
- {
1686
- "date": "2024-01-06",
1687
- "Midwest": "11.49205528009189",
1688
- "National": "11.662070085400206",
1689
- "Northeast": "10.065026332919913",
1690
- "South": "12.825647163847222",
1691
- "West": "12.819118439946735",
1692
- "date_period": "1 Year"
1693
- },
1694
- {
1695
- "date": "2024-01-06",
1696
- "Midwest": "11.49205528009189",
1697
- "National": "11.662070085400206",
1698
- "Northeast": "10.065026332919913",
1699
- "South": "12.825647163847222",
1700
- "West": "12.819118439946735",
1701
- "date_period": "45 Days"
1702
- },
1703
- {
1704
- "date": "2024-01-13",
1705
- "Midwest": "10.149528303302601",
1706
- "National": "9.382994293096292",
1707
- "Northeast": "7.917346924619587",
1708
- "South": "10.35881425702413",
1709
- "West": "8.270554731334638",
1710
- "date_period": "6 Months"
1711
- },
1712
- {
1713
- "date": "2024-01-13",
1714
- "Midwest": "10.149528303302601",
1715
- "National": "9.382994293096292",
1716
- "Northeast": "7.917346924619587",
1717
- "South": "10.35881425702413",
1718
- "West": "8.270554731334638",
1719
- "date_period": "All Results"
1720
- },
1721
- {
1722
- "date": "2024-01-13",
1723
- "Midwest": "10.149528303302601",
1724
- "National": "9.382994293096292",
1725
- "Northeast": "7.917346924619587",
1726
- "South": "10.35881425702413",
1727
- "West": "8.270554731334638",
1728
- "date_period": "1 Year"
1729
- },
1730
- {
1731
- "date": "2024-01-13",
1732
- "Midwest": "10.149528303302601",
1733
- "National": "9.382994293096292",
1734
- "Northeast": "7.917346924619587",
1735
- "South": "10.35881425702413",
1736
- "West": "8.270554731334638",
1737
- "date_period": "45 Days"
1738
- }
1739
- ]