seraplot 2.4.0__tar.gz → 2.4.2__tar.gz
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.
- {seraplot-2.4.0 → seraplot-2.4.2}/Cargo.lock +31 -25
- {seraplot-2.4.0 → seraplot-2.4.2}/Cargo.toml +1 -1
- {seraplot-2.4.0 → seraplot-2.4.2}/PKG-INFO +24 -35
- {seraplot-2.4.0 → seraplot-2.4.2}/README.md +23 -34
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_ml.ipynb +742 -742
- seraplot-2.4.2/build.log +0 -0
- seraplot-2.4.2/maturin_output.log +0 -0
- seraplot-2.4.2/publish_v241.log +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/pyproject.toml +1 -1
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/commands/charts.rs +147 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/registry_macro.rs +9 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/book.toml +1 -1
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/SUMMARY.md +59 -61
- seraplot-2.4.2/src/docs/about/support.md +192 -0
- seraplot-2.4.0/src/docs/api/index.md → seraplot-2.4.2/src/docs/api/api.md +1 -20
- seraplot-2.4.2/src/docs/charts/2d/area.md +364 -0
- seraplot-2.4.2/src/docs/charts/2d/bar-charts.md +591 -0
- seraplot-2.4.2/src/docs/charts/2d/bar.md +382 -0
- seraplot-2.4.2/src/docs/charts/2d/boxplot.md +392 -0
- seraplot-2.4.2/src/docs/charts/2d/bubble.md +382 -0
- seraplot-2.4.2/src/docs/charts/2d/bullet.md +404 -0
- seraplot-2.4.2/src/docs/charts/2d/candlestick.md +408 -0
- seraplot-2.4.2/src/docs/charts/2d/donut.md +302 -0
- seraplot-2.4.2/src/docs/charts/2d/dumbbell.md +348 -0
- seraplot-2.4.2/src/docs/charts/2d/funnel.md +278 -0
- seraplot-2.4.2/src/docs/charts/2d/gauge.md +370 -0
- seraplot-2.4.2/src/docs/charts/2d/grid.md +454 -0
- seraplot-2.4.2/src/docs/charts/2d/grouped-bar.md +423 -0
- seraplot-2.4.2/src/docs/charts/2d/hbar.md +312 -0
- seraplot-2.4.2/src/docs/charts/2d/heatmap.md +370 -0
- seraplot-2.4.2/src/docs/charts/2d/histogram-overlay.md +354 -0
- seraplot-2.4.2/src/docs/charts/2d/histogram.md +386 -0
- seraplot-2.4.2/src/docs/charts/2d/kde.md +348 -0
- seraplot-2.4.2/src/docs/charts/2d/line.md +324 -0
- seraplot-2.4.2/src/docs/charts/2d/lollipop.md +380 -0
- seraplot-2.4.2/src/docs/charts/2d/multiline.md +374 -0
- seraplot-2.4.2/src/docs/charts/2d/parallel.md +376 -0
- seraplot-2.4.2/src/docs/charts/2d/pie.md +284 -0
- seraplot-2.4.2/src/docs/charts/2d/radar.md +358 -0
- seraplot-2.4.2/src/docs/charts/2d/ridgeline.md +362 -0
- seraplot-2.4.2/src/docs/charts/2d/scatter.md +372 -0
- seraplot-2.4.2/src/docs/charts/2d/slideshow.md +398 -0
- seraplot-2.4.2/src/docs/charts/2d/slope.md +356 -0
- seraplot-2.4.2/src/docs/charts/2d/stacked-bar.md +363 -0
- seraplot-2.4.2/src/docs/charts/2d/sunburst.md +370 -0
- seraplot-2.4.2/src/docs/charts/2d/treemap.md +314 -0
- seraplot-2.4.2/src/docs/charts/2d/violin.md +368 -0
- seraplot-2.4.2/src/docs/charts/2d/waterfall.md +302 -0
- seraplot-2.4.2/src/docs/charts/2d/wordcloud.md +348 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/getting-started/chart-methods.md +137 -2
- seraplot-2.4.2/src/docs/getting-started/installation.md +217 -0
- seraplot-2.4.2/src/docs/ml/adaboost.md +203 -0
- seraplot-2.4.2/src/docs/ml/dbscan-class.md +203 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/kmeans.md +0 -65
- seraplot-2.4.2/src/docs/theme/custom.css +499 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/theme/lang-switcher.js +105 -0
- seraplot-2.4.2/src/docs/theme/params-panel.js +413 -0
- seraplot-2.4.2/src/docs/tooling/vscode.md +398 -0
- seraplot-2.4.2/src/plot/family_macro.rs +36 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/mod.rs +1 -0
- seraplot-2.4.2/src/plot/statistical/bar/basic.rs +10 -0
- seraplot-2.4.2/src/plot/statistical/bar/config.rs +57 -0
- seraplot-2.4.2/src/plot/statistical/bar/grouped.rs +15 -0
- seraplot-2.4.2/src/plot/statistical/bar/grouped_stacked.rs +76 -0
- seraplot-2.4.2/src/plot/statistical/bar/marimekko.rs +78 -0
- seraplot-2.4.2/src/plot/statistical/bar/mod.rs +27 -0
- seraplot-2.4.2/src/plot/statistical/bar/multicategory.rs +99 -0
- seraplot-2.4.2/src/plot/statistical/bar/pictogram.rs +80 -0
- seraplot-2.4.2/src/plot/statistical/bar/relative.rs +82 -0
- seraplot-2.4.2/src/plot/statistical/bar/variant.rs +13 -0
- seraplot-2.4.2/src/plot/statistical/line/basic.rs +10 -0
- seraplot-2.4.2/src/plot/statistical/line/config.rs +57 -0
- seraplot-2.4.2/src/plot/statistical/line/connected_scatter.rs +80 -0
- seraplot-2.4.2/src/plot/statistical/line/dashed.rs +73 -0
- seraplot-2.4.2/src/plot/statistical/line/filled.rs +101 -0
- seraplot-2.4.2/src/plot/statistical/line/gapped.rs +104 -0
- seraplot-2.4.2/src/plot/statistical/line/mod.rs +29 -0
- seraplot-2.4.2/src/plot/statistical/line/multi.rs +15 -0
- seraplot-2.4.2/src/plot/statistical/line/sparkline.rs +95 -0
- seraplot-2.4.2/src/plot/statistical/line/spline.rs +76 -0
- seraplot-2.4.2/src/plot/statistical/line/stepped.rs +95 -0
- seraplot-2.4.2/src/plot/statistical/line/variant.rs +13 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/mod.rs +4 -0
- seraplot-2.4.0/build.log +0 -3004
- seraplot-2.4.0/src/docs/about/support.md +0 -96
- seraplot-2.4.0/src/docs/charts/2d/area.md +0 -230
- seraplot-2.4.0/src/docs/charts/2d/bar.md +0 -316
- seraplot-2.4.0/src/docs/charts/2d/boxplot.md +0 -250
- seraplot-2.4.0/src/docs/charts/2d/bubble.md +0 -244
- seraplot-2.4.0/src/docs/charts/2d/bullet.md +0 -205
- seraplot-2.4.0/src/docs/charts/2d/candlestick.md +0 -223
- seraplot-2.4.0/src/docs/charts/2d/donut.md +0 -205
- seraplot-2.4.0/src/docs/charts/2d/dumbbell.md +0 -208
- seraplot-2.4.0/src/docs/charts/2d/funnel.md +0 -195
- seraplot-2.4.0/src/docs/charts/2d/gauge.md +0 -203
- seraplot-2.4.0/src/docs/charts/2d/grid.md +0 -218
- seraplot-2.4.0/src/docs/charts/2d/grouped-bar.md +0 -273
- seraplot-2.4.0/src/docs/charts/2d/hbar.md +0 -225
- seraplot-2.4.0/src/docs/charts/2d/heatmap.md +0 -241
- seraplot-2.4.0/src/docs/charts/2d/histogram-overlay.md +0 -230
- seraplot-2.4.0/src/docs/charts/2d/histogram.md +0 -230
- seraplot-2.4.0/src/docs/charts/2d/kde.md +0 -226
- seraplot-2.4.0/src/docs/charts/2d/line.md +0 -264
- seraplot-2.4.0/src/docs/charts/2d/lollipop.md +0 -226
- seraplot-2.4.0/src/docs/charts/2d/multiline.md +0 -237
- seraplot-2.4.0/src/docs/charts/2d/parallel.md +0 -225
- seraplot-2.4.0/src/docs/charts/2d/pie.md +0 -202
- seraplot-2.4.0/src/docs/charts/2d/radar.md +0 -198
- seraplot-2.4.0/src/docs/charts/2d/ridgeline.md +0 -228
- seraplot-2.4.0/src/docs/charts/2d/scatter.md +0 -281
- seraplot-2.4.0/src/docs/charts/2d/slideshow.md +0 -207
- seraplot-2.4.0/src/docs/charts/2d/slope.md +0 -214
- seraplot-2.4.0/src/docs/charts/2d/stacked-bar.md +0 -232
- seraplot-2.4.0/src/docs/charts/2d/sunburst.md +0 -210
- seraplot-2.4.0/src/docs/charts/2d/treemap.md +0 -211
- seraplot-2.4.0/src/docs/charts/2d/violin.md +0 -234
- seraplot-2.4.0/src/docs/charts/2d/waterfall.md +0 -213
- seraplot-2.4.0/src/docs/charts/2d/wordcloud.md +0 -199
- seraplot-2.4.0/src/docs/getting-started/installation.md +0 -131
- seraplot-2.4.0/src/docs/ml/adaboost.md +0 -185
- seraplot-2.4.0/src/docs/ml/dbscan-class.md +0 -227
- seraplot-2.4.0/src/docs/theme/custom.css +0 -110
- seraplot-2.4.0/src/docs/tooling/vscode.md +0 -165
- {seraplot-2.4.0 → seraplot-2.4.2}/.gitignore +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/05--Diabetes_SeraPlot.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/07--OpenFoodFacts_SeraPlot_Benchmark.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/TEST_1M_Battle.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_all.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_bigdata.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_full.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_issues.json +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_knn_sgd.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_perf.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_quick.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_quick2.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_scale.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_seraplot.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_sklearn.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_svc.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_svc2.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/bench_test.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_gridsearch.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_gridsearch2.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_kmeans_heavy.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_kmeans_openfoodfacts.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_ml_openfoodfacts.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/benchmark_ml_out.ipynb +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/gen_bench_slides.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/1.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/2.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/3.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/4.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/5.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/6.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/7.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/2d/8.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/1.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/2.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/3.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/4.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/5.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/6.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/7.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/3d/8.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/README.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/benchmark/1.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/benchmark/2.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/benchmark/3.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/images/logo.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/kmeans_test.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/publish_2378.log +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/publish_log.txt +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/python/seraplot/__init__.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/python/seraplot/matplotlib.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/python/seraplot/seraplot.cp311-win_amd64.pyd.old +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/results_seraplot.json +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/results_sklearn.json +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/.github/workflows/mdbook.yml +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/.gitignore +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/README.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/asset/SVG World Map with labels.svg +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/asset/logo.png +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/asset/world.svg +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/builder_template.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/chart_types.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/commands/docs.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/commands/ml.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/commands/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/commands/native.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/commands/registry.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/export_builder.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/fast_export_c.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/fast_render.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/memory_pool.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/unified_builder.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/unified_config.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/arena_alloc.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/bitset.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/compact_state.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/data_processor.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/image_processor.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/lazy_builders.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/memory_pool.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/simd_ops.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/bindings/utils/state_export.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/core/builders.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/core/math.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/core/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/data/conversion.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/data/index.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/data/loader.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/data/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/data/processor.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/about/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/2d/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/bar3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/bubble3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/candlestick3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/dumbbell3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/funnel3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/globe3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/heatmap3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/kde3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/line3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/lollipop3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/pie3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/radar3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/ridgeline3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/scatter3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/stacked-bar3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/sunburst3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/3d/violin3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/map/bubble-map.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/map/choropleth.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/charts/map/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/a11y.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/auto-display.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/automl.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/background.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/csp.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/diff.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/downsample.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/drift.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/export.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/facet.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/hover.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/ml-persistence.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/palette.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/pickle.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/streaming.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/config/themes.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/getting-started/chart-object.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/getting-started/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/getting-started/quickstart.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/introduction.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/bayes-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/clustering-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/cv-splitters.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/dbscan.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/dbscan3d.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/decision-tree.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/decomposition-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/decomposition.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/elastic-net.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/evaluation-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/gradient-boosting.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/grid-search.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/isolation-forest.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/kmeans-class.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/knn.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/lasso.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/linear-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/linear-regression.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/logistic-regression.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/metrics-classification.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/metrics-clustering.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/metrics-regression.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/metrics.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/naive-bayes.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/neighbors-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/permutation-importance.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/preprocessing-advanced.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/preprocessing-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/preprocessing.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/random-forest.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/ridge.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/selection-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/sgd.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/svm-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/svm.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/train-test-split.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/ml/tree-index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/area.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bar.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bar3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bench-matplotlib.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bench-plotly.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bench-seraplot.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/boxplot.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bubble-map.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bubble.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bubble3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/bullet.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/candlestick.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/candlestick3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/choropleth.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/dbscan-class.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/dbscan.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/dbscan3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/donut.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/dumbbell.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/dumbbell3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/funnel.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/funnel3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/gauge.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/globe3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/grid.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/grouped-bar.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/hbar.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/heatmap.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/heatmap3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/histogram-overlay.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/histogram.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/kde.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/kde3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/line.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/line3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/lollipop.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/lollipop3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/multiline.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/parallel.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/pie.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/pie3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/radar.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/radar3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/ridgeline.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/ridgeline3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/scatter.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/scatter3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/slideshow.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/slope.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/stacked-bar.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/stacked-bar3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/sunburst.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/sunburst3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/treemap.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/violin.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/violin3d.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/waterfall.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/previews/wordcloud.html +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/theme/donate-popup.js +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/docs/tooling/index.md +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/assets.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/fast_builders.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/fast_exporter.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/hover.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/html_export.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/html_template.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/js_3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/html/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/lib.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/anomaly/isolation_forest.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/anomaly/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/cache.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/decomposition/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/decomposition/pca.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linalg.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/elastic_net.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/lasso.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/logistic.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/ols.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/ridge.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/linear/sgd.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/metrics/classification.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/metrics/clustering.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/metrics/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/metrics/regression.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/model_selection/cross_val.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/model_selection/grid_search.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/model_selection/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/model_selection/permutation.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/model_selection/split.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/naive_bayes/bernoulli.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/naive_bayes/gaussian.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/naive_bayes/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/naive_bayes/multinomial.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/neighbors/knn.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/neighbors/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/preprocessing/encoders.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/preprocessing/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/preprocessing/scalers.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/preprocessing/transformers.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/svm/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/svm/svm.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/tree/adaboost.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/tree/decision_tree.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/tree/decision_tree_backup.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/tree/gradient_boosting.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/tree/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/ml/tree/random_forest.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/camera.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/canvas.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/containers_3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/controller/chart_controller.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/controller/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/controller/plot_3d_controller.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/_3d/bar_3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/_3d/line_3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/_3d/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/_3d/plot_3d_types.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/_3d/scatter_3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/bar.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/chart.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/kmeans.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/line.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/scatter.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/default/svg.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/generic.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/_3d/globe.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/_3d/globe_html.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/_3d/globe_types.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/_3d/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/bubble_map.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/chart.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/choropleth.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/svg_parser.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/map/world_data.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/projection.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/renderers.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/scale_renderer.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/seaborn/_3d/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/seaborn/_3d/plot_3d_types.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/seaborn/chart.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/seaborn/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/candlestick3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/dumbbell3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/funnel3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/heatmap3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/kde3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/lollipop3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/pie3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/plot_3d_types.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/radar3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/ridgeline3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/stacked_bar3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/sunburst3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/_3d/violin3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/area.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/boxplot.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/bubble.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/bullet.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/candlestick.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/common.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/dumbbell.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/funnel.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/gauge.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/grouped_bar.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/heatmap.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/histogram.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/kde.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/lollipop.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/multiline.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/parallel.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/pie.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/radar.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/ridgeline.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/slope.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/sunburst.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/treemap.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/violin.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/waterfall.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/plot/statistical/wordcloud.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/cache.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/chart.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/gui.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/hybrid.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/manager/button_manager.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/manager/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/render/advanced_render.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/render/fast_render_gui.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/render/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/render/pipeline.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/render/viewer_3d.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/render/wiki_viewer.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/utils/image_loader.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/viewer/utils/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/wiki/api.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/wiki/extractor.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/wiki/language.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/wiki/macros.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/wiki/metadata.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/src/wiki/mod.rs +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/test_accuracy.py +0 -0
- {seraplot-2.4.0 → seraplot-2.4.2}/test_universal_ml.js +0 -0
|
@@ -664,9 +664,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
664
664
|
|
|
665
665
|
[[package]]
|
|
666
666
|
name = "cc"
|
|
667
|
-
version = "1.2.
|
|
667
|
+
version = "1.2.61"
|
|
668
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
-
checksum = "
|
|
669
|
+
checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
|
|
670
670
|
dependencies = [
|
|
671
671
|
"find-msvc-tools",
|
|
672
672
|
"jobserver",
|
|
@@ -2271,9 +2271,9 @@ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
|
2271
2271
|
|
|
2272
2272
|
[[package]]
|
|
2273
2273
|
name = "libc"
|
|
2274
|
-
version = "0.2.
|
|
2274
|
+
version = "0.2.186"
|
|
2275
2275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
-
checksum = "
|
|
2276
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2277
2277
|
|
|
2278
2278
|
[[package]]
|
|
2279
2279
|
name = "libloading"
|
|
@@ -2763,9 +2763,9 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
|
2763
2763
|
|
|
2764
2764
|
[[package]]
|
|
2765
2765
|
name = "openssl"
|
|
2766
|
-
version = "0.10.
|
|
2766
|
+
version = "0.10.78"
|
|
2767
2767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
-
checksum = "
|
|
2768
|
+
checksum = "f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222"
|
|
2769
2769
|
dependencies = [
|
|
2770
2770
|
"bitflags 2.11.1",
|
|
2771
2771
|
"cfg-if",
|
|
@@ -2795,9 +2795,9 @@ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
|
2795
2795
|
|
|
2796
2796
|
[[package]]
|
|
2797
2797
|
name = "openssl-sys"
|
|
2798
|
-
version = "0.9.
|
|
2798
|
+
version = "0.9.114"
|
|
2799
2799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
2800
|
+
checksum = "13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6"
|
|
2801
2801
|
dependencies = [
|
|
2802
2802
|
"cc",
|
|
2803
2803
|
"libc",
|
|
@@ -2807,9 +2807,9 @@ dependencies = [
|
|
|
2807
2807
|
|
|
2808
2808
|
[[package]]
|
|
2809
2809
|
name = "orbclient"
|
|
2810
|
-
version = "0.3.
|
|
2810
|
+
version = "0.3.53"
|
|
2811
2811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
-
checksum = "
|
|
2812
|
+
checksum = "12c6933ddbbd16539a7672e697bb8d41ac3a4e99ac43eeb40c07236bd7fcb2dd"
|
|
2813
2813
|
dependencies = [
|
|
2814
2814
|
"libc",
|
|
2815
2815
|
"libredox",
|
|
@@ -3154,9 +3154,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
|
3154
3154
|
|
|
3155
3155
|
[[package]]
|
|
3156
3156
|
name = "rand"
|
|
3157
|
-
version = "0.8.
|
|
3157
|
+
version = "0.8.6"
|
|
3158
3158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3159
|
-
checksum = "
|
|
3159
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
3160
3160
|
dependencies = [
|
|
3161
3161
|
"libc",
|
|
3162
3162
|
"rand_chacha",
|
|
@@ -3471,7 +3471,7 @@ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
|
3471
3471
|
|
|
3472
3472
|
[[package]]
|
|
3473
3473
|
name = "seraplot"
|
|
3474
|
-
version = "2.4.
|
|
3474
|
+
version = "2.4.2"
|
|
3475
3475
|
dependencies = [
|
|
3476
3476
|
"base64 0.22.1",
|
|
3477
3477
|
"criterion",
|
|
@@ -3930,9 +3930,9 @@ dependencies = [
|
|
|
3930
3930
|
|
|
3931
3931
|
[[package]]
|
|
3932
3932
|
name = "tokio"
|
|
3933
|
-
version = "1.52.
|
|
3933
|
+
version = "1.52.1"
|
|
3934
3934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
-
checksum = "
|
|
3935
|
+
checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
|
|
3936
3936
|
dependencies = [
|
|
3937
3937
|
"bytes",
|
|
3938
3938
|
"libc",
|
|
@@ -4014,7 +4014,7 @@ dependencies = [
|
|
|
4014
4014
|
"indexmap",
|
|
4015
4015
|
"toml_datetime 1.1.1+spec-1.1.0",
|
|
4016
4016
|
"toml_parser",
|
|
4017
|
-
"winnow 1.0.
|
|
4017
|
+
"winnow 1.0.2",
|
|
4018
4018
|
]
|
|
4019
4019
|
|
|
4020
4020
|
[[package]]
|
|
@@ -4023,7 +4023,7 @@ version = "1.1.2+spec-1.1.0"
|
|
|
4023
4023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
4024
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
4025
4025
|
dependencies = [
|
|
4026
|
-
"winnow 1.0.
|
|
4026
|
+
"winnow 1.0.2",
|
|
4027
4027
|
]
|
|
4028
4028
|
|
|
4029
4029
|
[[package]]
|
|
@@ -4087,9 +4087,9 @@ dependencies = [
|
|
|
4087
4087
|
|
|
4088
4088
|
[[package]]
|
|
4089
4089
|
name = "typenum"
|
|
4090
|
-
version = "1.
|
|
4090
|
+
version = "1.20.0"
|
|
4091
4091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
-
checksum = "
|
|
4092
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
4093
4093
|
|
|
4094
4094
|
[[package]]
|
|
4095
4095
|
name = "uds_windows"
|
|
@@ -4195,11 +4195,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
4195
4195
|
|
|
4196
4196
|
[[package]]
|
|
4197
4197
|
name = "wasip2"
|
|
4198
|
-
version = "1.0.
|
|
4198
|
+
version = "1.0.3+wasi-0.2.9"
|
|
4199
4199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4200
|
-
checksum = "
|
|
4200
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
4201
4201
|
dependencies = [
|
|
4202
|
-
"wit-bindgen",
|
|
4202
|
+
"wit-bindgen 0.57.1",
|
|
4203
4203
|
]
|
|
4204
4204
|
|
|
4205
4205
|
[[package]]
|
|
@@ -4208,7 +4208,7 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
|
4208
4208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4209
4209
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
4210
4210
|
dependencies = [
|
|
4211
|
-
"wit-bindgen",
|
|
4211
|
+
"wit-bindgen 0.51.0",
|
|
4212
4212
|
]
|
|
4213
4213
|
|
|
4214
4214
|
[[package]]
|
|
@@ -5070,9 +5070,9 @@ dependencies = [
|
|
|
5070
5070
|
|
|
5071
5071
|
[[package]]
|
|
5072
5072
|
name = "winnow"
|
|
5073
|
-
version = "1.0.
|
|
5073
|
+
version = "1.0.2"
|
|
5074
5074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5075
|
-
checksum = "
|
|
5075
|
+
checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
|
|
5076
5076
|
dependencies = [
|
|
5077
5077
|
"memchr",
|
|
5078
5078
|
]
|
|
@@ -5096,6 +5096,12 @@ dependencies = [
|
|
|
5096
5096
|
"wit-bindgen-rust-macro",
|
|
5097
5097
|
]
|
|
5098
5098
|
|
|
5099
|
+
[[package]]
|
|
5100
|
+
name = "wit-bindgen"
|
|
5101
|
+
version = "0.57.1"
|
|
5102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5103
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
5104
|
+
|
|
5099
5105
|
[[package]]
|
|
5100
5106
|
name = "wit-bindgen-core"
|
|
5101
5107
|
version = "0.51.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: seraplot
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.2
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Environment :: Win32 (MS Windows)
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -30,42 +30,47 @@ License: MIT
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
32
32
|
|
|
33
|
-
SeraPlot
|
|
33
|
+
SeraPlot — High-Performance Data Visualization & ML Framework
|
|
34
34
|
|
|
35
|
-
SeraPlot is a framework
|
|
36
|
-
alternative to Plotly, designed specifically for data visualization. This library is distributed
|
|
37
|
-
across multiple programming languages (Python, C#, C++, JavaScript), regularly maintained and
|
|
38
|
-
updated, offering superior speed and significantly lower memory consumption compared to competitors.
|
|
35
|
+
**SeraPlot v2.4.0+** is a production-grade framework written in **Rust**, delivering blazing-fast interactive charts and built-in machine learning pipelines. Designed as a modern alternative to Plotly + scikit-learn, it combines visualization and ML preprocessing in a single Rust binary — no dependencies, no bloat.
|
|
39
36
|
|
|
40
|
-
|
|
37
|
+
📖 **Documentation:** https://feur25.github.io/seraplot/introduction.html
|
|
41
38
|
|
|
42
39
|
---
|
|
43
40
|
|
|
44
|
-
|
|
41
|
+
## Why Choose SeraPlot?
|
|
45
42
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
43
|
+
**100–8000× faster** than Plotly & Matplotlib on chart generation
|
|
44
|
+
**Minimal memory footprint** — runs on edge devices, embedded systems, low-power servers
|
|
45
|
+
**Production-ready** — enterprise-grade stability, zero fluff, maximum efficiency
|
|
46
|
+
**Multi-language** — Python, JavaScript/WebAssembly, C/C++, C#
|
|
47
|
+
**60+ chart types** — 2D, 3D, maps, statistical plots, all GPU-accelerated
|
|
48
|
+
**ML preprocessing & metrics** — StandardScaler with Welford `partial_fit` (online learning), Pipeline with `score`/`predict_proba`/`decision_function`, OneHotEncoder/OrdinalEncoder with incremental category union
|
|
49
|
+
**WebAssembly** — npm package `@seraplot/wasm` for browser visualization & ML inference
|
|
50
|
+
**Streaming data** — online scalers and encoders for incremental model training
|
|
52
51
|
|
|
53
52
|
---
|
|
54
|
-
|
|
55
|
-
|
|
53
|
+
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
**Python** (PyPI — wheel for CPython 3.11+)
|
|
56
57
|
|
|
57
58
|
```bash
|
|
58
59
|
pip install seraplot
|
|
59
60
|
```
|
|
60
61
|
|
|
61
|
-
|
|
62
|
-
|
|
62
|
+
Alternative package managers:
|
|
63
63
|
```bash
|
|
64
64
|
conda install -c conda-forge seraplot
|
|
65
|
+
uv pip install seraplot
|
|
65
66
|
```
|
|
67
|
+
|
|
68
|
+
**JavaScript/WebAssembly** (npm)
|
|
69
|
+
|
|
66
70
|
```bash
|
|
67
|
-
|
|
71
|
+
npm install seraplot
|
|
68
72
|
```
|
|
73
|
+
|
|
69
74
|
---
|
|
70
75
|
|
|
71
76
|
### Gallery — Chart Types
|
|
@@ -91,20 +96,4 @@ uv pip install seraplot
|
|
|
91
96
|
|  |  |  |
|
|
92
97
|
|
|
93
98
|
**SeraPlot outperforms Plotly and Matplotlib by 100–8000× on chart generation speed.**
|
|
94
|
-
|
|
95
|
-
---
|
|
96
|
-
|
|
97
|
-
### Quick Start
|
|
98
|
-
|
|
99
|
-
```python
|
|
100
|
-
from seraplot import build_bar_chart
|
|
101
|
-
|
|
102
|
-
# Create a simple bar chart
|
|
103
|
-
build_bar_chart(
|
|
104
|
-
'Sales by Region',
|
|
105
|
-
['North', 'South', 'East', 'West'],
|
|
106
|
-
[120, 95, 150, 110],
|
|
107
|
-
width=900, height=500
|
|
108
|
-
)
|
|
109
|
-
```
|
|
110
99
|
|
|
@@ -1,39 +1,44 @@
|
|
|
1
|
-
SeraPlot
|
|
1
|
+
SeraPlot — High-Performance Data Visualization & ML Framework
|
|
2
2
|
|
|
3
|
-
SeraPlot is a framework
|
|
4
|
-
alternative to Plotly, designed specifically for data visualization. This library is distributed
|
|
5
|
-
across multiple programming languages (Python, C#, C++, JavaScript), regularly maintained and
|
|
6
|
-
updated, offering superior speed and significantly lower memory consumption compared to competitors.
|
|
3
|
+
**SeraPlot v2.4.0+** is a production-grade framework written in **Rust**, delivering blazing-fast interactive charts and built-in machine learning pipelines. Designed as a modern alternative to Plotly + scikit-learn, it combines visualization and ML preprocessing in a single Rust binary — no dependencies, no bloat.
|
|
7
4
|
|
|
8
|
-
|
|
5
|
+
📖 **Documentation:** https://feur25.github.io/seraplot/introduction.html
|
|
9
6
|
|
|
10
7
|
---
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
## Why Choose SeraPlot?
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
**100–8000× faster** than Plotly & Matplotlib on chart generation
|
|
12
|
+
**Minimal memory footprint** — runs on edge devices, embedded systems, low-power servers
|
|
13
|
+
**Production-ready** — enterprise-grade stability, zero fluff, maximum efficiency
|
|
14
|
+
**Multi-language** — Python, JavaScript/WebAssembly, C/C++, C#
|
|
15
|
+
**60+ chart types** — 2D, 3D, maps, statistical plots, all GPU-accelerated
|
|
16
|
+
**ML preprocessing & metrics** — StandardScaler with Welford `partial_fit` (online learning), Pipeline with `score`/`predict_proba`/`decision_function`, OneHotEncoder/OrdinalEncoder with incremental category union
|
|
17
|
+
**WebAssembly** — npm package `@seraplot/wasm` for browser visualization & ML inference
|
|
18
|
+
**Streaming data** — online scalers and encoders for incremental model training
|
|
20
19
|
|
|
21
20
|
---
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
**Python** (PyPI — wheel for CPython 3.11+)
|
|
24
25
|
|
|
25
26
|
```bash
|
|
26
27
|
pip install seraplot
|
|
27
28
|
```
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
Alternative package managers:
|
|
31
31
|
```bash
|
|
32
32
|
conda install -c conda-forge seraplot
|
|
33
|
+
uv pip install seraplot
|
|
33
34
|
```
|
|
35
|
+
|
|
36
|
+
**JavaScript/WebAssembly** (npm)
|
|
37
|
+
|
|
34
38
|
```bash
|
|
35
|
-
|
|
39
|
+
npm install seraplot
|
|
36
40
|
```
|
|
41
|
+
|
|
37
42
|
---
|
|
38
43
|
|
|
39
44
|
### Gallery — Chart Types
|
|
@@ -59,19 +64,3 @@ uv pip install seraplot
|
|
|
59
64
|
|  |  |  |
|
|
60
65
|
|
|
61
66
|
**SeraPlot outperforms Plotly and Matplotlib by 100–8000× on chart generation speed.**
|
|
62
|
-
|
|
63
|
-
---
|
|
64
|
-
|
|
65
|
-
### Quick Start
|
|
66
|
-
|
|
67
|
-
```python
|
|
68
|
-
from seraplot import build_bar_chart
|
|
69
|
-
|
|
70
|
-
# Create a simple bar chart
|
|
71
|
-
build_bar_chart(
|
|
72
|
-
'Sales by Region',
|
|
73
|
-
['North', 'South', 'East', 'West'],
|
|
74
|
-
[120, 95, 150, 110],
|
|
75
|
-
width=900, height=500
|
|
76
|
-
)
|
|
77
|
-
```
|