workbench 0.8.174__py3-none-any.whl → 0.8.227__py3-none-any.whl
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.
Potentially problematic release.
This version of workbench might be problematic. Click here for more details.
- workbench/__init__.py +1 -0
- workbench/algorithms/dataframe/__init__.py +1 -2
- workbench/algorithms/dataframe/compound_dataset_overlap.py +321 -0
- workbench/algorithms/dataframe/feature_space_proximity.py +168 -75
- workbench/algorithms/dataframe/fingerprint_proximity.py +422 -86
- workbench/algorithms/dataframe/projection_2d.py +44 -21
- workbench/algorithms/dataframe/proximity.py +259 -305
- workbench/algorithms/graph/light/proximity_graph.py +12 -11
- workbench/algorithms/models/cleanlab_model.py +382 -0
- workbench/algorithms/models/noise_model.py +388 -0
- workbench/algorithms/sql/column_stats.py +0 -1
- workbench/algorithms/sql/correlations.py +0 -1
- workbench/algorithms/sql/descriptive_stats.py +0 -1
- workbench/algorithms/sql/outliers.py +3 -3
- workbench/api/__init__.py +5 -1
- workbench/api/df_store.py +17 -108
- workbench/api/endpoint.py +14 -12
- workbench/api/feature_set.py +117 -11
- workbench/api/meta.py +0 -1
- workbench/api/meta_model.py +289 -0
- workbench/api/model.py +52 -21
- workbench/api/parameter_store.py +3 -52
- workbench/cached/cached_meta.py +0 -1
- workbench/cached/cached_model.py +49 -11
- workbench/core/artifacts/__init__.py +11 -2
- workbench/core/artifacts/artifact.py +7 -7
- workbench/core/artifacts/data_capture_core.py +8 -1
- workbench/core/artifacts/df_store_core.py +114 -0
- workbench/core/artifacts/endpoint_core.py +323 -205
- workbench/core/artifacts/feature_set_core.py +249 -45
- workbench/core/artifacts/model_core.py +133 -101
- workbench/core/artifacts/parameter_store_core.py +98 -0
- workbench/core/cloud_platform/aws/aws_account_clamp.py +48 -2
- workbench/core/cloud_platform/cloud_meta.py +0 -1
- workbench/core/pipelines/pipeline_executor.py +1 -1
- workbench/core/transforms/features_to_model/features_to_model.py +60 -44
- workbench/core/transforms/model_to_endpoint/model_to_endpoint.py +43 -10
- workbench/core/transforms/pandas_transforms/pandas_to_features.py +38 -2
- workbench/core/views/training_view.py +113 -42
- workbench/core/views/view.py +53 -3
- workbench/core/views/view_utils.py +4 -4
- workbench/model_script_utils/model_script_utils.py +339 -0
- workbench/model_script_utils/pytorch_utils.py +405 -0
- workbench/model_script_utils/uq_harness.py +277 -0
- workbench/model_scripts/chemprop/chemprop.template +774 -0
- workbench/model_scripts/chemprop/generated_model_script.py +774 -0
- workbench/model_scripts/chemprop/model_script_utils.py +339 -0
- workbench/model_scripts/chemprop/requirements.txt +3 -0
- workbench/model_scripts/custom_models/chem_info/fingerprints.py +175 -0
- workbench/model_scripts/custom_models/chem_info/mol_descriptors.py +18 -7
- workbench/model_scripts/custom_models/chem_info/mol_standardize.py +80 -58
- workbench/model_scripts/custom_models/chem_info/molecular_descriptors.py +0 -1
- workbench/model_scripts/custom_models/chem_info/morgan_fingerprints.py +1 -2
- workbench/model_scripts/custom_models/proximity/feature_space_proximity.py +194 -0
- workbench/model_scripts/custom_models/proximity/feature_space_proximity.template +8 -10
- workbench/model_scripts/custom_models/uq_models/bayesian_ridge.template +7 -8
- workbench/model_scripts/custom_models/uq_models/ensemble_xgb.template +20 -21
- workbench/model_scripts/custom_models/uq_models/feature_space_proximity.py +194 -0
- workbench/model_scripts/custom_models/uq_models/gaussian_process.template +5 -11
- workbench/model_scripts/custom_models/uq_models/ngboost.template +15 -16
- workbench/model_scripts/ensemble_xgb/ensemble_xgb.template +15 -17
- workbench/model_scripts/meta_model/generated_model_script.py +209 -0
- workbench/model_scripts/meta_model/meta_model.template +209 -0
- workbench/model_scripts/pytorch_model/generated_model_script.py +443 -499
- workbench/model_scripts/pytorch_model/model_script_utils.py +339 -0
- workbench/model_scripts/pytorch_model/pytorch.template +440 -496
- workbench/model_scripts/pytorch_model/pytorch_utils.py +405 -0
- workbench/model_scripts/pytorch_model/requirements.txt +1 -1
- workbench/model_scripts/pytorch_model/uq_harness.py +277 -0
- workbench/model_scripts/scikit_learn/generated_model_script.py +7 -12
- workbench/model_scripts/scikit_learn/scikit_learn.template +4 -9
- workbench/model_scripts/script_generation.py +15 -12
- workbench/model_scripts/uq_models/generated_model_script.py +248 -0
- workbench/model_scripts/xgb_model/generated_model_script.py +371 -403
- workbench/model_scripts/xgb_model/model_script_utils.py +339 -0
- workbench/model_scripts/xgb_model/uq_harness.py +277 -0
- workbench/model_scripts/xgb_model/xgb_model.template +367 -399
- workbench/repl/workbench_shell.py +18 -14
- workbench/resources/open_source_api.key +1 -1
- workbench/scripts/endpoint_test.py +162 -0
- workbench/scripts/lambda_test.py +73 -0
- workbench/scripts/meta_model_sim.py +35 -0
- workbench/scripts/ml_pipeline_sqs.py +122 -6
- workbench/scripts/training_test.py +85 -0
- workbench/themes/dark/custom.css +59 -0
- workbench/themes/dark/plotly.json +5 -5
- workbench/themes/light/custom.css +153 -40
- workbench/themes/light/plotly.json +9 -9
- workbench/themes/midnight_blue/custom.css +59 -0
- workbench/utils/aws_utils.py +0 -1
- workbench/utils/chem_utils/fingerprints.py +87 -46
- workbench/utils/chem_utils/mol_descriptors.py +18 -7
- workbench/utils/chem_utils/mol_standardize.py +80 -58
- workbench/utils/chem_utils/projections.py +16 -6
- workbench/utils/chem_utils/vis.py +25 -27
- workbench/utils/chemprop_utils.py +141 -0
- workbench/utils/config_manager.py +2 -6
- workbench/utils/endpoint_utils.py +5 -7
- workbench/utils/license_manager.py +2 -6
- workbench/utils/markdown_utils.py +57 -0
- workbench/utils/meta_model_simulator.py +499 -0
- workbench/utils/metrics_utils.py +256 -0
- workbench/utils/model_utils.py +274 -87
- workbench/utils/pipeline_utils.py +0 -1
- workbench/utils/plot_utils.py +159 -34
- workbench/utils/pytorch_utils.py +87 -0
- workbench/utils/shap_utils.py +11 -57
- workbench/utils/theme_manager.py +95 -30
- workbench/utils/xgboost_local_crossfold.py +267 -0
- workbench/utils/xgboost_model_utils.py +127 -220
- workbench/web_interface/components/experiments/outlier_plot.py +0 -1
- workbench/web_interface/components/model_plot.py +16 -2
- workbench/web_interface/components/plugin_unit_test.py +5 -3
- workbench/web_interface/components/plugins/ag_table.py +2 -4
- workbench/web_interface/components/plugins/confusion_matrix.py +3 -6
- workbench/web_interface/components/plugins/model_details.py +48 -80
- workbench/web_interface/components/plugins/scatter_plot.py +192 -92
- workbench/web_interface/components/settings_menu.py +184 -0
- workbench/web_interface/page_views/main_page.py +0 -1
- {workbench-0.8.174.dist-info → workbench-0.8.227.dist-info}/METADATA +31 -17
- {workbench-0.8.174.dist-info → workbench-0.8.227.dist-info}/RECORD +125 -111
- {workbench-0.8.174.dist-info → workbench-0.8.227.dist-info}/entry_points.txt +4 -0
- {workbench-0.8.174.dist-info → workbench-0.8.227.dist-info}/licenses/LICENSE +1 -1
- workbench/core/cloud_platform/aws/aws_df_store.py +0 -404
- workbench/core/cloud_platform/aws/aws_parameter_store.py +0 -280
- workbench/model_scripts/custom_models/meta_endpoints/example.py +0 -53
- workbench/model_scripts/custom_models/proximity/generated_model_script.py +0 -138
- workbench/model_scripts/custom_models/proximity/proximity.py +0 -384
- workbench/model_scripts/custom_models/uq_models/generated_model_script.py +0 -393
- workbench/model_scripts/custom_models/uq_models/mapie.template +0 -502
- workbench/model_scripts/custom_models/uq_models/meta_uq.template +0 -386
- workbench/model_scripts/custom_models/uq_models/proximity.py +0 -384
- workbench/model_scripts/ensemble_xgb/generated_model_script.py +0 -279
- workbench/model_scripts/quant_regression/quant_regression.template +0 -279
- workbench/model_scripts/quant_regression/requirements.txt +0 -1
- workbench/themes/quartz/base_css.url +0 -1
- workbench/themes/quartz/custom.css +0 -117
- workbench/themes/quartz/plotly.json +0 -642
- workbench/themes/quartz_dark/base_css.url +0 -1
- workbench/themes/quartz_dark/custom.css +0 -131
- workbench/themes/quartz_dark/plotly.json +0 -642
- workbench/utils/fast_inference.py +0 -167
- workbench/utils/resource_utils.py +0 -39
- {workbench-0.8.174.dist-info → workbench-0.8.227.dist-info}/WHEEL +0 -0
- {workbench-0.8.174.dist-info → workbench-0.8.227.dist-info}/top_level.txt +0 -0
|
@@ -1,642 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"data": {
|
|
3
|
-
"barpolar": [
|
|
4
|
-
{
|
|
5
|
-
"marker": {
|
|
6
|
-
"line": {
|
|
7
|
-
"color": "rgb(17,17,17)",
|
|
8
|
-
"width": 0.5
|
|
9
|
-
},
|
|
10
|
-
"pattern": {
|
|
11
|
-
"fillmode": "overlay",
|
|
12
|
-
"size": 10,
|
|
13
|
-
"solidity": 0.2
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"type": "barpolar"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
"bar": [
|
|
20
|
-
{
|
|
21
|
-
"error_x": {
|
|
22
|
-
"color": "#f2f5fa"
|
|
23
|
-
},
|
|
24
|
-
"error_y": {
|
|
25
|
-
"color": "#f2f5fa"
|
|
26
|
-
},
|
|
27
|
-
"marker": {
|
|
28
|
-
"line": {
|
|
29
|
-
"color": "rgb(17,17,17)",
|
|
30
|
-
"width": 0.5
|
|
31
|
-
},
|
|
32
|
-
"pattern": {
|
|
33
|
-
"fillmode": "overlay",
|
|
34
|
-
"size": 10,
|
|
35
|
-
"solidity": 0.2
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"type": "bar"
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"carpet": [
|
|
42
|
-
{
|
|
43
|
-
"aaxis": {
|
|
44
|
-
"endlinecolor": "#A2B1C6",
|
|
45
|
-
"gridcolor": "#506784",
|
|
46
|
-
"linecolor": "#506784",
|
|
47
|
-
"minorgridcolor": "#506784",
|
|
48
|
-
"startlinecolor": "#A2B1C6"
|
|
49
|
-
},
|
|
50
|
-
"baxis": {
|
|
51
|
-
"endlinecolor": "#A2B1C6",
|
|
52
|
-
"gridcolor": "#506784",
|
|
53
|
-
"linecolor": "#506784",
|
|
54
|
-
"minorgridcolor": "#506784",
|
|
55
|
-
"startlinecolor": "#A2B1C6"
|
|
56
|
-
},
|
|
57
|
-
"type": "carpet"
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"choropleth": [
|
|
61
|
-
{
|
|
62
|
-
"colorbar": {
|
|
63
|
-
"outlinewidth": 0,
|
|
64
|
-
"ticks": ""
|
|
65
|
-
},
|
|
66
|
-
"type": "choropleth"
|
|
67
|
-
}
|
|
68
|
-
],
|
|
69
|
-
"contourcarpet": [
|
|
70
|
-
{
|
|
71
|
-
"colorbar": {
|
|
72
|
-
"outlinewidth": 0,
|
|
73
|
-
"ticks": ""
|
|
74
|
-
},
|
|
75
|
-
"type": "contourcarpet"
|
|
76
|
-
}
|
|
77
|
-
],
|
|
78
|
-
"contour": [
|
|
79
|
-
{
|
|
80
|
-
"colorbar": {
|
|
81
|
-
"outlinewidth": 0,
|
|
82
|
-
"ticks": ""
|
|
83
|
-
},
|
|
84
|
-
"colorscale": [
|
|
85
|
-
[
|
|
86
|
-
0.0,
|
|
87
|
-
"#0d0887"
|
|
88
|
-
],
|
|
89
|
-
[
|
|
90
|
-
0.1111111111111111,
|
|
91
|
-
"#46039f"
|
|
92
|
-
],
|
|
93
|
-
[
|
|
94
|
-
0.2222222222222222,
|
|
95
|
-
"#7201a8"
|
|
96
|
-
],
|
|
97
|
-
[
|
|
98
|
-
0.3333333333333333,
|
|
99
|
-
"#9c179e"
|
|
100
|
-
],
|
|
101
|
-
[
|
|
102
|
-
0.4444444444444444,
|
|
103
|
-
"#bd3786"
|
|
104
|
-
],
|
|
105
|
-
[
|
|
106
|
-
0.5555555555555556,
|
|
107
|
-
"#d8576b"
|
|
108
|
-
],
|
|
109
|
-
[
|
|
110
|
-
0.6666666666666666,
|
|
111
|
-
"#ed7953"
|
|
112
|
-
],
|
|
113
|
-
[
|
|
114
|
-
0.7777777777777778,
|
|
115
|
-
"#fb9f3a"
|
|
116
|
-
],
|
|
117
|
-
[
|
|
118
|
-
0.8888888888888888,
|
|
119
|
-
"#fdca26"
|
|
120
|
-
],
|
|
121
|
-
[
|
|
122
|
-
1.0,
|
|
123
|
-
"#f0f921"
|
|
124
|
-
]
|
|
125
|
-
],
|
|
126
|
-
"type": "contour"
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
|
-
"heatmap": [
|
|
130
|
-
{
|
|
131
|
-
"colorbar": {
|
|
132
|
-
"outlinewidth": 0,
|
|
133
|
-
"ticks": ""
|
|
134
|
-
},
|
|
135
|
-
"colorscale": [
|
|
136
|
-
[0.0, "rgba(80, 100, 255, 0.5)"],
|
|
137
|
-
[0.25, "rgba(70, 145, 220, 1.0)"],
|
|
138
|
-
[0.5, "rgba(70, 220, 100, 1.0)"],
|
|
139
|
-
[0.75, "rgba(255, 181, 80, 1.0)"],
|
|
140
|
-
[1.0, "rgba(232, 50, 131, 1.0)"]
|
|
141
|
-
],
|
|
142
|
-
"type": "heatmap"
|
|
143
|
-
}
|
|
144
|
-
],
|
|
145
|
-
"histogram2dcontour": [
|
|
146
|
-
{
|
|
147
|
-
"colorbar": {
|
|
148
|
-
"outlinewidth": 0,
|
|
149
|
-
"ticks": ""
|
|
150
|
-
},
|
|
151
|
-
"colorscale": [
|
|
152
|
-
[
|
|
153
|
-
0.0,
|
|
154
|
-
"#0d0887"
|
|
155
|
-
],
|
|
156
|
-
[
|
|
157
|
-
0.1111111111111111,
|
|
158
|
-
"#46039f"
|
|
159
|
-
],
|
|
160
|
-
[
|
|
161
|
-
0.2222222222222222,
|
|
162
|
-
"#7201a8"
|
|
163
|
-
],
|
|
164
|
-
[
|
|
165
|
-
0.3333333333333333,
|
|
166
|
-
"#9c179e"
|
|
167
|
-
],
|
|
168
|
-
[
|
|
169
|
-
0.4444444444444444,
|
|
170
|
-
"#bd3786"
|
|
171
|
-
],
|
|
172
|
-
[
|
|
173
|
-
0.5555555555555556,
|
|
174
|
-
"#d8576b"
|
|
175
|
-
],
|
|
176
|
-
[
|
|
177
|
-
0.6666666666666666,
|
|
178
|
-
"#ed7953"
|
|
179
|
-
],
|
|
180
|
-
[
|
|
181
|
-
0.7777777777777778,
|
|
182
|
-
"#fb9f3a"
|
|
183
|
-
],
|
|
184
|
-
[
|
|
185
|
-
0.8888888888888888,
|
|
186
|
-
"#fdca26"
|
|
187
|
-
],
|
|
188
|
-
[
|
|
189
|
-
1.0,
|
|
190
|
-
"#f0f921"
|
|
191
|
-
]
|
|
192
|
-
],
|
|
193
|
-
"type": "histogram2dcontour"
|
|
194
|
-
}
|
|
195
|
-
],
|
|
196
|
-
"histogram2d": [
|
|
197
|
-
{
|
|
198
|
-
"colorbar": {
|
|
199
|
-
"outlinewidth": 0,
|
|
200
|
-
"ticks": ""
|
|
201
|
-
},
|
|
202
|
-
"colorscale": [
|
|
203
|
-
[
|
|
204
|
-
0.0,
|
|
205
|
-
"#0d0887"
|
|
206
|
-
],
|
|
207
|
-
[
|
|
208
|
-
0.1111111111111111,
|
|
209
|
-
"#46039f"
|
|
210
|
-
],
|
|
211
|
-
[
|
|
212
|
-
0.2222222222222222,
|
|
213
|
-
"#7201a8"
|
|
214
|
-
],
|
|
215
|
-
[
|
|
216
|
-
0.3333333333333333,
|
|
217
|
-
"#9c179e"
|
|
218
|
-
],
|
|
219
|
-
[
|
|
220
|
-
0.4444444444444444,
|
|
221
|
-
"#bd3786"
|
|
222
|
-
],
|
|
223
|
-
[
|
|
224
|
-
0.5555555555555556,
|
|
225
|
-
"#d8576b"
|
|
226
|
-
],
|
|
227
|
-
[
|
|
228
|
-
0.6666666666666666,
|
|
229
|
-
"#ed7953"
|
|
230
|
-
],
|
|
231
|
-
[
|
|
232
|
-
0.7777777777777778,
|
|
233
|
-
"#fb9f3a"
|
|
234
|
-
],
|
|
235
|
-
[
|
|
236
|
-
0.8888888888888888,
|
|
237
|
-
"#fdca26"
|
|
238
|
-
],
|
|
239
|
-
[
|
|
240
|
-
1.0,
|
|
241
|
-
"#f0f921"
|
|
242
|
-
]
|
|
243
|
-
],
|
|
244
|
-
"type": "histogram2d"
|
|
245
|
-
}
|
|
246
|
-
],
|
|
247
|
-
"histogram": [
|
|
248
|
-
{
|
|
249
|
-
"marker": {
|
|
250
|
-
"pattern": {
|
|
251
|
-
"fillmode": "overlay",
|
|
252
|
-
"size": 10,
|
|
253
|
-
"solidity": 0.2
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
"type": "histogram"
|
|
257
|
-
}
|
|
258
|
-
],
|
|
259
|
-
"mesh3d": [
|
|
260
|
-
{
|
|
261
|
-
"colorbar": {
|
|
262
|
-
"outlinewidth": 0,
|
|
263
|
-
"ticks": ""
|
|
264
|
-
},
|
|
265
|
-
"type": "mesh3d"
|
|
266
|
-
}
|
|
267
|
-
],
|
|
268
|
-
"parcoords": [
|
|
269
|
-
{
|
|
270
|
-
"line": {
|
|
271
|
-
"colorbar": {
|
|
272
|
-
"outlinewidth": 0,
|
|
273
|
-
"ticks": ""
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
"type": "parcoords"
|
|
277
|
-
}
|
|
278
|
-
],
|
|
279
|
-
"pie": [
|
|
280
|
-
{
|
|
281
|
-
"automargin": true,
|
|
282
|
-
"type": "pie"
|
|
283
|
-
}
|
|
284
|
-
],
|
|
285
|
-
"scatter3d": [
|
|
286
|
-
{
|
|
287
|
-
"line": {
|
|
288
|
-
"colorbar": {
|
|
289
|
-
"outlinewidth": 0,
|
|
290
|
-
"ticks": ""
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
"marker": {
|
|
294
|
-
"colorbar": {
|
|
295
|
-
"outlinewidth": 0,
|
|
296
|
-
"ticks": ""
|
|
297
|
-
}
|
|
298
|
-
},
|
|
299
|
-
"type": "scatter3d"
|
|
300
|
-
}
|
|
301
|
-
],
|
|
302
|
-
"scattercarpet": [
|
|
303
|
-
{
|
|
304
|
-
"marker": {
|
|
305
|
-
"colorbar": {
|
|
306
|
-
"outlinewidth": 0,
|
|
307
|
-
"ticks": ""
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
"type": "scattercarpet"
|
|
311
|
-
}
|
|
312
|
-
],
|
|
313
|
-
"scattergeo": [
|
|
314
|
-
{
|
|
315
|
-
"marker": {
|
|
316
|
-
"colorbar": {
|
|
317
|
-
"outlinewidth": 0,
|
|
318
|
-
"ticks": ""
|
|
319
|
-
}
|
|
320
|
-
},
|
|
321
|
-
"type": "scattergeo"
|
|
322
|
-
}
|
|
323
|
-
],
|
|
324
|
-
"scattergl": [
|
|
325
|
-
{
|
|
326
|
-
"marker": {
|
|
327
|
-
"line": {
|
|
328
|
-
"color": "#686dc3"
|
|
329
|
-
}
|
|
330
|
-
},
|
|
331
|
-
"type": "scattergl"
|
|
332
|
-
}
|
|
333
|
-
],
|
|
334
|
-
"scattermapbox": [
|
|
335
|
-
{
|
|
336
|
-
"marker": {
|
|
337
|
-
"colorbar": {
|
|
338
|
-
"outlinewidth": 0,
|
|
339
|
-
"ticks": ""
|
|
340
|
-
}
|
|
341
|
-
},
|
|
342
|
-
"type": "scattermapbox"
|
|
343
|
-
}
|
|
344
|
-
],
|
|
345
|
-
"scatterpolargl": [
|
|
346
|
-
{
|
|
347
|
-
"marker": {
|
|
348
|
-
"colorbar": {
|
|
349
|
-
"outlinewidth": 0,
|
|
350
|
-
"ticks": ""
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
|
-
"type": "scatterpolargl"
|
|
354
|
-
}
|
|
355
|
-
],
|
|
356
|
-
"scatterpolar": [
|
|
357
|
-
{
|
|
358
|
-
"marker": {
|
|
359
|
-
"colorbar": {
|
|
360
|
-
"outlinewidth": 0,
|
|
361
|
-
"ticks": ""
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
|
-
"type": "scatterpolar"
|
|
365
|
-
}
|
|
366
|
-
],
|
|
367
|
-
"scatter": [
|
|
368
|
-
{
|
|
369
|
-
"marker": {
|
|
370
|
-
"line": {
|
|
371
|
-
"color": "#686dc3"
|
|
372
|
-
}
|
|
373
|
-
},
|
|
374
|
-
"type": "scatter"
|
|
375
|
-
}
|
|
376
|
-
],
|
|
377
|
-
"scatterternary": [
|
|
378
|
-
{
|
|
379
|
-
"marker": {
|
|
380
|
-
"colorbar": {
|
|
381
|
-
"outlinewidth": 0,
|
|
382
|
-
"ticks": ""
|
|
383
|
-
}
|
|
384
|
-
},
|
|
385
|
-
"type": "scatterternary"
|
|
386
|
-
}
|
|
387
|
-
],
|
|
388
|
-
"surface": [
|
|
389
|
-
{
|
|
390
|
-
"colorbar": {
|
|
391
|
-
"outlinewidth": 0,
|
|
392
|
-
"ticks": ""
|
|
393
|
-
},
|
|
394
|
-
"colorscale": [
|
|
395
|
-
[
|
|
396
|
-
0.0,
|
|
397
|
-
"#0d0887"
|
|
398
|
-
],
|
|
399
|
-
[
|
|
400
|
-
0.1111111111111111,
|
|
401
|
-
"#46039f"
|
|
402
|
-
],
|
|
403
|
-
[
|
|
404
|
-
0.2222222222222222,
|
|
405
|
-
"#7201a8"
|
|
406
|
-
],
|
|
407
|
-
[
|
|
408
|
-
0.3333333333333333,
|
|
409
|
-
"#9c179e"
|
|
410
|
-
],
|
|
411
|
-
[
|
|
412
|
-
0.4444444444444444,
|
|
413
|
-
"#bd3786"
|
|
414
|
-
],
|
|
415
|
-
[
|
|
416
|
-
0.5555555555555556,
|
|
417
|
-
"#d8576b"
|
|
418
|
-
],
|
|
419
|
-
[
|
|
420
|
-
0.6666666666666666,
|
|
421
|
-
"#ed7953"
|
|
422
|
-
],
|
|
423
|
-
[
|
|
424
|
-
0.7777777777777778,
|
|
425
|
-
"#fb9f3a"
|
|
426
|
-
],
|
|
427
|
-
[
|
|
428
|
-
0.8888888888888888,
|
|
429
|
-
"#fdca26"
|
|
430
|
-
],
|
|
431
|
-
[
|
|
432
|
-
1.0,
|
|
433
|
-
"#f0f921"
|
|
434
|
-
]
|
|
435
|
-
],
|
|
436
|
-
"type": "surface"
|
|
437
|
-
}
|
|
438
|
-
],
|
|
439
|
-
"table": [
|
|
440
|
-
{
|
|
441
|
-
"cells": {
|
|
442
|
-
"fill": {
|
|
443
|
-
"color": "#506784"
|
|
444
|
-
},
|
|
445
|
-
"line": {
|
|
446
|
-
"color": "rgb(17,17,17)"
|
|
447
|
-
}
|
|
448
|
-
},
|
|
449
|
-
"header": {
|
|
450
|
-
"fill": {
|
|
451
|
-
"color": "#2a3f5f"
|
|
452
|
-
},
|
|
453
|
-
"line": {
|
|
454
|
-
"color": "rgb(17,17,17)"
|
|
455
|
-
}
|
|
456
|
-
},
|
|
457
|
-
"type": "table"
|
|
458
|
-
}
|
|
459
|
-
]
|
|
460
|
-
},
|
|
461
|
-
"layout": {
|
|
462
|
-
"annotationdefaults": {
|
|
463
|
-
"arrowcolor": "#f2f5fa",
|
|
464
|
-
"arrowhead": 0,
|
|
465
|
-
"arrowwidth": 1,
|
|
466
|
-
"font": {
|
|
467
|
-
"color": "#fff"
|
|
468
|
-
}
|
|
469
|
-
},
|
|
470
|
-
"autotypenumbers": "strict",
|
|
471
|
-
"coloraxis": {
|
|
472
|
-
"colorbar": {
|
|
473
|
-
"outlinewidth": 0,
|
|
474
|
-
"ticks": ""
|
|
475
|
-
}
|
|
476
|
-
},
|
|
477
|
-
"colorscale": {
|
|
478
|
-
"diverging": [
|
|
479
|
-
[0.0, "rgba(80, 100, 255, 1.0)"],
|
|
480
|
-
[0.25, "rgba(70, 145, 220, 0.5)"],
|
|
481
|
-
[0.35, "rgba(150, 150, 150, 0.0)"],
|
|
482
|
-
[0.65, "rgba(150, 150, 150, 0.0)"],
|
|
483
|
-
[0.75, "rgba(200, 100, 140, 0.5)"],
|
|
484
|
-
[1.0, "rgba(240, 80, 150, 1.0)"]
|
|
485
|
-
],
|
|
486
|
-
"sequential": [
|
|
487
|
-
[0.0, "rgba(80, 100, 255, 0.5)"],
|
|
488
|
-
[0.25, "rgba(70, 145, 220, 1.0)"],
|
|
489
|
-
[0.5, "rgba(70, 220, 100, 1.0)"],
|
|
490
|
-
[0.75, "rgba(255, 181, 80, 1.0)"],
|
|
491
|
-
[1.0, "rgba(232, 50, 131, 1.0)"]
|
|
492
|
-
],
|
|
493
|
-
"sequentialminus": [
|
|
494
|
-
[0.0, "rgba(13,8,135,1.0)"], [0.11, "rgba(70,3,159,1.0)"], [0.22, "rgba(114,1,168,1.0)"],
|
|
495
|
-
[0.33, "rgba(156,23,158,1.0)"], [0.44, "rgba(189,55,134,1.0)"],
|
|
496
|
-
[0.55, "rgba(216,87,107,1.0)"], [0.66, "rgba(237,121,83,1.0)"],
|
|
497
|
-
[0.77, "rgba(251,159,58,1.0)"], [0.88, "rgba(253,202,38,1.0)"],
|
|
498
|
-
[1.0, "rgba(240,249,33,1.0)"]
|
|
499
|
-
]
|
|
500
|
-
},
|
|
501
|
-
"colorway": [
|
|
502
|
-
"#e72e84",
|
|
503
|
-
"#f77f14",
|
|
504
|
-
"#52e8b5",
|
|
505
|
-
"#ffef47",
|
|
506
|
-
"#21a4d3"
|
|
507
|
-
],
|
|
508
|
-
"font": {
|
|
509
|
-
"color": "#fff",
|
|
510
|
-
"family": "system-ui,-apple-system,\"Segoe UI\",Roboto,\"Helvetica Neue\",\"Noto Sans\",\"Liberation Sans\",Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\""
|
|
511
|
-
},
|
|
512
|
-
"geo": {
|
|
513
|
-
"bgcolor": "#686dc3",
|
|
514
|
-
"lakecolor": "#686dc3",
|
|
515
|
-
"landcolor": "#686dc3",
|
|
516
|
-
"showlakes": true,
|
|
517
|
-
"showland": true,
|
|
518
|
-
"subunitcolor": "#506784"
|
|
519
|
-
},
|
|
520
|
-
"hoverlabel": {
|
|
521
|
-
"align": "left",
|
|
522
|
-
"font": {
|
|
523
|
-
"family": "system-ui,-apple-system,\"Segoe UI\",Roboto,\"Helvetica Neue\",\"Noto Sans\",\"Liberation Sans\",Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\""
|
|
524
|
-
}
|
|
525
|
-
},
|
|
526
|
-
"hovermode": "closest",
|
|
527
|
-
"mapbox": {
|
|
528
|
-
"style": "dark"
|
|
529
|
-
},
|
|
530
|
-
"paper_bgcolor": "rgba(0, 0, 0, 0.0)",
|
|
531
|
-
"plot_bgcolor": "rgba(0, 0, 0, 0.0)",
|
|
532
|
-
"polar": {
|
|
533
|
-
"angularaxis": {
|
|
534
|
-
"gridcolor": "#506784",
|
|
535
|
-
"linecolor": "#506784",
|
|
536
|
-
"ticks": ""
|
|
537
|
-
},
|
|
538
|
-
"bgcolor": "rgb(17,17,17)",
|
|
539
|
-
"radialaxis": {
|
|
540
|
-
"gridcolor": "#506784",
|
|
541
|
-
"linecolor": "#506784",
|
|
542
|
-
"ticks": ""
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
"scene": {
|
|
546
|
-
"xaxis": {
|
|
547
|
-
"backgroundcolor": "rgb(17,17,17)",
|
|
548
|
-
"gridcolor": "#506784",
|
|
549
|
-
"gridwidth": 2,
|
|
550
|
-
"linecolor": "#506784",
|
|
551
|
-
"showbackground": true,
|
|
552
|
-
"ticks": "",
|
|
553
|
-
"zerolinecolor": "#C8D4E3"
|
|
554
|
-
},
|
|
555
|
-
"yaxis": {
|
|
556
|
-
"backgroundcolor": "rgb(17,17,17)",
|
|
557
|
-
"gridcolor": "#506784",
|
|
558
|
-
"gridwidth": 2,
|
|
559
|
-
"linecolor": "#506784",
|
|
560
|
-
"showbackground": true,
|
|
561
|
-
"ticks": "",
|
|
562
|
-
"zerolinecolor": "#C8D4E3"
|
|
563
|
-
},
|
|
564
|
-
"zaxis": {
|
|
565
|
-
"backgroundcolor": "rgb(17,17,17)",
|
|
566
|
-
"gridcolor": "#506784",
|
|
567
|
-
"gridwidth": 2,
|
|
568
|
-
"linecolor": "#506784",
|
|
569
|
-
"showbackground": true,
|
|
570
|
-
"ticks": "",
|
|
571
|
-
"zerolinecolor": "#C8D4E3"
|
|
572
|
-
}
|
|
573
|
-
},
|
|
574
|
-
"shapedefaults": {
|
|
575
|
-
"line": {
|
|
576
|
-
"color": "#f2f5fa"
|
|
577
|
-
}
|
|
578
|
-
},
|
|
579
|
-
"sliderdefaults": {
|
|
580
|
-
"bgcolor": "#C8D4E3",
|
|
581
|
-
"bordercolor": "rgb(17,17,17)",
|
|
582
|
-
"borderwidth": 1,
|
|
583
|
-
"tickwidth": 0
|
|
584
|
-
},
|
|
585
|
-
"ternary": {
|
|
586
|
-
"aaxis": {
|
|
587
|
-
"gridcolor": "#506784",
|
|
588
|
-
"linecolor": "#506784",
|
|
589
|
-
"ticks": ""
|
|
590
|
-
},
|
|
591
|
-
"baxis": {
|
|
592
|
-
"gridcolor": "#506784",
|
|
593
|
-
"linecolor": "#506784",
|
|
594
|
-
"ticks": ""
|
|
595
|
-
},
|
|
596
|
-
"bgcolor": "rgb(17,17,17)",
|
|
597
|
-
"caxis": {
|
|
598
|
-
"gridcolor": "#506784",
|
|
599
|
-
"linecolor": "#506784",
|
|
600
|
-
"ticks": ""
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
"title": {
|
|
604
|
-
"x": 0.05
|
|
605
|
-
},
|
|
606
|
-
"updatemenudefaults": {
|
|
607
|
-
"bgcolor": "#506784",
|
|
608
|
-
"borderwidth": 0
|
|
609
|
-
},
|
|
610
|
-
"xaxis": {
|
|
611
|
-
"automargin": true,
|
|
612
|
-
"gridcolor": "#7479c8",
|
|
613
|
-
"linecolor": "#506784",
|
|
614
|
-
"ticks": "",
|
|
615
|
-
"title": {
|
|
616
|
-
"standoff": 15
|
|
617
|
-
},
|
|
618
|
-
"zerolinecolor": "#7479c8",
|
|
619
|
-
"zerolinewidth": 2,
|
|
620
|
-
"gridwidth": 0.5
|
|
621
|
-
},
|
|
622
|
-
"yaxis": {
|
|
623
|
-
"automargin": true,
|
|
624
|
-
"gridcolor": "#7479c8",
|
|
625
|
-
"linecolor": "#506784",
|
|
626
|
-
"ticks": "",
|
|
627
|
-
"title": {
|
|
628
|
-
"standoff": 15
|
|
629
|
-
},
|
|
630
|
-
"zerolinecolor": "#7479c8",
|
|
631
|
-
"zerolinewidth": 2,
|
|
632
|
-
"gridwidth": 0.5
|
|
633
|
-
},
|
|
634
|
-
"piecolorway": [
|
|
635
|
-
"#e72e84",
|
|
636
|
-
"#f77f14",
|
|
637
|
-
"#52e8b5",
|
|
638
|
-
"#ffef47",
|
|
639
|
-
"#21a4d3"
|
|
640
|
-
]
|
|
641
|
-
}
|
|
642
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
dbc.themes.QUARTZ
|