Add bootstrap 95% CIs in plots

This commit is contained in:
Ian Arawjo 2025-02-18 22:47:24 -05:00
parent 1df7e1fe85
commit 13298c9998
5 changed files with 787 additions and 601 deletions

View File

@ -61,6 +61,7 @@
"emoji-picker-react": "^4.4.9",
"google-auth-library": "^8.8.0",
"https-browserify": "^1.0.0",
"jstat": "^1.9.6",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
@ -91,6 +92,7 @@
"react-scripts": "5.0.1",
"reactflow": "^11.0",
"request": "^2.88.2",
"simple-statistics": "^7.8.7",
"socket.io-client": "^4.6.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
@ -17370,6 +17372,11 @@
"jss-plugin-vendor-prefixer": "10.10.0"
}
},
"node_modules/jstat": {
"version": "1.9.6",
"resolved": "https://registry.npmjs.org/jstat/-/jstat-1.9.6.tgz",
"integrity": "sha512-rPBkJbK2TnA8pzs93QcDDPlKcrtZWuuCo2dVR0TFLOJSxhqfWOVCSp8aV3/oSbn+4uY4yw1URtLpHQedtmXfug=="
},
"node_modules/jsx-ast-utils": {
"version": "3.3.5",
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
@ -22771,6 +22778,14 @@
"resolved": "https://registry.npmjs.org/signum/-/signum-1.0.0.tgz",
"integrity": "sha512-yodFGwcyt59XRh7w5W3jPcIQb3Bwi21suEfT7MAWnBX3iCdklJpgDgvGT9o04UonglZN5SNMfJFkHIR/jO8GHw=="
},
"node_modules/simple-statistics": {
"version": "7.8.7",
"resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-7.8.7.tgz",
"integrity": "sha512-ed5FwTNYvkMTfbCai1U+r3symP+lIPKWCqKdudpN4NFNMn9RtDlFtSyAQhCp4oPH0YBjWu/qnW+5q5ZkPB3uHQ==",
"engines": {
"node": "*"
}
},
"node_modules/sisteransi": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",

View File

@ -59,6 +59,7 @@
"emoji-picker-react": "^4.4.9",
"google-auth-library": "^8.8.0",
"https-browserify": "^1.0.0",
"jstat": "^1.9.6",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
@ -89,6 +90,7 @@
"react-scripts": "5.0.1",
"reactflow": "^11.0",
"request": "^2.88.2",
"simple-statistics": "^7.8.7",
"socket.io-client": "^4.6.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"typeRoots": ["./node_modules/@types", "./types"],
"jsx": "react-jsx"
},
"include": ["src"]

View File

@ -0,0 +1,3 @@
declare module "jstat" {
export const jStat: any; // Loose typing
}