├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── gistemp.csv ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2021 Observable, Inc. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any purpose 4 | with or without fee is hereby granted, provided that the above copyright notice 5 | and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 8 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 9 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 10 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 11 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 12 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 13 | THIS SOFTWARE. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Observable Plot + Create React App 2 | 3 | This repository demonstrates using [Observable Plot](https://github.com/observablehq/plot) together with [Create React App](https://create-react-app.dev). 4 | 5 | To develop locally, clone this repository, then to install: 6 | 7 | ```bash 8 | yarn 9 | ``` 10 | 11 | To run the application: 12 | 13 | ```bash 14 | yarn start 15 | ``` 16 | 17 | To develop, edit App.js and save to reload. 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@observablehq/plot-create-react-app-example", 3 | "version": "0.1.0", 4 | "license": "ISC", 5 | "dependencies": { 6 | "@observablehq/plot": "^0.3.2", 7 | "@testing-library/jest-dom": "^5.14.1", 8 | "@testing-library/react": "^12.0.0", 9 | "@testing-library/user-event": "^13.2.1", 10 | "d3": "^7.2.1", 11 | "react": "^17.0.2", 12 | "react-dom": "^17.0.2", 13 | "react-scripts": "5.0.0", 14 | "web-vitals": "^2.1.0" 15 | }, 16 | "scripts": { 17 | "start": "react-scripts start", 18 | "build": "react-scripts build", 19 | "test": "react-scripts test", 20 | "eject": "react-scripts eject" 21 | }, 22 | "eslintConfig": { 23 | "extends": [ 24 | "react-app", 25 | "react-app/jest" 26 | ] 27 | }, 28 | "browserslist": { 29 | "production": [ 30 | ">0.2%", 31 | "not dead", 32 | "not op_mini all" 33 | ], 34 | "development": [ 35 | "last 1 chrome version", 36 | "last 1 firefox version", 37 | "last 1 safari version" 38 | ] 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/plot-create-react-app-example/40d56349d3380c7eb64900747cf874291c792a8b/public/favicon.ico -------------------------------------------------------------------------------- /public/gistemp.csv: -------------------------------------------------------------------------------- 1 | Date,Anomaly 2 | 1880-01-01,-0.3 3 | 1880-02-01,-0.21 4 | 1880-03-01,-0.18 5 | 1880-04-01,-0.27 6 | 1880-05-01,-0.14 7 | 1880-06-01,-0.29 8 | 1880-07-01,-0.24 9 | 1880-08-01,-0.08 10 | 1880-09-01,-0.17 11 | 1880-10-01,-0.16 12 | 1880-11-01,-0.19 13 | 1880-12-01,-0.22 14 | 1881-01-01,-0.1 15 | 1881-02-01,-0.14 16 | 1881-03-01,0.01 17 | 1881-04-01,-0.03 18 | 1881-05-01,-0.04 19 | 1881-06-01,-0.28 20 | 1881-07-01,-0.07 21 | 1881-08-01,-0.03 22 | 1881-09-01,-0.09 23 | 1881-10-01,-0.2 24 | 1881-11-01,-0.26 25 | 1881-12-01,-0.16 26 | 1882-01-01,0.09 27 | 1882-02-01,0.08 28 | 1882-03-01,0.01 29 | 1882-04-01,-0.2 30 | 1882-05-01,-0.18 31 | 1882-06-01,-0.25 32 | 1882-07-01,-0.11 33 | 1882-08-01,0.03 34 | 1882-09-01,-0.01 35 | 1882-10-01,-0.23 36 | 1882-11-01,-0.21 37 | 1882-12-01,-0.25 38 | 1883-01-01,-0.34 39 | 1883-02-01,-0.42 40 | 1883-03-01,-0.18 41 | 1883-04-01,-0.25 42 | 1883-05-01,-0.26 43 | 1883-06-01,-0.13 44 | 1883-07-01,-0.09 45 | 1883-08-01,-0.14 46 | 1883-09-01,-0.19 47 | 1883-10-01,-0.12 48 | 1883-11-01,-0.21 49 | 1883-12-01,-0.19 50 | 1884-01-01,-0.18 51 | 1884-02-01,-0.13 52 | 1884-03-01,-0.36 53 | 1884-04-01,-0.36 54 | 1884-05-01,-0.32 55 | 1884-06-01,-0.38 56 | 1884-07-01,-0.35 57 | 1884-08-01,-0.27 58 | 1884-09-01,-0.24 59 | 1884-10-01,-0.22 60 | 1884-11-01,-0.3 61 | 1884-12-01,-0.3 62 | 1885-01-01,-0.66 63 | 1885-02-01,-0.3 64 | 1885-03-01,-0.24 65 | 1885-04-01,-0.45 66 | 1885-05-01,-0.42 67 | 1885-06-01,-0.5 68 | 1885-07-01,-0.29 69 | 1885-08-01,-0.27 70 | 1885-09-01,-0.19 71 | 1885-10-01,-0.2 72 | 1885-11-01,-0.22 73 | 1885-12-01,-0.07 74 | 1886-01-01,-0.43 75 | 1886-02-01,-0.46 76 | 1886-03-01,-0.41 77 | 1886-04-01,-0.29 78 | 1886-05-01,-0.27 79 | 1886-06-01,-0.39 80 | 1886-07-01,-0.16 81 | 1886-08-01,-0.31 82 | 1886-09-01,-0.19 83 | 1886-10-01,-0.25 84 | 1886-11-01,-0.26 85 | 1886-12-01,-0.25 86 | 1887-01-01,-0.66 87 | 1887-02-01,-0.48 88 | 1887-03-01,-0.32 89 | 1887-04-01,-0.37 90 | 1887-05-01,-0.33 91 | 1887-06-01,-0.21 92 | 1887-07-01,-0.19 93 | 1887-08-01,-0.28 94 | 1887-09-01,-0.19 95 | 1887-10-01,-0.32 96 | 1887-11-01,-0.25 97 | 1887-12-01,-0.38 98 | 1888-01-01,-0.43 99 | 1888-02-01,-0.43 100 | 1888-03-01,-0.47 101 | 1888-04-01,-0.28 102 | 1888-05-01,-0.22 103 | 1888-06-01,-0.2 104 | 1888-07-01,-0.1 105 | 1888-08-01,-0.11 106 | 1888-09-01,-0.07 107 | 1888-10-01,0.01 108 | 1888-11-01,0 109 | 1888-12-01,-0.12 110 | 1889-01-01,-0.21 111 | 1889-02-01,0.14 112 | 1889-03-01,0.04 113 | 1889-04-01,0.04 114 | 1889-05-01,-0.03 115 | 1889-06-01,-0.12 116 | 1889-07-01,-0.05 117 | 1889-08-01,-0.18 118 | 1889-09-01,-0.18 119 | 1889-10-01,-0.22 120 | 1889-11-01,-0.32 121 | 1889-12-01,-0.31 122 | 1890-01-01,-0.48 123 | 1890-02-01,-0.48 124 | 1890-03-01,-0.41 125 | 1890-04-01,-0.38 126 | 1890-05-01,-0.48 127 | 1890-06-01,-0.27 128 | 1890-07-01,-0.3 129 | 1890-08-01,-0.36 130 | 1890-09-01,-0.36 131 | 1890-10-01,-0.23 132 | 1890-11-01,-0.37 133 | 1890-12-01,-0.3 134 | 1891-01-01,-0.46 135 | 1891-02-01,-0.49 136 | 1891-03-01,-0.15 137 | 1891-04-01,-0.25 138 | 1891-05-01,-0.17 139 | 1891-06-01,-0.22 140 | 1891-07-01,-0.22 141 | 1891-08-01,-0.21 142 | 1891-09-01,-0.13 143 | 1891-10-01,-0.24 144 | 1891-11-01,-0.37 145 | 1891-12-01,-0.03 146 | 1892-01-01,-0.26 147 | 1892-02-01,-0.15 148 | 1892-03-01,-0.36 149 | 1892-04-01,-0.35 150 | 1892-05-01,-0.25 151 | 1892-06-01,-0.2 152 | 1892-07-01,-0.28 153 | 1892-08-01,-0.2 154 | 1892-09-01,-0.25 155 | 1892-10-01,-0.17 156 | 1892-11-01,-0.49 157 | 1892-12-01,-0.29 158 | 1893-01-01,-0.69 159 | 1893-02-01,-0.51 160 | 1893-03-01,-0.24 161 | 1893-04-01,-0.32 162 | 1893-05-01,-0.35 163 | 1893-06-01,-0.24 164 | 1893-07-01,-0.14 165 | 1893-08-01,-0.24 166 | 1893-09-01,-0.18 167 | 1893-10-01,-0.16 168 | 1893-11-01,-0.17 169 | 1893-12-01,-0.38 170 | 1894-01-01,-0.55 171 | 1894-02-01,-0.31 172 | 1894-03-01,-0.2 173 | 1894-04-01,-0.41 174 | 1894-05-01,-0.3 175 | 1894-06-01,-0.43 176 | 1894-07-01,-0.32 177 | 1894-08-01,-0.29 178 | 1894-09-01,-0.23 179 | 1894-10-01,-0.17 180 | 1894-11-01,-0.25 181 | 1894-12-01,-0.22 182 | 1895-01-01,-0.44 183 | 1895-02-01,-0.42 184 | 1895-03-01,-0.3 185 | 1895-04-01,-0.23 186 | 1895-05-01,-0.23 187 | 1895-06-01,-0.25 188 | 1895-07-01,-0.16 189 | 1895-08-01,-0.16 190 | 1895-09-01,-0.02 191 | 1895-10-01,-0.11 192 | 1895-11-01,-0.15 193 | 1895-12-01,-0.12 194 | 1896-01-01,-0.23 195 | 1896-02-01,-0.15 196 | 1896-03-01,-0.29 197 | 1896-04-01,-0.33 198 | 1896-05-01,-0.19 199 | 1896-06-01,-0.13 200 | 1896-07-01,-0.06 201 | 1896-08-01,-0.09 202 | 1896-09-01,-0.05 203 | 1896-10-01,0.04 204 | 1896-11-01,-0.16 205 | 1896-12-01,-0.12 206 | 1897-01-01,-0.22 207 | 1897-02-01,-0.19 208 | 1897-03-01,-0.12 209 | 1897-04-01,-0.01 210 | 1897-05-01,0 211 | 1897-06-01,-0.12 212 | 1897-07-01,-0.04 213 | 1897-08-01,-0.03 214 | 1897-09-01,-0.04 215 | 1897-10-01,-0.1 216 | 1897-11-01,-0.18 217 | 1897-12-01,-0.26 218 | 1898-01-01,-0.06 219 | 1898-02-01,-0.34 220 | 1898-03-01,-0.55 221 | 1898-04-01,-0.33 222 | 1898-05-01,-0.35 223 | 1898-06-01,-0.2 224 | 1898-07-01,-0.22 225 | 1898-08-01,-0.22 226 | 1898-09-01,-0.19 227 | 1898-10-01,-0.32 228 | 1898-11-01,-0.35 229 | 1898-12-01,-0.22 230 | 1899-01-01,-0.18 231 | 1899-02-01,-0.39 232 | 1899-03-01,-0.35 233 | 1899-04-01,-0.21 234 | 1899-05-01,-0.2 235 | 1899-06-01,-0.26 236 | 1899-07-01,-0.13 237 | 1899-08-01,-0.04 238 | 1899-09-01,0 239 | 1899-10-01,0 240 | 1899-11-01,0.12 241 | 1899-12-01,-0.27 242 | 1900-01-01,-0.4 243 | 1900-02-01,-0.08 244 | 1900-03-01,0.02 245 | 1900-04-01,-0.14 246 | 1900-05-01,-0.06 247 | 1900-06-01,-0.15 248 | 1900-07-01,-0.09 249 | 1900-08-01,-0.04 250 | 1900-09-01,0.01 251 | 1900-10-01,0.08 252 | 1900-11-01,-0.13 253 | 1900-12-01,-0.14 254 | 1901-01-01,-0.3 255 | 1901-02-01,-0.05 256 | 1901-03-01,0.05 257 | 1901-04-01,-0.06 258 | 1901-05-01,-0.18 259 | 1901-06-01,-0.1 260 | 1901-07-01,-0.09 261 | 1901-08-01,-0.13 262 | 1901-09-01,-0.17 263 | 1901-10-01,-0.29 264 | 1901-11-01,-0.17 265 | 1901-12-01,-0.3 266 | 1902-01-01,-0.19 267 | 1902-02-01,-0.03 268 | 1902-03-01,-0.29 269 | 1902-04-01,-0.27 270 | 1902-05-01,-0.31 271 | 1902-06-01,-0.34 272 | 1902-07-01,-0.26 273 | 1902-08-01,-0.28 274 | 1902-09-01,-0.2 275 | 1902-10-01,-0.27 276 | 1902-11-01,-0.36 277 | 1902-12-01,-0.46 278 | 1903-01-01,-0.27 279 | 1903-02-01,-0.06 280 | 1903-03-01,-0.23 281 | 1903-04-01,-0.39 282 | 1903-05-01,-0.41 283 | 1903-06-01,-0.44 284 | 1903-07-01,-0.3 285 | 1903-08-01,-0.44 286 | 1903-09-01,-0.43 287 | 1903-10-01,-0.42 288 | 1903-11-01,-0.38 289 | 1903-12-01,-0.47 290 | 1904-01-01,-0.64 291 | 1904-02-01,-0.55 292 | 1904-03-01,-0.46 293 | 1904-04-01,-0.5 294 | 1904-05-01,-0.5 295 | 1904-06-01,-0.49 296 | 1904-07-01,-0.48 297 | 1904-08-01,-0.43 298 | 1904-09-01,-0.47 299 | 1904-10-01,-0.35 300 | 1904-11-01,-0.16 301 | 1904-12-01,-0.29 302 | 1905-01-01,-0.38 303 | 1905-02-01,-0.59 304 | 1905-03-01,-0.25 305 | 1905-04-01,-0.36 306 | 1905-05-01,-0.33 307 | 1905-06-01,-0.31 308 | 1905-07-01,-0.25 309 | 1905-08-01,-0.21 310 | 1905-09-01,-0.15 311 | 1905-10-01,-0.23 312 | 1905-11-01,-0.08 313 | 1905-12-01,-0.21 314 | 1906-01-01,-0.31 315 | 1906-02-01,-0.34 316 | 1906-03-01,-0.15 317 | 1906-04-01,-0.02 318 | 1906-05-01,-0.21 319 | 1906-06-01,-0.22 320 | 1906-07-01,-0.27 321 | 1906-08-01,-0.19 322 | 1906-09-01,-0.25 323 | 1906-10-01,-0.2 324 | 1906-11-01,-0.38 325 | 1906-12-01,-0.18 326 | 1907-01-01,-0.44 327 | 1907-02-01,-0.53 328 | 1907-03-01,-0.25 329 | 1907-04-01,-0.4 330 | 1907-05-01,-0.46 331 | 1907-06-01,-0.43 332 | 1907-07-01,-0.35 333 | 1907-08-01,-0.37 334 | 1907-09-01,-0.32 335 | 1907-10-01,-0.24 336 | 1907-11-01,-0.51 337 | 1907-12-01,-0.5 338 | 1908-01-01,-0.46 339 | 1908-02-01,-0.36 340 | 1908-03-01,-0.58 341 | 1908-04-01,-0.46 342 | 1908-05-01,-0.4 343 | 1908-06-01,-0.39 344 | 1908-07-01,-0.35 345 | 1908-08-01,-0.45 346 | 1908-09-01,-0.33 347 | 1908-10-01,-0.43 348 | 1908-11-01,-0.51 349 | 1908-12-01,-0.5 350 | 1909-01-01,-0.7 351 | 1909-02-01,-0.47 352 | 1909-03-01,-0.52 353 | 1909-04-01,-0.59 354 | 1909-05-01,-0.54 355 | 1909-06-01,-0.52 356 | 1909-07-01,-0.43 357 | 1909-08-01,-0.3 358 | 1909-09-01,-0.37 359 | 1909-10-01,-0.39 360 | 1909-11-01,-0.31 361 | 1909-12-01,-0.55 362 | 1910-01-01,-0.44 363 | 1910-02-01,-0.43 364 | 1910-03-01,-0.47 365 | 1910-04-01,-0.39 366 | 1910-05-01,-0.34 367 | 1910-06-01,-0.36 368 | 1910-07-01,-0.31 369 | 1910-08-01,-0.34 370 | 1910-09-01,-0.37 371 | 1910-10-01,-0.39 372 | 1910-11-01,-0.56 373 | 1910-12-01,-0.69 374 | 1911-01-01,-0.64 375 | 1911-02-01,-0.6 376 | 1911-03-01,-0.62 377 | 1911-04-01,-0.55 378 | 1911-05-01,-0.51 379 | 1911-06-01,-0.47 380 | 1911-07-01,-0.41 381 | 1911-08-01,-0.43 382 | 1911-09-01,-0.38 383 | 1911-10-01,-0.26 384 | 1911-11-01,-0.2 385 | 1911-12-01,-0.25 386 | 1912-01-01,-0.27 387 | 1912-02-01,-0.13 388 | 1912-03-01,-0.37 389 | 1912-04-01,-0.2 390 | 1912-05-01,-0.2 391 | 1912-06-01,-0.26 392 | 1912-07-01,-0.41 393 | 1912-08-01,-0.51 394 | 1912-09-01,-0.47 395 | 1912-10-01,-0.55 396 | 1912-11-01,-0.38 397 | 1912-12-01,-0.42 398 | 1913-01-01,-0.41 399 | 1913-02-01,-0.44 400 | 1913-03-01,-0.44 401 | 1913-04-01,-0.36 402 | 1913-05-01,-0.45 403 | 1913-06-01,-0.46 404 | 1913-07-01,-0.34 405 | 1913-08-01,-0.32 406 | 1913-09-01,-0.32 407 | 1913-10-01,-0.34 408 | 1913-11-01,-0.18 409 | 1913-12-01,-0.04 410 | 1914-01-01,0.02 411 | 1914-02-01,-0.13 412 | 1914-03-01,-0.23 413 | 1914-04-01,-0.28 414 | 1914-05-01,-0.19 415 | 1914-06-01,-0.22 416 | 1914-07-01,-0.24 417 | 1914-08-01,-0.15 418 | 1914-09-01,-0.13 419 | 1914-10-01,-0.05 420 | 1914-11-01,-0.2 421 | 1914-12-01,-0.1 422 | 1915-01-01,-0.2 423 | 1915-02-01,-0.01 424 | 1915-03-01,-0.08 425 | 1915-04-01,0.07 426 | 1915-05-01,-0.01 427 | 1915-06-01,-0.16 428 | 1915-07-01,-0.03 429 | 1915-08-01,-0.15 430 | 1915-09-01,-0.12 431 | 1915-10-01,-0.22 432 | 1915-11-01,-0.12 433 | 1915-12-01,-0.25 434 | 1916-01-01,-0.2 435 | 1916-02-01,-0.23 436 | 1916-03-01,-0.31 437 | 1916-04-01,-0.25 438 | 1916-05-01,-0.27 439 | 1916-06-01,-0.44 440 | 1916-07-01,-0.34 441 | 1916-08-01,-0.27 442 | 1916-09-01,-0.29 443 | 1916-10-01,-0.28 444 | 1916-11-01,-0.42 445 | 1916-12-01,-0.78 446 | 1917-01-01,-0.46 447 | 1917-02-01,-0.53 448 | 1917-03-01,-0.47 449 | 1917-04-01,-0.38 450 | 1917-05-01,-0.48 451 | 1917-06-01,-0.4 452 | 1917-07-01,-0.23 453 | 1917-08-01,-0.26 454 | 1917-09-01,-0.18 455 | 1917-10-01,-0.35 456 | 1917-11-01,-0.29 457 | 1917-12-01,-0.71 458 | 1918-01-01,-0.44 459 | 1918-02-01,-0.33 460 | 1918-03-01,-0.21 461 | 1918-04-01,-0.4 462 | 1918-05-01,-0.37 463 | 1918-06-01,-0.28 464 | 1918-07-01,-0.22 465 | 1918-08-01,-0.26 466 | 1918-09-01,-0.14 467 | 1918-10-01,-0.03 468 | 1918-11-01,-0.16 469 | 1918-12-01,-0.3 470 | 1919-01-01,-0.21 471 | 1919-02-01,-0.19 472 | 1919-03-01,-0.25 473 | 1919-04-01,-0.17 474 | 1919-05-01,-0.2 475 | 1919-06-01,-0.28 476 | 1919-07-01,-0.21 477 | 1919-08-01,-0.19 478 | 1919-09-01,-0.17 479 | 1919-10-01,-0.16 480 | 1919-11-01,-0.29 481 | 1919-12-01,-0.35 482 | 1920-01-01,-0.15 483 | 1920-02-01,-0.22 484 | 1920-03-01,-0.08 485 | 1920-04-01,-0.26 486 | 1920-05-01,-0.26 487 | 1920-06-01,-0.33 488 | 1920-07-01,-0.32 489 | 1920-08-01,-0.29 490 | 1920-09-01,-0.2 491 | 1920-10-01,-0.29 492 | 1920-11-01,-0.33 493 | 1920-12-01,-0.47 494 | 1921-01-01,-0.04 495 | 1921-02-01,-0.21 496 | 1921-03-01,-0.28 497 | 1921-04-01,-0.36 498 | 1921-05-01,-0.36 499 | 1921-06-01,-0.31 500 | 1921-07-01,-0.16 501 | 1921-08-01,-0.24 502 | 1921-09-01,-0.16 503 | 1921-10-01,-0.06 504 | 1921-11-01,-0.16 505 | 1921-12-01,-0.18 506 | 1922-01-01,-0.34 507 | 1922-02-01,-0.44 508 | 1922-03-01,-0.13 509 | 1922-04-01,-0.22 510 | 1922-05-01,-0.34 511 | 1922-06-01,-0.32 512 | 1922-07-01,-0.27 513 | 1922-08-01,-0.31 514 | 1922-09-01,-0.29 515 | 1922-10-01,-0.33 516 | 1922-11-01,-0.17 517 | 1922-12-01,-0.17 518 | 1923-01-01,-0.27 519 | 1923-02-01,-0.37 520 | 1923-03-01,-0.32 521 | 1923-04-01,-0.38 522 | 1923-05-01,-0.33 523 | 1923-06-01,-0.24 524 | 1923-07-01,-0.29 525 | 1923-08-01,-0.3 526 | 1923-09-01,-0.28 527 | 1923-10-01,-0.13 528 | 1923-11-01,0.03 529 | 1923-12-01,-0.06 530 | 1924-01-01,-0.24 531 | 1924-02-01,-0.27 532 | 1924-03-01,-0.12 533 | 1924-04-01,-0.35 534 | 1924-05-01,-0.19 535 | 1924-06-01,-0.28 536 | 1924-07-01,-0.27 537 | 1924-08-01,-0.35 538 | 1924-09-01,-0.3 539 | 1924-10-01,-0.36 540 | 1924-11-01,-0.23 541 | 1924-12-01,-0.43 542 | 1925-01-01,-0.34 543 | 1925-02-01,-0.35 544 | 1925-03-01,-0.24 545 | 1925-04-01,-0.25 546 | 1925-05-01,-0.3 547 | 1925-06-01,-0.34 548 | 1925-07-01,-0.3 549 | 1925-08-01,-0.19 550 | 1925-09-01,-0.13 551 | 1925-10-01,-0.17 552 | 1925-11-01,0.03 553 | 1925-12-01,0.11 554 | 1926-01-01,0.2 555 | 1926-02-01,0.07 556 | 1926-03-01,0.12 557 | 1926-04-01,-0.15 558 | 1926-05-01,-0.25 559 | 1926-06-01,-0.25 560 | 1926-07-01,-0.21 561 | 1926-08-01,-0.11 562 | 1926-09-01,-0.11 563 | 1926-10-01,-0.11 564 | 1926-11-01,-0.06 565 | 1926-12-01,-0.3 566 | 1927-01-01,-0.28 567 | 1927-02-01,-0.21 568 | 1927-03-01,-0.39 569 | 1927-04-01,-0.31 570 | 1927-05-01,-0.25 571 | 1927-06-01,-0.27 572 | 1927-07-01,-0.15 573 | 1927-08-01,-0.19 574 | 1927-09-01,-0.06 575 | 1927-10-01,-0.01 576 | 1927-11-01,-0.04 577 | 1927-12-01,-0.36 578 | 1928-01-01,-0.04 579 | 1928-02-01,-0.12 580 | 1928-03-01,-0.28 581 | 1928-04-01,-0.29 582 | 1928-05-01,-0.3 583 | 1928-06-01,-0.41 584 | 1928-07-01,-0.21 585 | 1928-08-01,-0.25 586 | 1928-09-01,-0.2 587 | 1928-10-01,-0.19 588 | 1928-11-01,-0.09 589 | 1928-12-01,-0.2 590 | 1929-01-01,-0.47 591 | 1929-02-01,-0.61 592 | 1929-03-01,-0.34 593 | 1929-04-01,-0.4 594 | 1929-05-01,-0.39 595 | 1929-06-01,-0.43 596 | 1929-07-01,-0.33 597 | 1929-08-01,-0.29 598 | 1929-09-01,-0.23 599 | 1929-10-01,-0.15 600 | 1929-11-01,-0.14 601 | 1929-12-01,-0.55 602 | 1930-01-01,-0.29 603 | 1930-02-01,-0.24 604 | 1930-03-01,-0.08 605 | 1930-04-01,-0.26 606 | 1930-05-01,-0.25 607 | 1930-06-01,-0.19 608 | 1930-07-01,-0.17 609 | 1930-08-01,-0.11 610 | 1930-09-01,-0.11 611 | 1930-10-01,-0.08 612 | 1930-11-01,0.14 613 | 1930-12-01,-0.09 614 | 1931-01-01,-0.1 615 | 1931-02-01,-0.22 616 | 1931-03-01,-0.06 617 | 1931-04-01,-0.21 618 | 1931-05-01,-0.22 619 | 1931-06-01,-0.06 620 | 1931-07-01,0.01 621 | 1931-08-01,0 622 | 1931-09-01,-0.06 623 | 1931-10-01,0 624 | 1931-11-01,-0.12 625 | 1931-12-01,-0.1 626 | 1932-01-01,0.13 627 | 1932-02-01,-0.18 628 | 1932-03-01,-0.2 629 | 1932-04-01,-0.07 630 | 1932-05-01,-0.22 631 | 1932-06-01,-0.3 632 | 1932-07-01,-0.24 633 | 1932-08-01,-0.24 634 | 1932-09-01,-0.11 635 | 1932-10-01,-0.1 636 | 1932-11-01,-0.26 637 | 1932-12-01,-0.22 638 | 1933-01-01,-0.34 639 | 1933-02-01,-0.32 640 | 1933-03-01,-0.29 641 | 1933-04-01,-0.23 642 | 1933-05-01,-0.25 643 | 1933-06-01,-0.32 644 | 1933-07-01,-0.2 645 | 1933-08-01,-0.23 646 | 1933-09-01,-0.26 647 | 1933-10-01,-0.24 648 | 1933-11-01,-0.31 649 | 1933-12-01,-0.47 650 | 1934-01-01,-0.27 651 | 1934-02-01,-0.04 652 | 1934-03-01,-0.31 653 | 1934-04-01,-0.27 654 | 1934-05-01,-0.11 655 | 1934-06-01,-0.14 656 | 1934-07-01,-0.11 657 | 1934-08-01,-0.1 658 | 1934-09-01,-0.16 659 | 1934-10-01,-0.11 660 | 1934-11-01,-0.01 661 | 1934-12-01,-0.09 662 | 1935-01-01,-0.37 663 | 1935-02-01,0.11 664 | 1935-03-01,-0.13 665 | 1935-04-01,-0.35 666 | 1935-05-01,-0.26 667 | 1935-06-01,-0.23 668 | 1935-07-01,-0.19 669 | 1935-08-01,-0.17 670 | 1935-09-01,-0.17 671 | 1935-10-01,-0.08 672 | 1935-11-01,-0.29 673 | 1935-12-01,-0.22 674 | 1936-01-01,-0.29 675 | 1936-02-01,-0.39 676 | 1936-03-01,-0.23 677 | 1936-04-01,-0.2 678 | 1936-05-01,-0.17 679 | 1936-06-01,-0.19 680 | 1936-07-01,-0.06 681 | 1936-08-01,-0.12 682 | 1936-09-01,-0.06 683 | 1936-10-01,-0.04 684 | 1936-11-01,-0.05 685 | 1936-12-01,-0.04 686 | 1937-01-01,-0.11 687 | 1937-02-01,0.05 688 | 1937-03-01,-0.17 689 | 1937-04-01,-0.17 690 | 1937-05-01,-0.07 691 | 1937-06-01,-0.08 692 | 1937-07-01,-0.05 693 | 1937-08-01,0.03 694 | 1937-09-01,0.14 695 | 1937-10-01,0.1 696 | 1937-11-01,0.09 697 | 1937-12-01,-0.12 698 | 1938-01-01,0 699 | 1938-02-01,-0.04 700 | 1938-03-01,0.05 701 | 1938-04-01,0.05 702 | 1938-05-01,-0.07 703 | 1938-06-01,-0.17 704 | 1938-07-01,-0.09 705 | 1938-08-01,-0.04 706 | 1938-09-01,0.03 707 | 1938-10-01,0.11 708 | 1938-11-01,0.01 709 | 1938-12-01,-0.26 710 | 1939-01-01,-0.13 711 | 1939-02-01,-0.12 712 | 1939-03-01,-0.2 713 | 1939-04-01,-0.12 714 | 1939-05-01,-0.07 715 | 1939-06-01,-0.08 716 | 1939-07-01,-0.06 717 | 1939-08-01,-0.05 718 | 1939-09-01,0 719 | 1939-10-01,-0.03 720 | 1939-11-01,0.06 721 | 1939-12-01,0.4 722 | 1940-01-01,-0.15 723 | 1940-02-01,0.06 724 | 1940-03-01,0.12 725 | 1940-04-01,0.16 726 | 1940-05-01,0.05 727 | 1940-06-01,0.05 728 | 1940-07-01,0.1 729 | 1940-08-01,0.01 730 | 1940-09-01,0.12 731 | 1940-10-01,0.07 732 | 1940-11-01,0.13 733 | 1940-12-01,0.19 734 | 1941-01-01,0.13 735 | 1941-02-01,0.23 736 | 1941-03-01,0.06 737 | 1941-04-01,0.11 738 | 1941-05-01,0.1 739 | 1941-06-01,0.04 740 | 1941-07-01,0.15 741 | 1941-08-01,0.14 742 | 1941-09-01,0.02 743 | 1941-10-01,0.24 744 | 1941-11-01,0.12 745 | 1941-12-01,0.14 746 | 1942-01-01,0.26 747 | 1942-02-01,0.05 748 | 1942-03-01,0.13 749 | 1942-04-01,0.14 750 | 1942-05-01,0.14 751 | 1942-06-01,0.11 752 | 1942-07-01,0.02 753 | 1942-08-01,-0.03 754 | 1942-09-01,0 755 | 1942-10-01,0.06 756 | 1942-11-01,0.13 757 | 1942-12-01,0.12 758 | 1943-01-01,-0.01 759 | 1943-02-01,0.22 760 | 1943-03-01,0.01 761 | 1943-04-01,0.13 762 | 1943-05-01,0.1 763 | 1943-06-01,-0.01 764 | 1943-07-01,0.14 765 | 1943-08-01,0.03 766 | 1943-09-01,0.11 767 | 1943-10-01,0.3 768 | 1943-11-01,0.25 769 | 1943-12-01,0.28 770 | 1944-01-01,0.41 771 | 1944-02-01,0.31 772 | 1944-03-01,0.34 773 | 1944-04-01,0.27 774 | 1944-05-01,0.26 775 | 1944-06-01,0.22 776 | 1944-07-01,0.23 777 | 1944-08-01,0.23 778 | 1944-09-01,0.31 779 | 1944-10-01,0.27 780 | 1944-11-01,0.12 781 | 1944-12-01,0.05 782 | 1945-01-01,0.13 783 | 1945-02-01,0.02 784 | 1945-03-01,0.11 785 | 1945-04-01,0.24 786 | 1945-05-01,0.1 787 | 1945-06-01,0.02 788 | 1945-07-01,0.07 789 | 1945-08-01,0.25 790 | 1945-09-01,0.22 791 | 1945-10-01,0.22 792 | 1945-11-01,0.1 793 | 1945-12-01,-0.1 794 | 1946-01-01,0.15 795 | 1946-02-01,0.06 796 | 1946-03-01,0 797 | 1946-04-01,0.11 798 | 1946-05-01,-0.04 799 | 1946-06-01,-0.17 800 | 1946-07-01,-0.09 801 | 1946-08-01,-0.08 802 | 1946-09-01,-0.02 803 | 1946-10-01,-0.06 804 | 1946-11-01,-0.02 805 | 1946-12-01,-0.29 806 | 1947-01-01,-0.13 807 | 1947-02-01,-0.08 808 | 1947-03-01,0.05 809 | 1947-04-01,0.04 810 | 1947-05-01,-0.06 811 | 1947-06-01,0 812 | 1947-07-01,-0.06 813 | 1947-08-01,-0.08 814 | 1947-09-01,-0.14 815 | 1947-10-01,0.06 816 | 1947-11-01,-0.01 817 | 1947-12-01,-0.18 818 | 1948-01-01,0.05 819 | 1948-02-01,-0.13 820 | 1948-03-01,-0.23 821 | 1948-04-01,-0.09 822 | 1948-05-01,0.08 823 | 1948-06-01,-0.05 824 | 1948-07-01,-0.13 825 | 1948-08-01,-0.1 826 | 1948-09-01,-0.1 827 | 1948-10-01,-0.07 828 | 1948-11-01,-0.08 829 | 1948-12-01,-0.23 830 | 1949-01-01,0.09 831 | 1949-02-01,-0.16 832 | 1949-03-01,-0.01 833 | 1949-04-01,-0.07 834 | 1949-05-01,-0.09 835 | 1949-06-01,-0.22 836 | 1949-07-01,-0.13 837 | 1949-08-01,-0.08 838 | 1949-09-01,-0.08 839 | 1949-10-01,-0.03 840 | 1949-11-01,-0.08 841 | 1949-12-01,-0.19 842 | 1950-01-01,-0.3 843 | 1950-02-01,-0.26 844 | 1950-03-01,-0.06 845 | 1950-04-01,-0.21 846 | 1950-05-01,-0.12 847 | 1950-06-01,-0.06 848 | 1950-07-01,-0.09 849 | 1950-08-01,-0.18 850 | 1950-09-01,-0.1 851 | 1950-10-01,-0.2 852 | 1950-11-01,-0.35 853 | 1950-12-01,-0.2 854 | 1951-01-01,-0.35 855 | 1951-02-01,-0.44 856 | 1951-03-01,-0.19 857 | 1951-04-01,-0.1 858 | 1951-05-01,-0.02 859 | 1951-06-01,-0.05 860 | 1951-07-01,0 861 | 1951-08-01,0.05 862 | 1951-09-01,0.07 863 | 1951-10-01,0.06 864 | 1951-11-01,0 865 | 1951-12-01,0.15 866 | 1952-01-01,0.16 867 | 1952-02-01,0.12 868 | 1952-03-01,-0.1 869 | 1952-04-01,0.02 870 | 1952-05-01,-0.05 871 | 1952-06-01,-0.04 872 | 1952-07-01,0.05 873 | 1952-08-01,0.07 874 | 1952-09-01,0.08 875 | 1952-10-01,-0.04 876 | 1952-11-01,-0.17 877 | 1952-12-01,-0.02 878 | 1953-01-01,0.09 879 | 1953-02-01,0.16 880 | 1953-03-01,0.11 881 | 1953-04-01,0.2 882 | 1953-05-01,0.08 883 | 1953-06-01,0.08 884 | 1953-07-01,0.02 885 | 1953-08-01,0.08 886 | 1953-09-01,0.06 887 | 1953-10-01,0.05 888 | 1953-11-01,-0.05 889 | 1953-12-01,0.03 890 | 1954-01-01,-0.28 891 | 1954-02-01,-0.1 892 | 1954-03-01,-0.12 893 | 1954-04-01,-0.18 894 | 1954-05-01,-0.2 895 | 1954-06-01,-0.16 896 | 1954-07-01,-0.16 897 | 1954-08-01,-0.13 898 | 1954-09-01,-0.07 899 | 1954-10-01,-0.01 900 | 1954-11-01,0.08 901 | 1954-12-01,-0.18 902 | 1955-01-01,0.11 903 | 1955-02-01,-0.21 904 | 1955-03-01,-0.36 905 | 1955-04-01,-0.23 906 | 1955-05-01,-0.2 907 | 1955-06-01,-0.08 908 | 1955-07-01,-0.09 909 | 1955-08-01,0.04 910 | 1955-09-01,-0.13 911 | 1955-10-01,-0.05 912 | 1955-11-01,-0.28 913 | 1955-12-01,-0.32 914 | 1956-01-01,-0.17 915 | 1956-02-01,-0.25 916 | 1956-03-01,-0.23 917 | 1956-04-01,-0.26 918 | 1956-05-01,-0.28 919 | 1956-06-01,-0.15 920 | 1956-07-01,-0.12 921 | 1956-08-01,-0.25 922 | 1956-09-01,-0.22 923 | 1956-10-01,-0.24 924 | 1956-11-01,-0.17 925 | 1956-12-01,-0.1 926 | 1957-01-01,-0.14 927 | 1957-02-01,-0.05 928 | 1957-03-01,-0.05 929 | 1957-04-01,-0.04 930 | 1957-05-01,0.08 931 | 1957-06-01,0.16 932 | 1957-07-01,0.01 933 | 1957-08-01,0.14 934 | 1957-09-01,0.06 935 | 1957-10-01,0.01 936 | 1957-11-01,0.07 937 | 1957-12-01,0.16 938 | 1958-01-01,0.39 939 | 1958-02-01,0.24 940 | 1958-03-01,0.1 941 | 1958-04-01,0.01 942 | 1958-05-01,0.08 943 | 1958-06-01,-0.05 944 | 1958-07-01,0.06 945 | 1958-08-01,-0.06 946 | 1958-09-01,-0.03 947 | 1958-10-01,0.04 948 | 1958-11-01,0.02 949 | 1958-12-01,0.01 950 | 1959-01-01,0.06 951 | 1959-02-01,0.09 952 | 1959-03-01,0.19 953 | 1959-04-01,0.16 954 | 1959-05-01,0.06 955 | 1959-06-01,0.02 956 | 1959-07-01,0.06 957 | 1959-08-01,-0.01 958 | 1959-09-01,-0.06 959 | 1959-10-01,-0.09 960 | 1959-11-01,-0.09 961 | 1959-12-01,-0.03 962 | 1960-01-01,-0.01 963 | 1960-02-01,0.14 964 | 1960-03-01,-0.36 965 | 1960-04-01,-0.16 966 | 1960-05-01,-0.08 967 | 1960-06-01,0.01 968 | 1960-07-01,-0.02 969 | 1960-08-01,-0.01 970 | 1960-09-01,0.05 971 | 1960-10-01,0.07 972 | 1960-11-01,-0.11 973 | 1960-12-01,0.18 974 | 1961-01-01,0.07 975 | 1961-02-01,0.18 976 | 1961-03-01,0.09 977 | 1961-04-01,0.15 978 | 1961-05-01,0.13 979 | 1961-06-01,0.12 980 | 1961-07-01,-0.03 981 | 1961-08-01,0.02 982 | 1961-09-01,0.05 983 | 1961-10-01,0 984 | 1961-11-01,0.03 985 | 1961-12-01,-0.15 986 | 1962-01-01,0.08 987 | 1962-02-01,0.14 988 | 1962-03-01,0.12 989 | 1962-04-01,0.05 990 | 1962-05-01,-0.06 991 | 1962-06-01,0.06 992 | 1962-07-01,-0.02 993 | 1962-08-01,-0.02 994 | 1962-09-01,-0.01 995 | 1962-10-01,-0.03 996 | 1962-11-01,0.06 997 | 1962-12-01,-0.01 998 | 1963-01-01,-0.03 999 | 1963-02-01,0.19 1000 | 1963-03-01,-0.13 1001 | 1963-04-01,-0.05 1002 | 1963-05-01,-0.09 1003 | 1963-06-01,0.03 1004 | 1963-07-01,0.08 1005 | 1963-08-01,0.25 1006 | 1963-09-01,0.2 1007 | 1963-10-01,0.15 1008 | 1963-11-01,0.15 1009 | 1963-12-01,0 1010 | 1964-01-01,-0.06 1011 | 1964-02-01,-0.12 1012 | 1964-03-01,-0.22 1013 | 1964-04-01,-0.3 1014 | 1964-05-01,-0.25 1015 | 1964-06-01,-0.07 1016 | 1964-07-01,-0.07 1017 | 1964-08-01,-0.2 1018 | 1964-09-01,-0.28 1019 | 1964-10-01,-0.3 1020 | 1964-11-01,-0.21 1021 | 1964-12-01,-0.3 1022 | 1965-01-01,-0.09 1023 | 1965-02-01,-0.17 1024 | 1965-03-01,-0.11 1025 | 1965-04-01,-0.2 1026 | 1965-05-01,-0.14 1027 | 1965-06-01,-0.08 1028 | 1965-07-01,-0.12 1029 | 1965-08-01,-0.01 1030 | 1965-09-01,-0.15 1031 | 1965-10-01,-0.04 1032 | 1965-11-01,-0.06 1033 | 1965-12-01,-0.05 1034 | 1966-01-01,-0.16 1035 | 1966-02-01,0 1036 | 1966-03-01,0.04 1037 | 1966-04-01,-0.13 1038 | 1966-05-01,-0.1 1039 | 1966-06-01,0.02 1040 | 1966-07-01,0.09 1041 | 1966-08-01,-0.1 1042 | 1966-09-01,-0.01 1043 | 1966-10-01,-0.15 1044 | 1966-11-01,-0.02 1045 | 1966-12-01,-0.06 1046 | 1967-01-01,-0.06 1047 | 1967-02-01,-0.2 1048 | 1967-03-01,0.03 1049 | 1967-04-01,-0.05 1050 | 1967-05-01,0.14 1051 | 1967-06-01,-0.08 1052 | 1967-07-01,0.01 1053 | 1967-08-01,0.02 1054 | 1967-09-01,-0.04 1055 | 1967-10-01,0.06 1056 | 1967-11-01,-0.06 1057 | 1967-12-01,-0.02 1058 | 1968-01-01,-0.23 1059 | 1968-02-01,-0.15 1060 | 1968-03-01,0.21 1061 | 1968-04-01,-0.05 1062 | 1968-05-01,-0.1 1063 | 1968-06-01,-0.06 1064 | 1968-07-01,-0.11 1065 | 1968-08-01,-0.11 1066 | 1968-09-01,-0.18 1067 | 1968-10-01,0.12 1068 | 1968-11-01,-0.04 1069 | 1968-12-01,-0.14 1070 | 1969-01-01,-0.11 1071 | 1969-02-01,-0.14 1072 | 1969-03-01,0 1073 | 1969-04-01,0.19 1074 | 1969-05-01,0.2 1075 | 1969-06-01,0.05 1076 | 1969-07-01,-0.01 1077 | 1969-08-01,0.03 1078 | 1969-09-01,0.1 1079 | 1969-10-01,0.11 1080 | 1969-11-01,0.12 1081 | 1969-12-01,0.27 1082 | 1970-01-01,0.09 1083 | 1970-02-01,0.22 1084 | 1970-03-01,0.08 1085 | 1970-04-01,0.09 1086 | 1970-05-01,-0.05 1087 | 1970-06-01,-0.03 1088 | 1970-07-01,-0.04 1089 | 1970-08-01,-0.11 1090 | 1970-09-01,0.11 1091 | 1970-10-01,0.05 1092 | 1970-11-01,0.01 1093 | 1970-12-01,-0.13 1094 | 1971-01-01,-0.02 1095 | 1971-02-01,-0.2 1096 | 1971-03-01,-0.18 1097 | 1971-04-01,-0.09 1098 | 1971-05-01,-0.06 1099 | 1971-06-01,-0.18 1100 | 1971-07-01,-0.12 1101 | 1971-08-01,-0.03 1102 | 1971-09-01,-0.01 1103 | 1971-10-01,-0.05 1104 | 1971-11-01,-0.04 1105 | 1971-12-01,-0.08 1106 | 1972-01-01,-0.24 1107 | 1972-02-01,-0.17 1108 | 1972-03-01,0.02 1109 | 1972-04-01,-0.01 1110 | 1972-05-01,-0.03 1111 | 1972-06-01,0.04 1112 | 1972-07-01,0.02 1113 | 1972-08-01,0.18 1114 | 1972-09-01,0.03 1115 | 1972-10-01,0.09 1116 | 1972-11-01,0.03 1117 | 1972-12-01,0.18 1118 | 1973-01-01,0.28 1119 | 1973-02-01,0.3 1120 | 1973-03-01,0.26 1121 | 1973-04-01,0.25 1122 | 1973-05-01,0.26 1123 | 1973-06-01,0.16 1124 | 1973-07-01,0.09 1125 | 1973-08-01,0.02 1126 | 1973-09-01,0.06 1127 | 1973-10-01,0.12 1128 | 1973-11-01,0.06 1129 | 1973-12-01,-0.06 1130 | 1974-01-01,-0.14 1131 | 1974-02-01,-0.28 1132 | 1974-03-01,-0.05 1133 | 1974-04-01,-0.1 1134 | 1974-05-01,-0.01 1135 | 1974-06-01,-0.05 1136 | 1974-07-01,-0.03 1137 | 1974-08-01,0.12 1138 | 1974-09-01,-0.12 1139 | 1974-10-01,-0.07 1140 | 1974-11-01,-0.07 1141 | 1974-12-01,-0.09 1142 | 1975-01-01,0.07 1143 | 1975-02-01,0.07 1144 | 1975-03-01,0.14 1145 | 1975-04-01,0.06 1146 | 1975-05-01,0.16 1147 | 1975-06-01,-0.02 1148 | 1975-07-01,-0.03 1149 | 1975-08-01,-0.2 1150 | 1975-09-01,-0.03 1151 | 1975-10-01,-0.09 1152 | 1975-11-01,-0.16 1153 | 1975-12-01,-0.17 1154 | 1976-01-01,0 1155 | 1976-02-01,-0.06 1156 | 1976-03-01,-0.21 1157 | 1976-04-01,-0.1 1158 | 1976-05-01,-0.23 1159 | 1976-06-01,-0.15 1160 | 1976-07-01,-0.12 1161 | 1976-08-01,-0.18 1162 | 1976-09-01,-0.09 1163 | 1976-10-01,-0.26 1164 | 1976-11-01,-0.06 1165 | 1976-12-01,0.09 1166 | 1977-01-01,0.18 1167 | 1977-02-01,0.2 1168 | 1977-03-01,0.25 1169 | 1977-04-01,0.27 1170 | 1977-05-01,0.3 1171 | 1977-06-01,0.25 1172 | 1977-07-01,0.23 1173 | 1977-08-01,0.19 1174 | 1977-09-01,0.02 1175 | 1977-10-01,0.04 1176 | 1977-11-01,0.2 1177 | 1977-12-01,0.05 1178 | 1978-01-01,0.08 1179 | 1978-02-01,0.14 1180 | 1978-03-01,0.21 1181 | 1978-04-01,0.15 1182 | 1978-05-01,0.07 1183 | 1978-06-01,-0.03 1184 | 1978-07-01,0.07 1185 | 1978-08-01,-0.18 1186 | 1978-09-01,0.05 1187 | 1978-10-01,0 1188 | 1978-11-01,0.16 1189 | 1978-12-01,0.11 1190 | 1979-01-01,0.14 1191 | 1979-02-01,-0.09 1192 | 1979-03-01,0.19 1193 | 1979-04-01,0.13 1194 | 1979-05-01,0.06 1195 | 1979-06-01,0.14 1196 | 1979-07-01,0.03 1197 | 1979-08-01,0.14 1198 | 1979-09-01,0.27 1199 | 1979-10-01,0.26 1200 | 1979-11-01,0.29 1201 | 1979-12-01,0.47 1202 | 1980-01-01,0.3 1203 | 1980-02-01,0.42 1204 | 1980-03-01,0.29 1205 | 1980-04-01,0.32 1206 | 1980-05-01,0.34 1207 | 1980-06-01,0.16 1208 | 1980-07-01,0.28 1209 | 1980-08-01,0.24 1210 | 1980-09-01,0.21 1211 | 1980-10-01,0.2 1212 | 1980-11-01,0.3 1213 | 1980-12-01,0.21 1214 | 1981-01-01,0.56 1215 | 1981-02-01,0.41 1216 | 1981-03-01,0.48 1217 | 1981-04-01,0.32 1218 | 1981-05-01,0.25 1219 | 1981-06-01,0.31 1220 | 1981-07-01,0.35 1221 | 1981-08-01,0.35 1222 | 1981-09-01,0.17 1223 | 1981-10-01,0.13 1224 | 1981-11-01,0.21 1225 | 1981-12-01,0.4 1226 | 1982-01-01,0.09 1227 | 1982-02-01,0.14 1228 | 1982-03-01,-0.01 1229 | 1982-04-01,0.1 1230 | 1982-05-01,0.16 1231 | 1982-06-01,0.05 1232 | 1982-07-01,0.13 1233 | 1982-08-01,0.08 1234 | 1982-09-01,0.15 1235 | 1982-10-01,0.13 1236 | 1982-11-01,0.14 1237 | 1982-12-01,0.43 1238 | 1983-01-01,0.52 1239 | 1983-02-01,0.4 1240 | 1983-03-01,0.42 1241 | 1983-04-01,0.3 1242 | 1983-05-01,0.35 1243 | 1983-06-01,0.18 1244 | 1983-07-01,0.15 1245 | 1983-08-01,0.3 1246 | 1983-09-01,0.38 1247 | 1983-10-01,0.15 1248 | 1983-11-01,0.3 1249 | 1983-12-01,0.17 1250 | 1984-01-01,0.3 1251 | 1984-02-01,0.17 1252 | 1984-03-01,0.29 1253 | 1984-04-01,0.08 1254 | 1984-05-01,0.33 1255 | 1984-06-01,0.04 1256 | 1984-07-01,0.16 1257 | 1984-08-01,0.15 1258 | 1984-09-01,0.2 1259 | 1984-10-01,0.15 1260 | 1984-11-01,0.04 1261 | 1984-12-01,-0.06 1262 | 1985-01-01,0.21 1263 | 1985-02-01,-0.06 1264 | 1985-03-01,0.17 1265 | 1985-04-01,0.11 1266 | 1985-05-01,0.17 1267 | 1985-06-01,0.17 1268 | 1985-07-01,0 1269 | 1985-08-01,0.15 1270 | 1985-09-01,0.14 1271 | 1985-10-01,0.11 1272 | 1985-11-01,0.09 1273 | 1985-12-01,0.15 1274 | 1986-01-01,0.3 1275 | 1986-02-01,0.39 1276 | 1986-03-01,0.29 1277 | 1986-04-01,0.26 1278 | 1986-05-01,0.26 1279 | 1986-06-01,0.12 1280 | 1986-07-01,0.13 1281 | 1986-08-01,0.12 1282 | 1986-09-01,0.02 1283 | 1986-10-01,0.14 1284 | 1986-11-01,0.11 1285 | 1986-12-01,0.16 1286 | 1987-01-01,0.36 1287 | 1987-02-01,0.46 1288 | 1987-03-01,0.17 1289 | 1987-04-01,0.24 1290 | 1987-05-01,0.26 1291 | 1987-06-01,0.36 1292 | 1987-07-01,0.46 1293 | 1987-08-01,0.28 1294 | 1987-09-01,0.39 1295 | 1987-10-01,0.32 1296 | 1987-11-01,0.25 1297 | 1987-12-01,0.47 1298 | 1988-01-01,0.57 1299 | 1988-02-01,0.42 1300 | 1988-03-01,0.49 1301 | 1988-04-01,0.45 1302 | 1988-05-01,0.44 1303 | 1988-06-01,0.42 1304 | 1988-07-01,0.35 1305 | 1988-08-01,0.46 1306 | 1988-09-01,0.42 1307 | 1988-10-01,0.4 1308 | 1988-11-01,0.13 1309 | 1988-12-01,0.34 1310 | 1989-01-01,0.16 1311 | 1989-02-01,0.35 1312 | 1989-03-01,0.36 1313 | 1989-04-01,0.33 1314 | 1989-05-01,0.17 1315 | 1989-06-01,0.15 1316 | 1989-07-01,0.34 1317 | 1989-08-01,0.36 1318 | 1989-09-01,0.37 1319 | 1989-10-01,0.32 1320 | 1989-11-01,0.21 1321 | 1989-12-01,0.37 1322 | 1990-01-01,0.41 1323 | 1990-02-01,0.41 1324 | 1990-03-01,0.76 1325 | 1990-04-01,0.55 1326 | 1990-05-01,0.46 1327 | 1990-06-01,0.38 1328 | 1990-07-01,0.44 1329 | 1990-08-01,0.3 1330 | 1990-09-01,0.3 1331 | 1990-10-01,0.43 1332 | 1990-11-01,0.46 1333 | 1990-12-01,0.42 1334 | 1991-01-01,0.42 1335 | 1991-02-01,0.51 1336 | 1991-03-01,0.36 1337 | 1991-04-01,0.53 1338 | 1991-05-01,0.39 1339 | 1991-06-01,0.54 1340 | 1991-07-01,0.51 1341 | 1991-08-01,0.42 1342 | 1991-09-01,0.5 1343 | 1991-10-01,0.32 1344 | 1991-11-01,0.31 1345 | 1991-12-01,0.33 1346 | 1992-01-01,0.45 1347 | 1992-02-01,0.42 1348 | 1992-03-01,0.47 1349 | 1992-04-01,0.24 1350 | 1992-05-01,0.32 1351 | 1992-06-01,0.24 1352 | 1992-07-01,0.13 1353 | 1992-08-01,0.1 1354 | 1992-09-01,0.01 1355 | 1992-10-01,0.11 1356 | 1992-11-01,0.04 1357 | 1992-12-01,0.22 1358 | 1993-01-01,0.37 1359 | 1993-02-01,0.39 1360 | 1993-03-01,0.36 1361 | 1993-04-01,0.28 1362 | 1993-05-01,0.26 1363 | 1993-06-01,0.24 1364 | 1993-07-01,0.28 1365 | 1993-08-01,0.13 1366 | 1993-09-01,0.11 1367 | 1993-10-01,0.24 1368 | 1993-11-01,0.07 1369 | 1993-12-01,0.19 1370 | 1994-01-01,0.3 1371 | 1994-02-01,0.04 1372 | 1994-03-01,0.26 1373 | 1994-04-01,0.41 1374 | 1994-05-01,0.29 1375 | 1994-06-01,0.42 1376 | 1994-07-01,0.32 1377 | 1994-08-01,0.23 1378 | 1994-09-01,0.32 1379 | 1994-10-01,0.42 1380 | 1994-11-01,0.46 1381 | 1994-12-01,0.36 1382 | 1995-01-01,0.5 1383 | 1995-02-01,0.77 1384 | 1995-03-01,0.45 1385 | 1995-04-01,0.47 1386 | 1995-05-01,0.29 1387 | 1995-06-01,0.45 1388 | 1995-07-01,0.49 1389 | 1995-08-01,0.48 1390 | 1995-09-01,0.34 1391 | 1995-10-01,0.49 1392 | 1995-11-01,0.45 1393 | 1995-12-01,0.3 1394 | 1996-01-01,0.27 1395 | 1996-02-01,0.5 1396 | 1996-03-01,0.34 1397 | 1996-04-01,0.38 1398 | 1996-05-01,0.3 1399 | 1996-06-01,0.27 1400 | 1996-07-01,0.37 1401 | 1996-08-01,0.49 1402 | 1996-09-01,0.27 1403 | 1996-10-01,0.2 1404 | 1996-11-01,0.42 1405 | 1996-12-01,0.41 1406 | 1997-01-01,0.33 1407 | 1997-02-01,0.37 1408 | 1997-03-01,0.52 1409 | 1997-04-01,0.38 1410 | 1997-05-01,0.39 1411 | 1997-06-01,0.55 1412 | 1997-07-01,0.35 1413 | 1997-08-01,0.43 1414 | 1997-09-01,0.56 1415 | 1997-10-01,0.64 1416 | 1997-11-01,0.66 1417 | 1997-12-01,0.6 1418 | 1998-01-01,0.61 1419 | 1998-02-01,0.9 1420 | 1998-03-01,0.63 1421 | 1998-04-01,0.64 1422 | 1998-05-01,0.71 1423 | 1998-06-01,0.78 1424 | 1998-07-01,0.71 1425 | 1998-08-01,0.68 1426 | 1998-09-01,0.45 1427 | 1998-10-01,0.47 1428 | 1998-11-01,0.5 1429 | 1998-12-01,0.56 1430 | 1999-01-01,0.48 1431 | 1999-02-01,0.66 1432 | 1999-03-01,0.34 1433 | 1999-04-01,0.34 1434 | 1999-05-01,0.33 1435 | 1999-06-01,0.37 1436 | 1999-07-01,0.41 1437 | 1999-08-01,0.34 1438 | 1999-09-01,0.43 1439 | 1999-10-01,0.43 1440 | 1999-11-01,0.42 1441 | 1999-12-01,0.46 1442 | 2000-01-01,0.26 1443 | 2000-02-01,0.58 1444 | 2000-03-01,0.6 1445 | 2000-04-01,0.59 1446 | 2000-05-01,0.4 1447 | 2000-06-01,0.44 1448 | 2000-07-01,0.42 1449 | 2000-08-01,0.43 1450 | 2000-09-01,0.42 1451 | 2000-10-01,0.3 1452 | 2000-11-01,0.34 1453 | 2000-12-01,0.3 1454 | 2001-01-01,0.44 1455 | 2001-02-01,0.46 1456 | 2001-03-01,0.58 1457 | 2001-04-01,0.52 1458 | 2001-05-01,0.59 1459 | 2001-06-01,0.55 1460 | 2001-07-01,0.61 1461 | 2001-08-01,0.49 1462 | 2001-09-01,0.56 1463 | 2001-10-01,0.52 1464 | 2001-11-01,0.7 1465 | 2001-12-01,0.55 1466 | 2002-01-01,0.75 1467 | 2002-02-01,0.76 1468 | 2002-03-01,0.91 1469 | 2002-04-01,0.58 1470 | 2002-05-01,0.65 1471 | 2002-06-01,0.54 1472 | 2002-07-01,0.62 1473 | 2002-08-01,0.55 1474 | 2002-09-01,0.65 1475 | 2002-10-01,0.57 1476 | 2002-11-01,0.59 1477 | 2002-12-01,0.43 1478 | 2003-01-01,0.73 1479 | 2003-02-01,0.55 1480 | 2003-03-01,0.57 1481 | 2003-04-01,0.55 1482 | 2003-05-01,0.62 1483 | 2003-06-01,0.49 1484 | 2003-07-01,0.55 1485 | 2003-08-01,0.66 1486 | 2003-09-01,0.66 1487 | 2003-10-01,0.75 1488 | 2003-11-01,0.55 1489 | 2003-12-01,0.75 1490 | 2004-01-01,0.59 1491 | 2004-02-01,0.71 1492 | 2004-03-01,0.64 1493 | 2004-04-01,0.62 1494 | 2004-05-01,0.42 1495 | 2004-06-01,0.43 1496 | 2004-07-01,0.26 1497 | 2004-08-01,0.45 1498 | 2004-09-01,0.53 1499 | 2004-10-01,0.66 1500 | 2004-11-01,0.72 1501 | 2004-12-01,0.52 1502 | 2005-01-01,0.72 1503 | 2005-02-01,0.58 1504 | 2005-03-01,0.69 1505 | 2005-04-01,0.69 1506 | 2005-05-01,0.65 1507 | 2005-06-01,0.67 1508 | 2005-07-01,0.66 1509 | 2005-08-01,0.63 1510 | 2005-09-01,0.78 1511 | 2005-10-01,0.8 1512 | 2005-11-01,0.76 1513 | 2005-12-01,0.68 1514 | 2006-01-01,0.57 1515 | 2006-02-01,0.7 1516 | 2006-03-01,0.63 1517 | 2006-04-01,0.5 1518 | 2006-05-01,0.47 1519 | 2006-06-01,0.64 1520 | 2006-07-01,0.54 1521 | 2006-08-01,0.72 1522 | 2006-09-01,0.64 1523 | 2006-10-01,0.69 1524 | 2006-11-01,0.72 1525 | 2006-12-01,0.77 1526 | 2007-01-01,0.96 1527 | 2007-02-01,0.7 1528 | 2007-03-01,0.7 1529 | 2007-04-01,0.76 1530 | 2007-05-01,0.67 1531 | 2007-06-01,0.58 1532 | 2007-07-01,0.62 1533 | 2007-08-01,0.6 1534 | 2007-09-01,0.64 1535 | 2007-10-01,0.6 1536 | 2007-11-01,0.57 1537 | 2007-12-01,0.5 1538 | 2008-01-01,0.24 1539 | 2008-02-01,0.36 1540 | 2008-03-01,0.73 1541 | 2008-04-01,0.53 1542 | 2008-05-01,0.51 1543 | 2008-06-01,0.48 1544 | 2008-07-01,0.6 1545 | 2008-08-01,0.44 1546 | 2008-09-01,0.65 1547 | 2008-10-01,0.67 1548 | 2008-11-01,0.66 1549 | 2008-12-01,0.54 1550 | 2009-01-01,0.62 1551 | 2009-02-01,0.53 1552 | 2009-03-01,0.53 1553 | 2009-04-01,0.61 1554 | 2009-05-01,0.65 1555 | 2009-06-01,0.65 1556 | 2009-07-01,0.72 1557 | 2009-08-01,0.66 1558 | 2009-09-01,0.7 1559 | 2009-10-01,0.64 1560 | 2009-11-01,0.77 1561 | 2009-12-01,0.65 1562 | 2010-01-01,0.73 1563 | 2010-02-01,0.78 1564 | 2010-03-01,0.92 1565 | 2010-04-01,0.87 1566 | 2010-05-01,0.75 1567 | 2010-06-01,0.64 1568 | 2010-07-01,0.62 1569 | 2010-08-01,0.65 1570 | 2010-09-01,0.61 1571 | 2010-10-01,0.71 1572 | 2010-11-01,0.79 1573 | 2010-12-01,0.49 1574 | 2011-01-01,0.51 1575 | 2011-02-01,0.53 1576 | 2011-03-01,0.64 1577 | 2011-04-01,0.65 1578 | 2011-05-01,0.53 1579 | 2011-06-01,0.59 1580 | 2011-07-01,0.73 1581 | 2011-08-01,0.73 1582 | 2011-09-01,0.56 1583 | 2011-10-01,0.66 1584 | 2011-11-01,0.56 1585 | 2011-12-01,0.54 1586 | 2012-01-01,0.46 1587 | 2012-02-01,0.49 1588 | 2012-03-01,0.58 1589 | 2012-04-01,0.69 1590 | 2012-05-01,0.76 1591 | 2012-06-01,0.62 1592 | 2012-07-01,0.57 1593 | 2012-08-01,0.63 1594 | 2012-09-01,0.76 1595 | 2012-10-01,0.78 1596 | 2012-11-01,0.75 1597 | 2012-12-01,0.53 1598 | 2013-01-01,0.68 1599 | 2013-02-01,0.55 1600 | 2013-03-01,0.66 1601 | 2013-04-01,0.52 1602 | 2013-05-01,0.61 1603 | 2013-06-01,0.65 1604 | 2013-07-01,0.59 1605 | 2013-08-01,0.66 1606 | 2013-09-01,0.78 1607 | 2013-10-01,0.69 1608 | 2013-11-01,0.81 1609 | 2013-12-01,0.67 1610 | 2014-01-01,0.73 1611 | 2014-02-01,0.51 1612 | 2014-03-01,0.77 1613 | 2014-04-01,0.78 1614 | 2014-05-01,0.87 1615 | 2014-06-01,0.66 1616 | 2014-07-01,0.57 1617 | 2014-08-01,0.82 1618 | 2014-09-01,0.9 1619 | 2014-10-01,0.85 1620 | 2014-11-01,0.67 1621 | 2014-12-01,0.79 1622 | 2015-01-01,0.81 1623 | 2015-02-01,0.86 1624 | 2015-03-01,0.9 1625 | 2015-04-01,0.74 1626 | 2015-05-01,0.78 1627 | 2015-06-01,0.78 1628 | 2015-07-01,0.71 1629 | 2015-08-01,0.78 1630 | 2015-09-01,0.81 1631 | 2015-10-01,1.06 1632 | 2015-11-01,1.04 1633 | 2015-12-01,1.11 1634 | 2016-01-01,1.17 1635 | 2016-02-01,1.35 1636 | 2016-03-01,1.3 1637 | 2016-04-01,1.09 1638 | 2016-05-01,0.93 1639 | 2016-06-01,0.76 1640 | 2016-07-01,0.83 1641 | 2016-08-01,0.98 1642 | 2016-09-01,0.87 1643 | 2016-10-01,0.89 1644 | 2016-11-01,0.93 1645 | 2016-12-01,0.81 1646 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/plot-create-react-app-example/40d56349d3380c7eb64900747cf874291c792a8b/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/plot-create-react-app-example/40d56349d3380c7eb64900747cf874291c792a8b/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import * as Plot from "@observablehq/plot"; 2 | import * as d3 from "d3"; 3 | import './App.css'; 4 | import {useEffect, useRef, useState} from 'react'; 5 | 6 | function App() { 7 | const headerRef = useRef(); 8 | const [data, setData] = useState(); 9 | 10 | useEffect(() => { 11 | d3.csv("/gistemp.csv", d3.autoType).then(setData); 12 | }, []); 13 | 14 | useEffect(() => { 15 | if (data === undefined) return; 16 | const chart = Plot.plot({ 17 | style: { 18 | background: "transparent" 19 | }, 20 | y: { 21 | grid: true 22 | }, 23 | color: { 24 | type: "diverging", 25 | scheme: "burd" 26 | }, 27 | marks: [ 28 | Plot.ruleY([0]), 29 | Plot.dot(data, {x: "Date", y: "Anomaly", stroke: "Anomaly"}) 30 | ] 31 | }); 32 | headerRef.current.append(chart); 33 | return () => chart.remove(); 34 | }, [data]); 35 | 36 | return ( 37 |
38 |
39 |

40 | Edit src/App.js and save to reload. 41 |

42 |
43 |
44 | ); 45 | } 46 | 47 | export default App; 48 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import reportWebVitals from './reportWebVitals'; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | --------------------------------------------------------------------------------