@cdc/chart 4.23.3 → 4.23.5

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 (98) hide show
  1. package/dist/cdcchart.js +52543 -50830
  2. package/examples/feature/__data__/area-chart.json +56 -0
  3. package/examples/{planet-example-data.json → feature/__data__/planet-example-data.json} +3 -8
  4. package/examples/feature/__data__/planet-logaritmic-data.json +56 -0
  5. package/examples/feature/area/area-chart-category.json +240 -0
  6. package/examples/{area-chart.json → feature/area/area-chart-date.json} +70 -13
  7. package/examples/feature/bar/example-bar-chart.json +558 -0
  8. package/examples/{horizontal-chart-max-increase.json → feature/bar/horizontal-chart-max-increase.json} +10 -4
  9. package/examples/{horizontal-chart.json → feature/bar/horizontal-chart.json} +10 -4
  10. package/examples/{horizontal-stacked-bar-chart.json → feature/bar/horizontal-stacked-bar-chart.json} +7 -3
  11. package/examples/{planet-chart-horizontal-example-config.json → feature/bar/planet-chart-horizontal-example-config.json} +8 -3
  12. package/examples/feature/bar/planet-chart-logaritmic-config.json +170 -0
  13. package/examples/{planet-example-config.json → feature/bar/planet-example-config.json} +2 -2
  14. package/examples/{box-plot.json → feature/boxplot/boxplot.json} +7 -7
  15. package/examples/feature/boxplot/testing.csv +38 -0
  16. package/examples/feature/boxplot/valid-boxplot.csv +17 -0
  17. package/examples/feature/combo/combochart-categories_are_numbers .json +18 -0
  18. package/examples/{planet-combo-example-config.json → feature/combo/planet-combo-example-config.json} +1 -1
  19. package/examples/{planet-deviation-config.json → feature/deviation/planet-deviation-config.json} +2 -2
  20. package/examples/{planet-deviation-data.json → feature/deviation/planet-deviation-data.json} +9 -9
  21. package/examples/feature/filters/filter-testing.json +212 -0
  22. package/examples/feature/forecasting/case_date_example.csv +130 -0
  23. package/examples/feature/forecasting/effective_reproduction.json +202 -0
  24. package/examples/feature/forecasting/r_data.csv +130 -0
  25. package/examples/feature/forecasting/random_data.csv +366 -0
  26. package/examples/feature/line/line-chart.json +124 -0
  27. package/examples/{paired-bar-example.json → feature/paired-bar/paired-bar-example.json} +10 -4
  28. package/examples/{planet-pie-example-config.json → feature/pie/planet-pie-example-config.json} +2 -2
  29. package/examples/{scatterplot.json → feature/scatterplot/scatterplot.json} +1 -1
  30. package/examples/feature/test-highlight/test-highlight-2.json +789 -0
  31. package/examples/feature/test-highlight/test-highlight-vertical.json +561 -0
  32. package/examples/feature/test-highlight/test-highlight.json +100 -0
  33. package/examples/{case-rate-example-config.json → feature/tests-case-rate/case-rate-example-config.json} +2 -2
  34. package/examples/{covid-confidence-example-config.json → feature/tests-covid/covid-confidence-example-config.json} +8 -3
  35. package/examples/{covid-example-config.json → feature/tests-covid/covid-example-config.json} +7 -3
  36. package/examples/{cutoff-example-config.json → feature/tests-cutoff/cutoff-example-config.json} +7 -3
  37. package/examples/{date-exclusions-config.json → feature/tests-date-exclusions/date-exclusions-config.json} +2 -2
  38. package/examples/{example-bar-chart-nonnumeric.json → feature/tests-non-numerics/example-bar-chart-nonnumeric.json} +1 -1
  39. package/examples/{planet-pie-example-config-nonnumeric.json → feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json} +2 -2
  40. package/examples/{sparkline-chart-nonnumeric.json → feature/tests-non-numerics/sparkline-chart-nonnumeric.json} +1 -1
  41. package/examples/{stacked-vertical-bar-example-nonnumerics.json → feature/tests-non-numerics/stacked-vertical-bar-example-nonnumerics.json} +1 -2
  42. package/examples/gallery/bar-chart-horizontal/horizontal-highlight.json +345 -0
  43. package/examples/gallery/bar-chart-vertical/combo-line-chart.json +145 -7
  44. package/examples/gallery/paired-bar/paired-bar-chart.json +1 -0
  45. package/index.html +73 -49
  46. package/package.json +2 -2
  47. package/src/CdcChart.jsx +405 -40
  48. package/src/components/AreaChart.jsx +122 -80
  49. package/src/components/BarChart.jsx +126 -49
  50. package/src/components/BoxPlot.jsx +28 -20
  51. package/src/components/DataTable.jsx +7 -6
  52. package/src/components/DeviationBar.jsx +34 -34
  53. package/src/components/EditorPanel.jsx +1332 -352
  54. package/src/components/Legend.jsx +40 -4
  55. package/src/components/LineChart.jsx +10 -23
  56. package/src/components/LinearChart.jsx +133 -286
  57. package/src/components/PairedBarChart.jsx +6 -6
  58. package/src/components/PieChart.jsx +2 -4
  59. package/src/components/SparkLine.jsx +6 -42
  60. package/src/data/initial-state.js +23 -4
  61. package/src/hooks/useHighlightedBars.js +154 -0
  62. package/src/hooks/useMinMax.js +92 -0
  63. package/src/hooks/useReduceData.js +31 -57
  64. package/src/hooks/useScales.js +202 -0
  65. package/src/index.jsx +2 -1
  66. package/src/scss/editor-panel.scss +15 -0
  67. package/src/scss/main.scss +8 -6
  68. package/examples/box-plot.csv +0 -5
  69. package/examples/dynamic-legends.json +0 -125
  70. package/examples/example-bar-chart.json +0 -36
  71. package/examples/line-chart.json +0 -34
  72. package/examples/temp-example-config.json +0 -64
  73. package/examples/temp-example-data.json +0 -130
  74. package/src/components/Filters.jsx +0 -126
  75. /package/examples/{age-adjusted-rates.json → feature/__data__/age-adjusted-rates.json} +0 -0
  76. /package/examples/{new-data.csv → feature/__data__/new-data.csv} +0 -0
  77. /package/examples/{planet-example-data-max-increase.json → feature/__data__/planet-example-data-max-increase.json} +0 -0
  78. /package/examples/{Barchart_with_negative.json → feature/bar/Barchart_with_negative.json} +0 -0
  79. /package/examples/{stacked-vertical-bar-example-negative.json → feature/bar/stacked-vertical-bar-example-negative.json} +0 -0
  80. /package/examples/{stacked-vertical-bar-example.json → feature/bar/stacked-vertical-bar-example.json} +0 -0
  81. /package/examples/{box-plot-data.json → feature/boxplot/box-plot-data.json} +0 -0
  82. /package/examples/{newdata.json → feature/boxplot/boxplot-data.json} +0 -0
  83. /package/examples/{line-chart-max-increase.json → feature/line/line-chart-max-increase.json} +0 -0
  84. /package/examples/{paired-bar-data.json → feature/paired-bar/paired-bar-data.json} +0 -0
  85. /package/examples/{paired-bar-formatted.json → feature/paired-bar/paired-bar-formatted.json} +0 -0
  86. /package/examples/{scatterplot-continuous.csv → feature/scatterplot/scatterplot-continuous.csv} +0 -0
  87. /package/examples/{example-sparkline.json → feature/sparkline/example-sparkline.json} +0 -0
  88. /package/examples/{big-small-test-bar.json → feature/tests-big-small/big-small-test-bar.json} +0 -0
  89. /package/examples/{big-small-test-line.json → feature/tests-big-small/big-small-test-line.json} +0 -0
  90. /package/examples/{big-small-test-negative.json → feature/tests-big-small/big-small-test-negative.json} +0 -0
  91. /package/examples/{case-rate-example-data.json → feature/tests-case-rate/case-rate-example-data.json} +0 -0
  92. /package/examples/{covid-example-data-confidence.json → feature/tests-covid/covid-example-data-confidence.json} +0 -0
  93. /package/examples/{covid-example-data.json → feature/tests-covid/covid-example-data.json} +0 -0
  94. /package/examples/{cutoff-example-data.json → feature/tests-cutoff/cutoff-example-data.json} +0 -0
  95. /package/examples/{date-exclusions-data.json → feature/tests-date-exclusions/date-exclusions-data.json} +0 -0
  96. /package/examples/{example-combo-bar-nonnumeric.json → feature/tests-non-numerics/example-combo-bar-nonnumeric.json} +0 -0
  97. /package/examples/{line-chart-nonnumeric.json → feature/tests-non-numerics/line-chart-nonnumeric.json} +0 -0
  98. /package/examples/{planet-example-data-nonnumeric.json → feature/tests-non-numerics/planet-example-data-nonnumeric.json} +0 -0
@@ -0,0 +1,130 @@
1
+ date,variable,type,median,mean,sd,lower_90,lower_50,lower_20,upper_20,upper_50,upper_90,confirm
2
+ 6/20/2022,reported_cases,estimate,21,21.5932034,8.40085911,10,15,19,23,27,36,16
3
+ 6/21/2022,reported_cases,estimate,26,27.06246877,9.714658805,13,20,24,29,33,45,14
4
+ 6/22/2022,reported_cases,estimate,26,26.59070465,9.467623437,13,20,23,28,32,44,27
5
+ 6/23/2022,reported_cases,estimate,31,32.03498251,11.59848161,15,24,28,33,39,53,25
6
+ 6/24/2022,reported_cases,estimate,31,32.3868066,11.87515498,16,24,28,34,39,54,19
7
+ 6/25/2022,reported_cases,estimate,13,13.95152424,5.679009502,6,10,12,15,18,25,26
8
+ 6/26/2022,reported_cases,estimate,10,10.5902049,4.687854947,4,7,9,11,13,19,16
9
+ 6/27/2022,reported_cases,estimate,42,44.02498751,15.54658726,22,33,39,46,53,72,55
10
+ 6/28/2022,reported_cases,estimate,53,54.67216392,18.14997162,29,42,48,58,65,88,53
11
+ 6/29/2022,reported_cases,estimate,50,51.68015992,17.30851383,27,40,46,54,62,83,51
12
+ 6/30/2022,reported_cases,estimate,59,61.5872064,19.91289824,33,47,55,64,74,97,69
13
+ 7/1/2022,reported_cases,estimate,58,60.79510245,20.32919074,32,46,54,64,72,98,82
14
+ 7/2/2022,reported_cases,estimate,25,26.47776112,10.01766591,12,19,23,28,32,45,18
15
+ 7/3/2022,reported_cases,estimate,19,19.77561219,7.367233194,9,14,17,21,24,33,21
16
+ 7/4/2022,reported_cases,estimate,81,84.77161419,28.35320641,45,64,75,89,101,135,16
17
+ 7/5/2022,reported_cases,estimate,99,102.055972,33.19694061,54,79,91,107,121,163,95
18
+ 7/6/2022,reported_cases,estimate,94,97.2033983,31.33897108,51,76,87,101,115,151,63
19
+ 7/7/2022,reported_cases,estimate,113,117.2028986,37.12426176,64,90,104,123,139,183,141
20
+ 7/8/2022,reported_cases,estimate,112,115.11994,36.65623558,63,89,103,120,137,181,146
21
+ 7/9/2022,reported_cases,estimate,48,49.85407296,16.81465714,25,38,44,53,60,80,52
22
+ 7/10/2022,reported_cases,estimate,36,37.68765617,13.51269376,18,28,33,40,45,62,29
23
+ 7/11/2022,reported_cases,estimate,150,156.4797601,49.88724,84,121,140,162,185,248,185
24
+ 7/12/2022,reported_cases,estimate,185,191.2203898,60.74185463,105,147,170,199,227,301,197
25
+ 7/13/2022,reported_cases,estimate,171,177.0044978,56.32000959,95,137,158,185,208,281,194
26
+ 7/14/2022,reported_cases,estimate,206,214.2738631,68.19949385,115,167,191,222,256,339,194
27
+ 7/15/2022,reported_cases,estimate,199,206.7301349,63.48766917,114,162,184,216,244,319,245
28
+ 7/16/2022,reported_cases,estimate,85,87.72063968,28.24766218,47,68,79,92,105,140,76
29
+ 7/17/2022,reported_cases,estimate,62,64.68465767,21.40864334,33,50,57,68,77,104,72
30
+ 7/18/2022,reported_cases,estimate,259,267.5137431,82.12187855,148,209,238,280,316,419,226
31
+ 7/19/2022,reported_cases,estimate,310,317.2943528,95.99398321,176,249,285,332,372,489,275
32
+ 7/20/2022,reported_cases,estimate,281,291.0034983,91.5910721,160,227,261,301,342,466,304
33
+ 7/21/2022,reported_cases,estimate,328,340.3608196,104.2317885,194,267,305,354,399,536,291
34
+ 7/22/2022,reported_cases,estimate,319,326.906047,100.216272,182,255,293,342,387,506,326
35
+ 7/23/2022,reported_cases,estimate,130,135.3983008,42.88813096,74,104,121,141,162,213,136
36
+ 7/24/2022,reported_cases,estimate,95,98.36031984,31.51454592,53,76,87,103,118,156,101
37
+ 7/25/2022,reported_cases,estimate,386,396.6536732,122.6949856,214,308,358,417,470,619,741
38
+ 7/26/2022,reported_cases,estimate,446,464.2098951,142.7245106,268,367,414,478,545,734,327
39
+ 7/27/2022,reported_cases,estimate,409,417.8215892,128.5316485,231,325,374,438,494,650,451
40
+ 7/28/2022,reported_cases,estimate,456,472.0304848,143.1181175,267,372,420,492,559,724,388
41
+ 7/29/2022,reported_cases,estimate,428,443.4127936,136.2389758,249,345,395,461,526,685,485
42
+ 7/30/2022,reported_cases,estimate,176,182.7016492,56.53462162,101,142,163,190,218,284,206
43
+ 7/31/2022,reported_cases,estimate,124,128.8075962,41.86977982,69,99,114,134,153,205,155
44
+ 8/1/2022,reported_cases,estimate,495,508.5777111,156.3914386,277,400,459,529,599,790,543
45
+ 8/2/2022,reported_cases,estimate,560,579.4697651,175.3801163,331,453,518,604,678,897,422
46
+ 8/3/2022,reported_cases,estimate,497,511.7796102,152.9390039,291,402,461,536,606,792,434
47
+ 8/4/2022,reported_cases,estimate,550,573.2098951,175.8967365,329,447,510,598,678,899,491
48
+ 8/5/2022,reported_cases,estimate,507,523.4327836,160.4658861,288,410,469,549,620,814,474
49
+ 8/6/2022,reported_cases,estimate,200,208.143928,65.99857024,116,161,186,216,246,328,240
50
+ 8/7/2022,reported_cases,estimate,139,142.9690155,45.62752502,77,110,127,150,169,225,149
51
+ 8/8/2022,reported_cases,estimate,540,559.5157421,172.0648421,315,435,501,582,664,869,516
52
+ 8/9/2022,reported_cases,estimate,604,626.8385807,193.2794698,349,491,558,656,747,979,520
53
+ 8/10/2022,reported_cases,estimate,524,540.4782609,162.5317158,304,422,487,564,642,839,934
54
+ 8/11/2022,reported_cases,estimate,570,590.8590705,183.8855354,323,462,529,618,701,912,495
55
+ 8/12/2022,reported_cases,estimate,514,530.5732134,158.736249,303,416,474,554,627,820,426
56
+ 8/13/2022,reported_cases,estimate,204,209.4312844,64.56824607,112,162,189,221,250,322,245
57
+ 8/14/2022,reported_cases,estimate,139,143.045977,44.64371048,79,112,127,149,171,223,155
58
+ 8/15/2022,reported_cases,estimate,539,554.4742629,167.0132015,311,432,498,580,651,859,649
59
+ 8/16/2022,reported_cases,estimate,574,593.8785607,183.7399487,334,459,529,618,704,924,395
60
+ 8/17/2022,reported_cases,estimate,496,513.3098451,157.2196106,284,402,461,537,605,801,386
61
+ 8/18/2022,reported_cases,estimate,533,550.0924538,171.2567136,309,432,491,573,646,845,486
62
+ 8/19/2022,reported_cases,estimate,476,490.1764118,145.4901899,281,389,442,510,575,754,465
63
+ 8/20/2022,reported_cases,estimate,184,189.2368816,59.09608159,104,146,168,198,224,297,195
64
+ 8/21/2022,reported_cases,estimate,125,129.7966017,41.13211772,72,100,115,136,153,208,135
65
+ 8/22/2022,reported_cases,estimate,474,486.4052974,146.8472443,273,380,436,511,573,754,552
66
+ 8/23/2022,reported_cases,estimate,509,527.2463768,163.5960292,291,411,471,550,625,830,948
67
+ 8/24/2022,reported_cases,estimate,440,451.6461769,138.6479598,252,352,405,473,533,702,324
68
+ 8/25/2022,reported_cases,estimate,477,488.0069965,153.1153877,263,378,437,512,579,754,450
69
+ 8/26/2022,reported_cases,estimate,410,426.2048976,131.149472,236,331,379,450,508,663,402
70
+ 8/27/2022,reported_cases,estimate,155,160.9210395,50.87933532,89,125,143,168,190,256,148
71
+ 8/28/2022,reported_cases,estimate,107,109.6691654,34.09890752,59,86,98,116,131,170,90
72
+ 8/29/2022,reported_cases,estimate,396,410.3953023,121.9823805,233,326,369,429,480,627,524
73
+ 8/30/2022,reported_cases,estimate,431,442.0534733,133.7661566,247,347,396,463,521,694,506
74
+ 8/31/2022,reported_cases,estimate,366,376.5432284,117.1139926,208,295,339,392,443,584,310
75
+ 9/1/2022,reported_cases,estimate,390,407.7101449,127.125249,227,317,362,427,483,634,360
76
+ 9/2/2022,reported_cases,estimate,341,353.3528236,110.0661867,194,276,314,371,422,552,452
77
+ 9/3/2022,reported_cases,estimate,132,135.3753123,42.24620184,74,105,122,142,162,210,103
78
+ 9/4/2022,reported_cases,estimate,87,89.51974013,29.97330037,46,68,80,93,107,143,89
79
+ 9/5/2022,reported_cases,estimate,326,336.3533233,102.7032307,188,263,301,351,398,529,91
80
+ 9/6/2022,reported_cases,estimate,352,364.9930035,111.4294842,207,284,328,380,431,565,708
81
+ 9/7/2022,reported_cases,estimate,295,307.131934,96.57302721,173,238,271,320,365,478,242
82
+ 9/8/2022,reported_cases,estimate,319,327.1754123,98.77616977,185,258,294,340,387,509,291
83
+ 9/9/2022,reported_cases,estimate,279,288.0734633,88.5135645,162,224,257,298,342,448,271
84
+ 9/10/2022,reported_cases,estimate,104,108.3203398,34.02513528,58,84,97,114,129,168,95
85
+ 9/11/2022,reported_cases,estimate,71,73.08795602,23.87941079,38,56,65,77,87,114,81
86
+ 9/12/2022,reported_cases,estimate,263,274.0264868,84.32725418,154,213,243,286,327,424,291
87
+ 9/13/2022,reported_cases,estimate,290,299.17991,87.92410714,173,237,270,315,354,454,246
88
+ 9/14/2022,reported_cases,estimate,238,246.4292854,74.97544346,137,191,220,259,295,378,285
89
+ 9/15/2022,reported_cases,estimate,255,265.069965,83.07561677,144,207,235,277,316,416,258
90
+ 9/16/2022,reported_cases,estimate,221,227.2328836,69.27890543,129,178,203,238,269,350,181
91
+ 9/17/2022,reported_cases,estimate,86,89.12843578,29.39304333,47,68,79,93,106,144,88
92
+ 9/18/2022,reported_cases,estimate,57,58.50674663,18.82780071,31,44,52,62,71,91,68
93
+ 9/19/2022,reported_cases,estimate,214,220.6261869,69.79293799,121,169,197,231,262,344,298
94
+ 9/20/2022,reported_cases,estimate,229,236.8150925,73.82537363,132,186,212,246,279,372,278
95
+ 9/21/2022,reported_cases,estimate,188,196.0554723,61.88348262,107,153,174,204,235,304,226
96
+ 9/22/2022,reported_cases,estimate,200,207.7956022,65.43777732,112,161,185,217,249,324,239
97
+ 9/23/2022,reported_cases,estimate,175,182.9885057,58.79172023,99,142,162,190,216,290,180
98
+ 9/24/2022,reported_cases,estimate,68,70.34182909,22.70511164,38,54,63,73,83,112,56
99
+ 9/25/2022,reported_cases,estimate,44,46.12343828,15.56329834,24,35,41,48,55,75,39
100
+ 9/26/2022,reported_cases,estimate,170,174.4662669,53.93209607,97,135,155,183,207,271,174
101
+ 9/27/2022,reported_cases,estimate,178,184.9050475,57.43494563,102,145,165,193,218,288,154
102
+ 9/28/2022,reported_cases,estimate,151,154.9465267,47.28792276,85,121,140,163,184,239,165
103
+ 9/29/2022,reported_cases,estimate,157,163.3563218,51.66774111,90,127,146,169,193,258,188
104
+ 9/30/2022,reported_cases,estimate,136,142.6561719,44.42164701,79,111,126,148,169,224,125
105
+ 10/1/2022,reported_cases,estimate,52,53.50424788,18.24453636,27,40,47,57,65,87,54
106
+ 10/2/2022,reported_cases,estimate,34,35.18990505,11.78184697,18,27,31,37,42,57,27
107
+ 10/3/2022,reported_cases,estimate,127,131.7096452,42.266608,70,102,117,137,158,206,129
108
+ 10/4/2022,reported_cases,estimate,137,141.173913,44.27643548,79,110,126,148,166,221,135
109
+ 10/5/2022,reported_cases,estimate based on partial data,111,115.4562719,37.00408372,62,88,102,122,138,182,102
110
+ 10/6/2022,reported_cases,estimate based on partial data,115,120.5252374,38.81827518,64,93,106,126,145,194,170
111
+ 10/7/2022,reported_cases,estimate based on partial data,101,104.9935032,33.70008098,56,81,94,110,124,165,109
112
+ 10/8/2022,reported_cases,estimate based on partial data,38,39.88355822,13.97354409,19,30,35,42,48,65,33
113
+ 10/9/2022,reported_cases,estimate based on partial data,25,25.68465767,9.105713014,13,19,22,27,31,42,19
114
+ 10/10/2022,reported_cases,estimate based on partial data,92,95.62118941,30.4513453,51,74,85,100,114,148,42
115
+ 10/11/2022,reported_cases,estimate based on partial data,96,99.85157421,31.43296771,55,78,89,104,118,157,143
116
+ 10/12/2022,reported_cases,estimate based on partial data,80,82.68065967,27.33752861,45,62,73,86,99,131,106
117
+ 10/13/2022,reported_cases,estimate based on partial data,83,86.08245877,27.49341189,47,66,76,90,103,135,127
118
+ 10/14/2022,reported_cases,estimate based on partial data,71,74.52973513,25.57944957,40,56,66,78,89,120,80
119
+ 10/15/2022,reported_cases,estimate based on partial data,27,28.03648176,10.38730804,13,21,25,29,34,46,24
120
+ 10/16/2022,reported_cases,estimate based on partial data,17,18.001999,7.050957098,8,13,15,19,22,31,8
121
+ 10/17/2022,reported_cases,estimate based on partial data,64,66.41629185,23.28585653,34,49,58,69,80,109,95
122
+ 10/18/2022,reported_cases,estimate based on partial data,69,70.65267366,23.89466058,37,54,63,74,84,113,37
123
+ 10/19/2022,reported_cases,estimate based on partial data,54,56.37431284,20.05061894,29,42,49,59,68,92,52
124
+ 10/20/2022,reported_cases,forecast,57,59.73263368,22.02861729,29,44,52,62,72,99,NA
125
+ 10/21/2022,reported_cases,forecast,47,50.10844578,19.09378783,24,36,43,52,61,87,NA
126
+ 10/22/2022,reported_cases,forecast,18,19.30234883,8.561135408,7,13,16,20,24,35,NA
127
+ 10/23/2022,reported_cases,forecast,12,12.47826087,5.995052308,5,8,10,13,16,24,NA
128
+ 10/24/2022,reported_cases,forecast,43,46.04247876,19.28718991,21,33,39,47,56,81,NA
129
+ 10/25/2022,reported_cases,forecast,45,48.10744628,21.52746965,21,33,40,50,59,85,NA
130
+ 10/26/2022,reported_cases,forecast,36,39.2123938,18.31593204,17,26,32,40,48,75,NA
@@ -0,0 +1,202 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "Forecasting Chart Example",
4
+ "showTitle": true,
5
+ "theme": "theme-blue",
6
+ "animate": true,
7
+ "fontSize": "medium",
8
+ "lineDatapointStyle": "hover",
9
+ "barHasBorder": "false",
10
+ "isLollipopChart": false,
11
+ "lollipopShape": "circle",
12
+ "lollipopColorStyle": "two-tone",
13
+ "visualizationSubType": "regular",
14
+ "barStyle": "",
15
+ "roundingStyle": "standard",
16
+ "tipRounding": "top",
17
+ "padding": {
18
+ "left": 0,
19
+ "right": 0
20
+ },
21
+ "yAxis": {
22
+ "hideAxis": false,
23
+ "displayNumbersOnBar": false,
24
+ "hideLabel": false,
25
+ "hideTicks": false,
26
+ "size": "75",
27
+ "gridLines": false,
28
+ "enablePadding": false,
29
+ "min": "",
30
+ "max": "",
31
+ "labelColor": "#333",
32
+ "tickLabelColor": "#333",
33
+ "tickColor": "#333",
34
+ "rightHideAxis": false,
35
+ "rightAxisSize": 50,
36
+ "rightLabel": "",
37
+ "rightLabelOffsetSize": 0,
38
+ "rightAxisLabelColor": "#333",
39
+ "rightAxisTickLabelColor": "#333",
40
+ "rightAxisTickColor": "#333",
41
+ "numTicks": "",
42
+ "axisPadding": 0,
43
+ "tickRotation": 0,
44
+ "anchors": [],
45
+ "label": "Effective Reproduction No."
46
+ },
47
+ "boxplot": {
48
+ "plots": [],
49
+ "borders": "true",
50
+ "firstQuartilePercentage": 25,
51
+ "thirdQuartilePercentage": 75,
52
+ "boxWidthPercentage": 40,
53
+ "plotOutlierValues": false,
54
+ "plotNonOutlierValues": true,
55
+ "legend": {
56
+ "showHowToReadText": false,
57
+ "howToReadText": ""
58
+ },
59
+ "labels": {
60
+ "q1": "Lower Quartile",
61
+ "q2": "q2",
62
+ "q3": "Upper Quartile",
63
+ "q4": "q4",
64
+ "minimum": "Minimum",
65
+ "maximum": "Maximum",
66
+ "mean": "Mean",
67
+ "median": "Median",
68
+ "sd": "Standard Deviation",
69
+ "iqr": "Interquartile Range",
70
+ "count": "Count",
71
+ "outliers": "Outliers",
72
+ "values": "Values"
73
+ }
74
+ },
75
+ "topAxis": {
76
+ "hasLine": true
77
+ },
78
+ "isLegendValue": false,
79
+ "barThickness": 0.35,
80
+ "barHeight": 25,
81
+ "barSpace": 15,
82
+ "heights": {
83
+ "vertical": 300,
84
+ "horizontal": 750
85
+ },
86
+ "xAxis": {
87
+ "type": "date",
88
+ "showTargetLabel": true,
89
+ "targetLabel": "Target",
90
+ "hideAxis": false,
91
+ "hideLabel": false,
92
+ "hideTicks": false,
93
+ "size": 75,
94
+ "tickRotation": 30,
95
+ "min": "",
96
+ "max": "",
97
+ "labelColor": "#333",
98
+ "tickLabelColor": "#333",
99
+ "tickColor": "#333",
100
+ "numTicks": "",
101
+ "labelOffset": 65,
102
+ "axisPadding": 0,
103
+ "target": 0,
104
+ "anchors": [
105
+ {
106
+ "value": "10/19/2022",
107
+ "lineStyle": "dashed-md"
108
+ }
109
+ ],
110
+ "label": "",
111
+ "dataKey": "date",
112
+ "dateParseFormat": "%m/%d/%Y",
113
+ "dateDisplayFormat": "%m/%d/%Y"
114
+ },
115
+ "table": {
116
+ "label": "Data Table",
117
+ "expanded": false,
118
+ "limitHeight": false,
119
+ "height": "",
120
+ "caption": "",
121
+ "showDownloadUrl": false,
122
+ "showDataTableLink": true,
123
+ "show": true
124
+ },
125
+ "orientation": "vertical",
126
+ "legend": {
127
+ "behavior": "isolate",
128
+ "singleRow": false,
129
+ "colorCode": "",
130
+ "reverseLabelOrder": false,
131
+ "description": "",
132
+ "dynamicLegend": false,
133
+ "dynamicLegendDefaultText": "Show All",
134
+ "dynamicLegendItemLimit": 5,
135
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
136
+ "dynamicLegendChartMessage": "Select Options from the Legend",
137
+ "position": "right",
138
+ "hide": true
139
+ },
140
+ "exclusions": {
141
+ "active": false,
142
+ "keys": []
143
+ },
144
+ "palette": "sequential-green",
145
+ "isPaletteReversed": false,
146
+ "twoColor": {
147
+ "palette": "monochrome-1",
148
+ "isPaletteReversed": false
149
+ },
150
+ "labels": false,
151
+ "dataFormat": {
152
+ "commas": false,
153
+ "prefix": "",
154
+ "suffix": "",
155
+ "abbreviated": false,
156
+ "bottomSuffix": "",
157
+ "bottomPrefix": "",
158
+ "bottomAbbreviated": false,
159
+ "roundTo": "0"
160
+ },
161
+ "confidenceKeys": {},
162
+ "visual": {
163
+ "border": true,
164
+ "accent": true,
165
+ "background": true
166
+ },
167
+ "filterBehavior": "Filter Change",
168
+ "forecastingChart": {
169
+ "showBars": false,
170
+ "barColumn": "confirm",
171
+ "barColor": "#918e90",
172
+ "confidenceIntervals": [
173
+ {
174
+ "low": "lower_20",
175
+ "high": "upper_20"
176
+ },
177
+ {
178
+ "low": "lower_50",
179
+ "high": "upper_50"
180
+ },
181
+ {
182
+ "low": "lower_90",
183
+ "high": "upper_90"
184
+ }
185
+ ],
186
+ "stages": "type",
187
+ "colors": [
188
+ "qualitative4reverse",
189
+ "sequential-bluereverse",
190
+ "sequential-greenreverse"
191
+ ],
192
+ "groups": [
193
+ "estimate",
194
+ "estimate based on partial data",
195
+ "forecast"
196
+ ],
197
+ "showBarColumn": true
198
+ },
199
+ "dataUrl": "./examples/feature/forecasting/r_data.csv",
200
+ "animateReplay": true,
201
+ "visualizationType": "Forecasting"
202
+ }
@@ -0,0 +1,130 @@
1
+ date,variable,type,median,mean,sd,lower_90,lower_50,lower_20,upper_20,upper_50,upper_90,confirm
2
+ 6/20/2022,R,estimate,1.143164524,1.143010872,0.036964454,1.082344248,1.120776849,1.134410495,1.151823941,1.166002971,1.199141261,16
3
+ 6/21/2022,R,estimate,1.142141423,1.142169861,0.033640144,1.086654085,1.121883993,1.134687879,1.150268383,1.163077775,1.194425168,14
4
+ 6/22/2022,R,estimate,1.141561815,1.141192575,0.030465595,1.090762992,1.122607938,1.134594715,1.148501587,1.160537946,1.189629768,27
5
+ 6/23/2022,R,estimate,1.140465799,1.140058291,0.027477639,1.094773278,1.123128382,1.134308824,1.146895331,1.157439125,1.184078556,25
6
+ 6/24/2022,R,estimate,1.139095648,1.138746371,0.024715616,1.097788726,1.123233014,1.133440403,1.144767261,1.15447772,1.178641956,19
7
+ 6/25/2022,R,estimate,1.137252687,1.137236883,0.022218583,1.099971068,1.123076025,1.132139823,1.142367799,1.151238562,1.173702779,26
8
+ 6/26/2022,R,estimate,1.135404,1.135511247,0.020021626,1.102588689,1.12259539,1.130515198,1.140057103,1.14825573,1.169252435,16
9
+ 6/27/2022,R,estimate,1.133037567,1.133552863,0.018151421,1.104934208,1.121593126,1.12895489,1.137453644,1.145333316,1.164248415,55
10
+ 6/28/2022,R,estimate,1.131172197,1.131347691,0.016621062,1.104936287,1.12035133,1.126741815,1.135026675,1.142244567,1.158897942,53
11
+ 6/29/2022,R,estimate,1.128816156,1.128884738,0.015424705,1.103913075,1.118551408,1.124730337,1.132407645,1.138609242,1.154419377,51
12
+ 6/30/2022,R,estimate,1.125882501,1.126156414,0.014533944,1.10290032,1.116604259,1.122407616,1.129517014,1.135834728,1.150620273,69
13
+ 7/1/2022,R,estimate,1.122607918,1.123158761,0.013898752,1.101055448,1.114051617,1.119664968,1.126347198,1.132258504,1.146425102,82
14
+ 7/2/2022,R,estimate,1.119447245,1.119891557,0.013454584,1.098890345,1.111043352,1.116321398,1.122831223,1.128575417,1.142341178,18
15
+ 7/3/2022,R,estimate,1.115821469,1.116358316,0.013133991,1.096238686,1.107914116,1.112851155,1.119105404,1.124641023,1.13865594,21
16
+ 7/4/2022,R,estimate,1.111869508,1.112566189,0.012878617,1.093199597,1.104268142,1.109183744,1.114924112,1.120564067,1.134212825,16
17
+ 7/5/2022,R,estimate,1.107908863,1.108525794,0.012647744,1.089558794,1.100310306,1.105055676,1.110701551,1.11625468,1.129199799,95
18
+ 7/6/2022,R,estimate,1.103580912,1.104250963,0.012421573,1.085493492,1.096320347,1.100678023,1.10629828,1.111622217,1.125482831,63
19
+ 7/7/2022,R,estimate,1.098901729,1.099758426,0.012199272,1.081759582,1.091920057,1.096196043,1.101746047,1.107195066,1.120926241,141
20
+ 7/8/2022,R,estimate,1.09423292,1.095067452,0.011992878,1.077355828,1.087279499,1.091633857,1.097129731,1.10242999,1.11584718,146
21
+ 7/9/2022,R,estimate,1.08943816,1.090199467,0.011818812,1.072634031,1.082358233,1.08670624,1.092041026,1.097356995,1.110861537,52
22
+ 7/10/2022,R,estimate,1.084433492,1.085177681,0.011689436,1.067672735,1.077317464,1.081899569,1.087126792,1.092277696,1.105268173,29
23
+ 7/11/2022,R,estimate,1.079379105,1.080026735,0.011607259,1.062396459,1.072369555,1.076579402,1.082080802,1.087257774,1.099934847,185
24
+ 7/12/2022,R,estimate,1.074154953,1.074772378,0.011563578,1.056998452,1.067107488,1.071317315,1.076905882,1.081969607,1.094494115,197
25
+ 7/13/2022,R,estimate,1.068741394,1.069441153,0.011541517,1.05152594,1.061827629,1.066399629,1.07165578,1.076372171,1.089020516,194
26
+ 7/14/2022,R,estimate,1.063601965,1.064060077,0.011521615,1.046085004,1.056677557,1.060961924,1.06615627,1.070904616,1.084179657,194
27
+ 7/15/2022,R,estimate,1.058259278,1.058656293,0.011487507,1.040603069,1.051471652,1.055632993,1.060797609,1.065452142,1.078429889,245
28
+ 7/16/2022,R,estimate,1.052872228,1.053256684,0.011429885,1.035505783,1.046119508,1.050426732,1.055364327,1.060053456,1.072345414,76
29
+ 7/17/2022,R,estimate,1.047618615,1.047887466,0.01134799,1.030138196,1.040884989,1.045237555,1.050050512,1.054724393,1.066988994,72
30
+ 7/18/2022,R,estimate,1.042487385,1.042573767,0.011248833,1.024497896,1.035998349,1.039963469,1.045001139,1.049321708,1.061244923,226
31
+ 7/19/2022,R,estimate,1.037448492,1.037339234,0.011144786,1.018545351,1.030909484,1.034910902,1.039821477,1.044010339,1.055460907,275
32
+ 7/20/2022,R,estimate,1.032258207,1.032205695,0.011050385,1.013684982,1.025604849,1.029887226,1.034657435,1.038849095,1.050186922,304
33
+ 7/21/2022,R,estimate,1.027490742,1.027192906,0.010979069,1.008780104,1.020712131,1.024989139,1.029950134,1.034010335,1.044833322,291
34
+ 7/22/2022,R,estimate,1.022812493,1.022318391,0.010940382,1.004203346,1.015850908,1.020143618,1.02506421,1.029090312,1.039413332,326
35
+ 7/23/2022,R,estimate,1.017997571,1.017597391,0.010937977,0.99909955,1.011270415,1.015398046,1.020419273,1.024619889,1.034502839,136
36
+ 7/24/2022,R,estimate,1.013510786,1.013042905,0.010968631,0.994597261,1.006654653,1.010880696,1.016038954,1.020184276,1.029682678,101
37
+ 7/25/2022,R,estimate,1.009234658,1.008665804,0.011022487,0.990231976,1.002172359,1.006550709,1.011671088,1.015848711,1.025365677,741
38
+ 7/26/2022,R,estimate,1.005138782,1.004475002,0.011084654,0.986017462,0.997830005,1.00246541,1.007569437,1.011559012,1.021184535,327
39
+ 7/27/2022,R,estimate,1.001000517,1.000477646,0.011138082,0.981800891,0.993837439,0.998404935,1.003475583,1.007547047,1.017457795,451
40
+ 7/28/2022,R,estimate,0.997147218,0.9966793,0.011167289,0.978201182,0.99010995,0.994492781,0.999763189,1.003676725,1.013393109,388
41
+ 7/29/2022,R,estimate,0.993689558,0.993084097,0.011162148,0.974281058,0.986304978,0.990856863,0.995946041,1.000091014,1.009795015,485
42
+ 7/30/2022,R,estimate,0.9900597,0.989694822,0.011120741,0.97129141,0.983077739,0.987633172,0.992583396,0.996657066,1.00632074,206
43
+ 7/31/2022,R,estimate,0.98687263,0.986512922,0.011050248,0.968007257,0.979935087,0.98435158,0.989417347,0.993374964,1.003105769,155
44
+ 8/1/2022,R,estimate,0.983977779,0.983538451,0.010965238,0.965380075,0.976945186,0.981309874,0.986325935,0.990454619,1.000368924,543
45
+ 8/2/2022,R,estimate,0.981249332,0.98076997,0.010883489,0.962773272,0.974127083,0.978554488,0.983494772,0.987558824,0.99730121,422
46
+ 8/3/2022,R,estimate,0.978510317,0.978204458,0.010820596,0.960278274,0.971593899,0.97588069,0.98094763,0.984963119,0.994668192,434
47
+ 8/4/2022,R,estimate,0.976279573,0.975837281,0.010785558,0.958199537,0.969258113,0.973633077,0.978505641,0.982646149,0.992256112,491
48
+ 8/5/2022,R,estimate,0.974136679,0.973662271,0.010779432,0.956002419,0.967230103,0.971572586,0.976209248,0.980322593,0.9896539,474
49
+ 8/6/2022,R,estimate,0.972178104,0.971671938,0.010797573,0.953910577,0.965028597,0.969752714,0.974316004,0.978332802,0.987195141,240
50
+ 8/7/2022,R,estimate,0.970259735,0.96985779,0.010833868,0.951528002,0.963527347,0.967904448,0.972595044,0.976314419,0.985601557,149
51
+ 8/8/2022,R,estimate,0.968593865,0.968210753,0.010884123,0.949876819,0.962072776,0.966472419,0.970860211,0.974579334,0.984714603,516
52
+ 8/9/2022,R,estimate,0.967076753,0.966721606,0.010946555,0.94852661,0.960677587,0.964759145,0.969471898,0.973016312,0.9836439,520
53
+ 8/10/2022,R,estimate,0.965569233,0.965381416,0.011019428,0.947189414,0.959474861,0.963318621,0.968099007,0.971858741,0.98226945,934
54
+ 8/11/2022,R,estimate,0.964248604,0.9641819,0.011097985,0.946119255,0.958264266,0.962060777,0.966667726,0.97068044,0.981676956,495
55
+ 8/12/2022,R,estimate,0.963227895,0.963115703,0.011173211,0.944965306,0.957157598,0.960934933,0.965564286,0.969372,0.980829845,426
56
+ 8/13/2022,R,estimate,0.962199212,0.962176552,0.011233557,0.943927897,0.955953488,0.959920372,0.964596941,0.968498609,0.979775204,245
57
+ 8/14/2022,R,estimate,0.961302821,0.96135926,0.011268538,0.943218863,0.955118701,0.959134476,0.963758604,0.967696163,0.9794296,155
58
+ 8/15/2022,R,estimate,0.960491321,0.96065954,0.011271953,0.942815063,0.954278556,0.958257568,0.96297022,0.967170691,0.978744427,649
59
+ 8/16/2022,R,estimate,0.960023623,0.960073647,0.01124301,0.942431023,0.953560383,0.95755426,0.962557486,0.966703993,0.978137505,395
60
+ 8/17/2022,R,estimate,0.959495015,0.959597854,0.011185198,0.942769887,0.953048783,0.957219193,0.962146193,0.966307333,0.977171348,386
61
+ 8/18/2022,R,estimate,0.959252492,0.959227834,0.011104185,0.942131406,0.952705623,0.956965966,0.961821609,0.965969422,0.976559727,486
62
+ 8/19/2022,R,estimate,0.958848542,0.958958034,0.011006389,0.941753692,0.952683198,0.956748232,0.961432079,0.965723246,0.97595446,465
63
+ 8/20/2022,R,estimate,0.95886843,0.958781126,0.010899087,0.941428233,0.952518116,0.956438691,0.961241186,0.965477299,0.975978582,195
64
+ 8/21/2022,R,estimate,0.95887329,0.958687617,0.01079168,0.941414741,0.952426014,0.956273024,0.961209239,0.965141558,0.975970662,135
65
+ 8/22/2022,R,estimate,0.958889211,0.958665657,0.010696801,0.941282612,0.952133512,0.956098833,0.961252795,0.964907418,0.975828978,552
66
+ 8/23/2022,R,estimate,0.958616326,0.958701088,0.010629876,0.941156165,0.9522225,0.956115758,0.961167132,0.965171311,0.975973627,948
67
+ 8/24/2022,R,estimate,0.958645037,0.958777709,0.010606443,0.94125697,0.952090601,0.956143745,0.961293519,0.965404048,0.976389498,324
68
+ 8/25/2022,R,estimate,0.958747077,0.958877759,0.010637695,0.941698831,0.95202862,0.956094246,0.961174131,0.965247472,0.975891982,450
69
+ 8/26/2022,R,estimate,0.958697428,0.958982574,0.010725877,0.941771543,0.952296389,0.956286395,0.961060826,0.965782968,0.976583019,402
70
+ 8/27/2022,R,estimate,0.958614294,0.959073379,0.010861852,0.941937783,0.952263066,0.956425914,0.961238098,0.965611368,0.976778417,148
71
+ 8/28/2022,R,estimate,0.958552392,0.959132151,0.011026582,0.942263918,0.95222086,0.956199998,0.961350894,0.965728351,0.977311074,90
72
+ 8/29/2022,R,estimate,0.958612284,0.959142472,0.011196557,0.94218911,0.952151141,0.956108806,0.96135599,0.965697726,0.977533287,524
73
+ 8/30/2022,R,estimate,0.958699,0.959090267,0.011351168,0.941862737,0.95198458,0.956203914,0.96132007,0.96563619,0.977913855,506
74
+ 8/31/2022,R,estimate,0.958509616,0.958964353,0.011478951,0.941362559,0.951542468,0.956070932,0.961074376,0.96544793,0.977959764,310
75
+ 9/1/2022,R,estimate,0.958276436,0.958756703,0.011580073,0.941026979,0.951192456,0.955870247,0.960747875,0.965616657,0.978129742,360
76
+ 9/2/2022,R,estimate,0.957870527,0.95846242,0.011663997,0.941148448,0.950797691,0.955351931,0.960509485,0.965244533,0.978403167,452
77
+ 9/3/2022,R,estimate,0.957363028,0.958079441,0.011743413,0.94056884,0.950528258,0.95479726,0.960208338,0.964922605,0.978048206,103
78
+ 9/4/2022,R,estimate,0.957096349,0.957608057,0.011827205,0.939569031,0.94996587,0.95436669,0.959700375,0.96472832,0.978255615,89
79
+ 9/5/2022,R,estimate,0.956715567,0.957050334,0.011915709,0.938843036,0.949242456,0.953875793,0.959398815,0.964203237,0.977601458,91
80
+ 9/6/2022,R,estimate,0.955966713,0.956409543,0.01200022,0.937910876,0.948648988,0.953294932,0.958914392,0.963381251,0.976893047,708
81
+ 9/7/2022,R,estimate,0.955319232,0.955689648,0.012066502,0.93712388,0.947996797,0.952659602,0.958239028,0.96300613,0.976207747,242
82
+ 9/8/2022,R,estimate,0.954662363,0.954894897,0.012100305,0.936256098,0.947326632,0.95170191,0.957506166,0.962329478,0.975417396,291
83
+ 9/9/2022,R,estimate,0.95377074,0.954029529,0.012092535,0.935439614,0.94661212,0.950757214,0.956630395,0.961256609,0.973811315,271
84
+ 9/10/2022,R,estimate,0.952944549,0.953097573,0.012042485,0.934509596,0.945566165,0.94991198,0.95544022,0.960213635,0.973060541,95
85
+ 9/11/2022,R,estimate,0.95173954,0.952102749,0.011958525,0.933275644,0.944563716,0.94897134,0.954536192,0.959291361,0.972146151,81
86
+ 9/12/2022,R,estimate,0.950749103,0.951048434,0.011856388,0.932633024,0.943538423,0.947977972,0.953742627,0.957953583,0.970992231,291
87
+ 9/13/2022,R,estimate,0.949652068,0.949937698,0.011755708,0.93094761,0.942484608,0.946846609,0.952441229,0.956832447,0.969336655,246
88
+ 9/14/2022,R,estimate,0.948474997,0.948773369,0.011675845,0.930340728,0.941385829,0.945848298,0.951151414,0.955748013,0.967972756,285
89
+ 9/15/2022,R,estimate,0.947290206,0.947558145,0.011632382,0.929003544,0.940228287,0.944582379,0.949776561,0.954409189,0.966874966,258
90
+ 9/16/2022,R,estimate,0.946080651,0.946294706,0.011635561,0.927965383,0.939113713,0.94337024,0.948475492,0.953111451,0.965346006,181
91
+ 9/17/2022,R,estimate,0.944954546,0.944985847,0.011691217,0.926387968,0.93784927,0.942249383,0.947567097,0.951764545,0.963862096,88
92
+ 9/18/2022,R,estimate,0.943685965,0.943634588,0.011803583,0.925118178,0.936012558,0.940989168,0.946492203,0.950763667,0.96258184,68
93
+ 9/19/2022,R,estimate,0.942487323,0.94224427,0.011978452,0.923424437,0.934513647,0.939552556,0.945146037,0.949456617,0.96097024,298
94
+ 9/20/2022,R,estimate,0.941067392,0.940818627,0.012225115,0.921249253,0.932811885,0.937905548,0.944018632,0.948404818,0.960274968,278
95
+ 9/21/2022,R,estimate,0.939511893,0.939361829,0.012556317,0.919966961,0.931425814,0.936204255,0.942810243,0.947089199,0.959631534,226
96
+ 9/22/2022,R,estimate,0.937981492,0.937878524,0.012986604,0.917057708,0.929748332,0.934744285,0.94124894,0.946385796,0.958284454,239
97
+ 9/23/2022,R,estimate,0.936730336,0.936373881,0.013530307,0.914137078,0.927739126,0.93320123,0.939776523,0.945131667,0.957195766,180
98
+ 9/24/2022,R,estimate,0.935153785,0.93485366,0.0142005,0.911397875,0.926256134,0.931786458,0.938256086,0.944158654,0.956627697,56
99
+ 9/25/2022,R,estimate,0.933679225,0.933324311,0.015009456,0.90842596,0.924172599,0.930269516,0.937091615,0.943496344,0.956446238,39
100
+ 9/26/2022,R,estimate,0.932322852,0.931793072,0.015969951,0.904637927,0.92208231,0.928542312,0.935671416,0.942572897,0.956673631,174
101
+ 9/27/2022,R,estimate,0.930778847,0.930268037,0.017095913,0.90177939,0.919670182,0.92675967,0.934936356,0.941908625,0.957107714,154
102
+ 9/28/2022,R,estimate,0.929533316,0.928758149,0.018401171,0.897305077,0.917568181,0.925188182,0.934105264,0.941200373,0.957650075,165
103
+ 9/29/2022,R,estimate,0.928216478,0.927273069,0.019896166,0.893339667,0.915147219,0.923309279,0.933289652,0.940789842,0.958249828,188
104
+ 9/30/2022,R,estimate,0.92691247,0.925822928,0.02158392,0.889181124,0.912816931,0.921243215,0.932050513,0.940444445,0.960278071,125
105
+ 10/1/2022,R,estimate,0.925381446,0.924417975,0.023457254,0.884906159,0.910345348,0.919646614,0.931218681,0.94014505,0.961170497,54
106
+ 10/2/2022,R,estimate,0.923855519,0.923068184,0.025498742,0.8801764,0.907635183,0.917982487,0.930398073,0.939913629,0.963176751,27
107
+ 10/3/2022,R,estimate,0.922700378,0.921782852,0.027683538,0.875365449,0.904815676,0.916335952,0.929268784,0.939360554,0.965748907,129
108
+ 10/4/2022,R,estimate,0.921585163,0.920570265,0.029983881,0.870265177,0.902289178,0.914995152,0.928566085,0.93940938,0.967629428,135
109
+ 10/5/2022,R,estimate based on partial data,0.920759549,0.919437413,0.032373583,0.865707887,0.900043508,0.913318574,0.927888428,0.939754311,0.970147307,102
110
+ 10/6/2022,R,estimate based on partial data,0.919676006,0.91838977,0.03483108,0.860735015,0.897644351,0.911557053,0.927412265,0.939871714,0.973553962,170
111
+ 10/7/2022,R,estimate based on partial data,0.91924448,0.91743114,0.03734045,0.855814972,0.895388483,0.910191768,0.926534835,0.940573157,0.976452225,109
112
+ 10/8/2022,R,estimate based on partial data,0.918342076,0.916563538,0.03989068,0.851197859,0.892925591,0.908737239,0.926149969,0.941202583,0.980241528,33
113
+ 10/9/2022,R,estimate based on partial data,0.917386009,0.915787163,0.042473972,0.847352592,0.890597233,0.907347596,0.926156847,0.942348693,0.984201676,19
114
+ 10/10/2022,R,estimate based on partial data,0.916897728,0.915100444,0.045084031,0.842762801,0.888048657,0.905969754,0.926049343,0.942910097,0.987456684,42
115
+ 10/11/2022,R,estimate based on partial data,0.916129289,0.914500201,0.04771497,0.838966886,0.886099152,0.9047213,0.926060127,0.943797776,0.990008183,143
116
+ 10/12/2022,R,estimate based on partial data,0.915595364,0.913981903,0.050360987,0.834236155,0.883873055,0.903787625,0.925827041,0.944277474,0.993150379,106
117
+ 10/13/2022,R,estimate based on partial data,0.914616525,0.91354,0.053016611,0.829278172,0.881040046,0.903104469,0.926182444,0.94568726,0.99595533,127
118
+ 10/14/2022,R,estimate based on partial data,0.91335098,0.913168291,0.055677128,0.824440435,0.878898206,0.901962354,0.925683283,0.946600105,1.000865913,80
119
+ 10/15/2022,R,estimate based on partial data,0.912694962,0.91286029,0.0583389,0.818905426,0.876966492,0.900862449,0.926106401,0.947202697,1.006108682,24
120
+ 10/16/2022,R,estimate based on partial data,0.912314149,0.912609563,0.060999438,0.814538375,0.875432055,0.899734994,0.92632476,0.948485005,1.010796626,8
121
+ 10/17/2022,R,estimate based on partial data,0.912316571,0.912410013,0.063657269,0.810816039,0.873404715,0.898959155,0.92575525,0.949703456,1.015896277,95
122
+ 10/18/2022,R,estimate based on partial data,0.911396525,0.912256128,0.066311637,0.805446088,0.872115755,0.897826801,0.925826361,0.950798511,1.019647294,37
123
+ 10/19/2022,R,estimate based on partial data,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,52
124
+ 10/20/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA
125
+ 10/21/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA
126
+ 10/22/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA
127
+ 10/23/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA
128
+ 10/24/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA
129
+ 10/25/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA
130
+ 10/26/2022,R,forecast,0.911111219,0.912143156,0.068962115,0.801992674,0.870288885,0.897461837,0.925666155,0.951917826,1.023021381,NA