seraplot 2.7.10__tar.gz → 2.7.11__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.7.11/.continueignore +31 -0
- seraplot-2.7.11/.github/copilot-instructions.md +18 -0
- seraplot-2.7.11/.sera-ai/PROJECT_MEMORY.md +75 -0
- seraplot-2.7.11/.vscode/settings.json +5 -0
- seraplot-2.7.11/AGENTS.md +47 -0
- seraplot-2.7.11/Cargo.lock +6460 -0
- seraplot-2.7.11/Cargo.toml +82 -0
- seraplot-2.7.11/PKG-INFO +91 -0
- seraplot-2.7.11/benches/dispatch_bench.rs +29 -0
- seraplot-2.7.11/build/bindings.rs +620 -0
- seraplot-2.7.11/build/common.rs +563 -0
- seraplot-2.7.11/build/ml/docs.rs +531 -0
- seraplot-2.7.11/build/ml/mod.rs +1 -0
- seraplot-2.7.11/build/plot/docs.rs +379 -0
- seraplot-2.7.11/build/plot/mod.rs +1 -0
- seraplot-2.7.11/build/registry.rs +76 -0
- seraplot-2.7.11/build.rs +69 -0
- seraplot-2.7.11/build_bindings.ps1 +45 -0
- seraplot-2.7.11/ollama-qwen3-8b-32k.Modelfile +3 -0
- seraplot-2.7.11/ollama-qwen3-8b-agent-12k.Modelfile +12 -0
- seraplot-2.7.11/ollama-qwen3-coder-64k.Modelfile +3 -0
- seraplot-2.7.11/ollama-qwen3-coder-8k.Modelfile +3 -0
- seraplot-2.7.11/ollama-sera-agent-qwen3-4b-64k.Modelfile +11 -0
- seraplot-2.7.11/ollama-sera-agent-qwen3-4b.Modelfile +12 -0
- seraplot-2.7.11/ollama-sera-deep-qwen3-4b-128k.Modelfile +10 -0
- seraplot-2.7.11/ollama-sera-deep-qwen3-4b.Modelfile +10 -0
- seraplot-2.7.11/pyproject.toml +40 -0
- seraplot-2.7.11/python/seraplot/__init__.py +72 -0
- seraplot-2.7.11/seraplot-macros/src/bind.rs +152 -0
- seraplot-2.7.11/seraplot-macros/src/class.rs +206 -0
- seraplot-2.7.11/seraplot-macros/src/doc.rs +89 -0
- seraplot-2.7.11/seraplot-macros/src/lib.rs +78 -0
- seraplot-2.7.11/seraplot-macros/src/model.rs +50 -0
- seraplot-2.7.11/seraplot-macros/src/util.rs +185 -0
- seraplot-2.7.11/src/.gitignore +8 -0
- seraplot-2.7.11/src/_py.rs +584 -0
- seraplot-2.7.11/src/bindings/chart_types.rs +73 -0
- seraplot-2.7.11/src/bindings/commands/charts/mod.rs +4 -0
- seraplot-2.7.11/src/bindings/commands/docs.rs +2553 -0
- seraplot-2.7.11/src/bindings/commands/ml/mod.rs +1 -0
- seraplot-2.7.11/src/bindings/commands/mod.rs +10 -0
- seraplot-2.7.11/src/bindings/fast_export_c.rs +68 -0
- seraplot-2.7.11/src/bindings/fast_render.rs +204 -0
- seraplot-2.7.11/src/bindings/mod.rs +24 -0
- seraplot-2.7.11/src/bindings/unified_config.rs +162 -0
- seraplot-2.7.11/src/bindings/utils/adaptive_buf.rs +106 -0
- seraplot-2.7.11/src/bindings/utils/arena_alloc.rs +96 -0
- seraplot-2.7.11/src/bindings/utils/bitset.rs +138 -0
- seraplot-2.7.11/src/bindings/utils/compact_state.rs +85 -0
- seraplot-2.7.11/src/bindings/utils/data_processor.rs +60 -0
- seraplot-2.7.11/src/bindings/utils/image_processor.rs +41 -0
- seraplot-2.7.11/src/bindings/utils/lazy_builders.rs +198 -0
- seraplot-2.7.11/src/bindings/utils/memory_pool.rs +169 -0
- seraplot-2.7.11/src/bindings/utils/mod.rs +21 -0
- seraplot-2.7.11/src/bindings/utils/simd_ops.rs +28 -0
- seraplot-2.7.11/src/bindings/utils/state_export.rs +306 -0
- seraplot-2.7.11/src/book.toml +27 -0
- seraplot-2.7.11/src/cloud/chunker.rs +86 -0
- seraplot-2.7.11/src/cloud/mod.rs +3 -0
- seraplot-2.7.11/src/cloud/planner.rs +64 -0
- seraplot-2.7.11/src/cloud/profile.rs +35 -0
- seraplot-2.7.11/src/core/adaptive_exec.rs +62 -0
- seraplot-2.7.11/src/core/dispatch.rs +184 -0
- seraplot-2.7.11/src/core/hw_profile.rs +50 -0
- seraplot-2.7.11/src/core/math.rs +406 -0
- seraplot-2.7.11/src/core/mod.rs +12 -0
- seraplot-2.7.11/src/data/dataset.rs +264 -0
- seraplot-2.7.11/src/data/loader.rs +123 -0
- seraplot-2.7.11/src/data/mod.rs +3 -0
- seraplot-2.7.11/src/html/assets.rs +272 -0
- seraplot-2.7.11/src/html/fast_builders.rs +153 -0
- seraplot-2.7.11/src/html/fast_exporter.rs +120 -0
- seraplot-2.7.11/src/html/hover.rs +714 -0
- seraplot-2.7.11/src/html/html_export.rs +427 -0
- seraplot-2.7.11/src/html/html_template.rs +246 -0
- seraplot-2.7.11/src/html/js_3d.rs +1333 -0
- seraplot-2.7.11/src/html/mod.rs +17 -0
- seraplot-2.7.11/src/lib.rs +3057 -0
- seraplot-2.7.11/src/ml/anomaly/isolation_forest.rs +234 -0
- seraplot-2.7.11/src/ml/anomaly/mod.rs +3 -0
- seraplot-2.7.11/src/ml/bindings/anomaly.rs +36 -0
- seraplot-2.7.11/src/ml/bindings/clustering.rs +73 -0
- seraplot-2.7.11/src/ml/bindings/decomposition.rs +50 -0
- seraplot-2.7.11/src/ml/bindings/ensemble.rs +139 -0
- seraplot-2.7.11/src/ml/bindings/helpers.rs +107 -0
- seraplot-2.7.11/src/ml/bindings/importance.rs +48 -0
- seraplot-2.7.11/src/ml/bindings/linear.rs +168 -0
- seraplot-2.7.11/src/ml/bindings/metrics.rs +155 -0
- seraplot-2.7.11/src/ml/bindings/mod.rs +32 -0
- seraplot-2.7.11/src/ml/bindings/model_selection.rs +104 -0
- seraplot-2.7.11/src/ml/bindings/naive_bayes.rs +51 -0
- seraplot-2.7.11/src/ml/bindings/neighbors.rs +50 -0
- seraplot-2.7.11/src/ml/bindings/persistence.rs +49 -0
- seraplot-2.7.11/src/ml/bindings/preprocessing.rs +188 -0
- seraplot-2.7.11/src/ml/bindings/state.rs +258 -0
- seraplot-2.7.11/src/ml/bindings/svm.rs +40 -0
- seraplot-2.7.11/src/ml/bindings/tree.rs +64 -0
- seraplot-2.7.11/src/ml/cache.rs +548 -0
- seraplot-2.7.11/src/ml/decomposition/mod.rs +3 -0
- seraplot-2.7.11/src/ml/decomposition/pca.rs +356 -0
- seraplot-2.7.11/src/ml/distributed/mod.rs +138 -0
- seraplot-2.7.11/src/ml/export/mod.rs +2 -0
- seraplot-2.7.11/src/ml/export/powerbi.rs +86 -0
- seraplot-2.7.11/src/ml/export/tableau.rs +125 -0
- seraplot-2.7.11/src/ml/gpu/mod.rs +171 -0
- seraplot-2.7.11/src/ml/handle.rs +240 -0
- seraplot-2.7.11/src/ml/linalg.rs +769 -0
- seraplot-2.7.11/src/ml/linear/elastic_net.rs +367 -0
- seraplot-2.7.11/src/ml/linear/lasso.rs +74 -0
- seraplot-2.7.11/src/ml/linear/logistic.rs +742 -0
- seraplot-2.7.11/src/ml/linear/mod.rs +13 -0
- seraplot-2.7.11/src/ml/linear/ols.rs +192 -0
- seraplot-2.7.11/src/ml/linear/ridge.rs +337 -0
- seraplot-2.7.11/src/ml/linear/sgd.rs +656 -0
- seraplot-2.7.11/src/ml/metrics/classification.rs +514 -0
- seraplot-2.7.11/src/ml/metrics/clustering.rs +390 -0
- seraplot-2.7.11/src/ml/metrics/mod.rs +7 -0
- seraplot-2.7.11/src/ml/metrics/regression.rs +166 -0
- seraplot-2.7.11/src/ml/mod.rs +49 -0
- seraplot-2.7.11/src/ml/model_selection/cross_val.rs +80 -0
- seraplot-2.7.11/src/ml/model_selection/grid_search.rs +2066 -0
- seraplot-2.7.11/src/ml/model_selection/mod.rs +9 -0
- seraplot-2.7.11/src/ml/model_selection/permutation.rs +88 -0
- seraplot-2.7.11/src/ml/model_selection/split.rs +207 -0
- seraplot-2.7.11/src/ml/models/decomposition.rs +1 -0
- seraplot-2.7.11/src/ml/models/linear.rs +4 -0
- seraplot-2.7.11/src/ml/models/mod.rs +17 -0
- seraplot-2.7.11/src/ml/models/naive_bayes.rs +1 -0
- seraplot-2.7.11/src/ml/models/preprocessing.rs +5 -0
- seraplot-2.7.11/src/ml/models/tree.rs +5 -0
- seraplot-2.7.11/src/ml/naive_bayes/bernoulli.rs +188 -0
- seraplot-2.7.11/src/ml/naive_bayes/gaussian.rs +217 -0
- seraplot-2.7.11/src/ml/naive_bayes/mod.rs +7 -0
- seraplot-2.7.11/src/ml/naive_bayes/multinomial.rs +159 -0
- seraplot-2.7.11/src/ml/neighbors/knn.rs +809 -0
- seraplot-2.7.11/src/ml/neighbors/mod.rs +3 -0
- seraplot-2.7.11/src/ml/preprocessing/encoders.rs +214 -0
- seraplot-2.7.11/src/ml/preprocessing/mod.rs +7 -0
- seraplot-2.7.11/src/ml/preprocessing/scalers.rs +750 -0
- seraplot-2.7.11/src/ml/preprocessing/transformers.rs +490 -0
- seraplot-2.7.11/src/ml/registry/mod.rs +171 -0
- seraplot-2.7.11/src/ml/svm/mod.rs +3 -0
- seraplot-2.7.11/src/ml/svm/svm.rs +503 -0
- seraplot-2.7.11/src/ml/tree/adaboost.rs +567 -0
- seraplot-2.7.11/src/ml/tree/decision_tree.rs +1076 -0
- seraplot-2.7.11/src/ml/tree/gradient_boosting.rs +258 -0
- seraplot-2.7.11/src/ml/tree/mod.rs +9 -0
- seraplot-2.7.11/src/ml/tree/random_forest.rs +319 -0
- seraplot-2.7.11/src/plot/camera.rs +43 -0
- seraplot-2.7.11/src/plot/canvas.rs +149 -0
- seraplot-2.7.11/src/plot/chart_input.rs +501 -0
- seraplot-2.7.11/src/plot/containers_3d.rs +322 -0
- seraplot-2.7.11/src/plot/controller/chart_controller.rs +328 -0
- seraplot-2.7.11/src/plot/controller/mod.rs +5 -0
- seraplot-2.7.11/src/plot/controller/plot_3d_controller.rs +348 -0
- seraplot-2.7.11/src/plot/default/_3d/bar_3d.rs +180 -0
- seraplot-2.7.11/src/plot/default/_3d/line_3d.rs +157 -0
- seraplot-2.7.11/src/plot/default/_3d/mod.rs +32 -0
- seraplot-2.7.11/src/plot/default/_3d/plot_3d_types.rs +136 -0
- seraplot-2.7.11/src/plot/default/_3d/scatter_3d.rs +169 -0
- seraplot-2.7.11/src/plot/default/bar.rs +530 -0
- seraplot-2.7.11/src/plot/default/chart.rs +80 -0
- seraplot-2.7.11/src/plot/default/kmeans.rs +1676 -0
- seraplot-2.7.11/src/plot/default/line.rs +395 -0
- seraplot-2.7.11/src/plot/default/mod.rs +76 -0
- seraplot-2.7.11/src/plot/default/scatter.rs +2227 -0
- seraplot-2.7.11/src/plot/default/svg.rs +84 -0
- seraplot-2.7.11/src/plot/family_macro.rs +47 -0
- seraplot-2.7.11/src/plot/generic.rs +522 -0
- seraplot-2.7.11/src/plot/layout.rs +175 -0
- seraplot-2.7.11/src/plot/map/_3d/globe.rs +262 -0
- seraplot-2.7.11/src/plot/map/_3d/globe_html.rs +77 -0
- seraplot-2.7.11/src/plot/map/_3d/globe_types.rs +65 -0
- seraplot-2.7.11/src/plot/map/_3d/mod.rs +7 -0
- seraplot-2.7.11/src/plot/map/bubble_map.rs +302 -0
- seraplot-2.7.11/src/plot/map/chart.rs +46 -0
- seraplot-2.7.11/src/plot/map/choropleth.rs +270 -0
- seraplot-2.7.11/src/plot/map/mod.rs +14 -0
- seraplot-2.7.11/src/plot/map/svg_parser.rs +228 -0
- seraplot-2.7.11/src/plot/map/world_data.rs +202 -0
- seraplot-2.7.11/src/plot/mod.rs +36 -0
- seraplot-2.7.11/src/plot/models/config.rs +1 -0
- seraplot-2.7.11/src/plot/projection.rs +247 -0
- seraplot-2.7.11/src/plot/renderers.rs +157 -0
- seraplot-2.7.11/src/plot/scale_renderer.rs +26 -0
- seraplot-2.7.11/src/plot/seaborn/_3d/bar_3d.rs +27 -0
- seraplot-2.7.11/src/plot/seaborn/_3d/line_3d.rs +27 -0
- seraplot-2.7.11/src/plot/seaborn/_3d/mod.rs +9 -0
- seraplot-2.7.11/src/plot/seaborn/_3d/plot_3d_types.rs +136 -0
- seraplot-2.7.11/src/plot/seaborn/_3d/scatter_3d.rs +33 -0
- seraplot-2.7.11/src/plot/seaborn/chart.rs +64 -0
- seraplot-2.7.11/src/plot/seaborn/mod.rs +8 -0
- seraplot-2.7.11/src/plot/statistical/_3d/candlestick3d.rs +76 -0
- seraplot-2.7.11/src/plot/statistical/_3d/dumbbell3d.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/_3d/funnel3d.rs +61 -0
- seraplot-2.7.11/src/plot/statistical/_3d/heatmap3d.rs +72 -0
- seraplot-2.7.11/src/plot/statistical/_3d/kde3d.rs +101 -0
- seraplot-2.7.11/src/plot/statistical/_3d/lollipop3d.rs +56 -0
- seraplot-2.7.11/src/plot/statistical/_3d/mod.rs +41 -0
- seraplot-2.7.11/src/plot/statistical/_3d/pie3d.rs +59 -0
- seraplot-2.7.11/src/plot/statistical/_3d/plot_3d_types.rs +105 -0
- seraplot-2.7.11/src/plot/statistical/_3d/radar3d.rs +79 -0
- seraplot-2.7.11/src/plot/statistical/_3d/ridgeline3d.rs +97 -0
- seraplot-2.7.11/src/plot/statistical/_3d/stacked_bar3d.rs +81 -0
- seraplot-2.7.11/src/plot/statistical/_3d/sunburst3d.rs +73 -0
- seraplot-2.7.11/src/plot/statistical/_3d/violin3d.rs +101 -0
- seraplot-2.7.11/src/plot/statistical/area.rs +255 -0
- seraplot-2.7.11/src/plot/statistical/bar/basic.rs +24 -0
- seraplot-2.7.11/src/plot/statistical/bar/config.rs +77 -0
- seraplot-2.7.11/src/plot/statistical/bar/deluxe.rs +228 -0
- seraplot-2.7.11/src/plot/statistical/bar/grouped.rs +26 -0
- seraplot-2.7.11/src/plot/statistical/bar/grouped_stacked.rs +109 -0
- seraplot-2.7.11/src/plot/statistical/bar/marimekko.rs +110 -0
- seraplot-2.7.11/src/plot/statistical/bar/mod.rs +143 -0
- seraplot-2.7.11/src/plot/statistical/bar/multicategory.rs +151 -0
- seraplot-2.7.11/src/plot/statistical/bar/pictogram.rs +111 -0
- seraplot-2.7.11/src/plot/statistical/bar/prism.rs +223 -0
- seraplot-2.7.11/src/plot/statistical/bar/relative.rs +115 -0
- seraplot-2.7.11/src/plot/statistical/bar/variant.rs +15 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/basic.rs +107 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/common.rs +404 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/config.rs +32 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/grouped.rs +120 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/horizontal.rs +183 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/letter_value.rs +121 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/mod.rs +84 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/notched.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/outliers.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/points.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/rainbow.rs +100 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/strip.rs +92 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/variant.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/boxplot/violin.rs +128 -0
- seraplot-2.7.11/src/plot/statistical/bubble/basic.rs +60 -0
- seraplot-2.7.11/src/plot/statistical/bubble/categorical.rs +98 -0
- seraplot-2.7.11/src/plot/statistical/bubble/common.rs +132 -0
- seraplot-2.7.11/src/plot/statistical/bubble/config.rs +38 -0
- seraplot-2.7.11/src/plot/statistical/bubble/deluxe.rs +145 -0
- seraplot-2.7.11/src/plot/statistical/bubble/gradient.rs +122 -0
- seraplot-2.7.11/src/plot/statistical/bubble/labeled.rs +101 -0
- seraplot-2.7.11/src/plot/statistical/bubble/mod.rs +97 -0
- seraplot-2.7.11/src/plot/statistical/bubble/negative.rs +115 -0
- seraplot-2.7.11/src/plot/statistical/bubble/outlined.rs +101 -0
- seraplot-2.7.11/src/plot/statistical/bubble/plasma.rs +137 -0
- seraplot-2.7.11/src/plot/statistical/bubble/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/bullet/basic.rs +75 -0
- seraplot-2.7.11/src/plot/statistical/bullet/common.rs +177 -0
- seraplot-2.7.11/src/plot/statistical/bullet/compare.rs +81 -0
- seraplot-2.7.11/src/plot/statistical/bullet/config.rs +20 -0
- seraplot-2.7.11/src/plot/statistical/bullet/dot.rs +69 -0
- seraplot-2.7.11/src/plot/statistical/bullet/minimal.rs +63 -0
- seraplot-2.7.11/src/plot/statistical/bullet/mod.rs +62 -0
- seraplot-2.7.11/src/plot/statistical/bullet/progress.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/bullet/segmented.rs +69 -0
- seraplot-2.7.11/src/plot/statistical/bullet/stacked.rs +69 -0
- seraplot-2.7.11/src/plot/statistical/bullet/thermo.rs +125 -0
- seraplot-2.7.11/src/plot/statistical/bullet/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/basic.rs +59 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/common.rs +231 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/config.rs +20 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/heikin.rs +64 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/hollow.rs +65 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/line.rs +50 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/mod.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/mountain.rs +77 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/ohlc.rs +62 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/outlined.rs +59 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/range.rs +37 -0
- seraplot-2.7.11/src/plot/statistical/candlestick/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/common.rs +679 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/arrow.rs +46 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/barbell.rs +58 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/basic.rs +37 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/common.rs +164 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/config.rs +18 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/delta.rs +40 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/dotted.rs +53 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/glow.rs +50 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/mod.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/ranked.rs +52 -0
- seraplot-2.7.11/src/plot/statistical/dumbbell/variant.rs +11 -0
- seraplot-2.7.11/src/plot/statistical/funnel/basic.rs +72 -0
- seraplot-2.7.11/src/plot/statistical/funnel/chevron.rs +66 -0
- seraplot-2.7.11/src/plot/statistical/funnel/common.rs +141 -0
- seraplot-2.7.11/src/plot/statistical/funnel/config.rs +16 -0
- seraplot-2.7.11/src/plot/statistical/funnel/conversion.rs +83 -0
- seraplot-2.7.11/src/plot/statistical/funnel/gradient.rs +86 -0
- seraplot-2.7.11/src/plot/statistical/funnel/inverted.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/funnel/mod.rs +57 -0
- seraplot-2.7.11/src/plot/statistical/funnel/pyramid.rs +82 -0
- seraplot-2.7.11/src/plot/statistical/funnel/rounded.rs +99 -0
- seraplot-2.7.11/src/plot/statistical/funnel/stepped.rs +58 -0
- seraplot-2.7.11/src/plot/statistical/funnel/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/gauge/arc270.rs +70 -0
- seraplot-2.7.11/src/plot/statistical/gauge/basic.rs +93 -0
- seraplot-2.7.11/src/plot/statistical/gauge/common.rs +178 -0
- seraplot-2.7.11/src/plot/statistical/gauge/concentric.rs +97 -0
- seraplot-2.7.11/src/plot/statistical/gauge/config.rs +20 -0
- seraplot-2.7.11/src/plot/statistical/gauge/glow.rs +69 -0
- seraplot-2.7.11/src/plot/statistical/gauge/mod.rs +58 -0
- seraplot-2.7.11/src/plot/statistical/gauge/radial.rs +61 -0
- seraplot-2.7.11/src/plot/statistical/gauge/segmented.rs +57 -0
- seraplot-2.7.11/src/plot/statistical/gauge/sleek.rs +62 -0
- seraplot-2.7.11/src/plot/statistical/gauge/tick.rs +100 -0
- seraplot-2.7.11/src/plot/statistical/gauge/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/grouped_bar.rs +488 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/annotated.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/basic.rs +8 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/bubble.rs +174 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/categorical.rs +20 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/cluster.rs +60 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/common.rs +590 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/config.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/confusion.rs +20 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/contour.rs +20 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/correlation.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/density.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/discrete.rs +17 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/log.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/marginal.rs +188 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/mod.rs +91 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/pivot.rs +230 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/temporal.rs +15 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/unequal.rs +43 -0
- seraplot-2.7.11/src/plot/statistical/heatmap/variant.rs +19 -0
- seraplot-2.7.11/src/plot/statistical/histogram/basic.rs +153 -0
- seraplot-2.7.11/src/plot/statistical/histogram/common.rs +72 -0
- seraplot-2.7.11/src/plot/statistical/histogram/config.rs +38 -0
- seraplot-2.7.11/src/plot/statistical/histogram/cumulative.rs +128 -0
- seraplot-2.7.11/src/plot/statistical/histogram/deluxe.rs +150 -0
- seraplot-2.7.11/src/plot/statistical/histogram/horizontal.rs +105 -0
- seraplot-2.7.11/src/plot/statistical/histogram/mod.rs +158 -0
- seraplot-2.7.11/src/plot/statistical/histogram/normalized.rs +162 -0
- seraplot-2.7.11/src/plot/statistical/histogram/overlay.rs +165 -0
- seraplot-2.7.11/src/plot/statistical/histogram/stacked.rs +151 -0
- seraplot-2.7.11/src/plot/statistical/histogram/step.rs +120 -0
- seraplot-2.7.11/src/plot/statistical/histogram/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/kde/basic.rs +113 -0
- seraplot-2.7.11/src/plot/statistical/kde/common.rs +144 -0
- seraplot-2.7.11/src/plot/statistical/kde/config.rs +22 -0
- seraplot-2.7.11/src/plot/statistical/kde/cumulative.rs +97 -0
- seraplot-2.7.11/src/plot/statistical/kde/gradient.rs +128 -0
- seraplot-2.7.11/src/plot/statistical/kde/histogram.rs +123 -0
- seraplot-2.7.11/src/plot/statistical/kde/mod.rs +88 -0
- seraplot-2.7.11/src/plot/statistical/kde/normalized.rs +122 -0
- seraplot-2.7.11/src/plot/statistical/kde/outline.rs +78 -0
- seraplot-2.7.11/src/plot/statistical/kde/rug.rs +151 -0
- seraplot-2.7.11/src/plot/statistical/kde/stepped.rs +100 -0
- seraplot-2.7.11/src/plot/statistical/kde/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/line/basic.rs +27 -0
- seraplot-2.7.11/src/plot/statistical/line/config.rs +73 -0
- seraplot-2.7.11/src/plot/statistical/line/connected_scatter.rs +141 -0
- seraplot-2.7.11/src/plot/statistical/line/dashed.rs +135 -0
- seraplot-2.7.11/src/plot/statistical/line/filled.rs +187 -0
- seraplot-2.7.11/src/plot/statistical/line/gapped.rs +181 -0
- seraplot-2.7.11/src/plot/statistical/line/mod.rs +121 -0
- seraplot-2.7.11/src/plot/statistical/line/multi.rs +23 -0
- seraplot-2.7.11/src/plot/statistical/line/neon.rs +212 -0
- seraplot-2.7.11/src/plot/statistical/line/sparkline.rs +148 -0
- seraplot-2.7.11/src/plot/statistical/line/spline.rs +134 -0
- seraplot-2.7.11/src/plot/statistical/line/stepped.rs +165 -0
- seraplot-2.7.11/src/plot/statistical/line/variant.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/basic.rs +71 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/circular.rs +91 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/cleveland.rs +93 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/common.rs +127 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/config.rs +22 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/diverging.rs +93 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/highlight.rs +97 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/mod.rs +70 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/office.rs +172 -0
- seraplot-2.7.11/src/plot/statistical/lollipop/variant.rs +10 -0
- seraplot-2.7.11/src/plot/statistical/mod.rs +136 -0
- seraplot-2.7.11/src/plot/statistical/multiline.rs +209 -0
- seraplot-2.7.11/src/plot/statistical/parallel/arc.rs +144 -0
- seraplot-2.7.11/src/plot/statistical/parallel/basic.rs +23 -0
- seraplot-2.7.11/src/plot/statistical/parallel/categorical.rs +66 -0
- seraplot-2.7.11/src/plot/statistical/parallel/common.rs +218 -0
- seraplot-2.7.11/src/plot/statistical/parallel/config.rs +24 -0
- seraplot-2.7.11/src/plot/statistical/parallel/deluxe.rs +151 -0
- seraplot-2.7.11/src/plot/statistical/parallel/density.rs +22 -0
- seraplot-2.7.11/src/plot/statistical/parallel/gradient.rs +104 -0
- seraplot-2.7.11/src/plot/statistical/parallel/highlight.rs +59 -0
- seraplot-2.7.11/src/plot/statistical/parallel/mod.rs +98 -0
- seraplot-2.7.11/src/plot/statistical/parallel/ribbon.rs +215 -0
- seraplot-2.7.11/src/plot/statistical/parallel/smooth.rs +84 -0
- seraplot-2.7.11/src/plot/statistical/parallel/variant.rs +13 -0
- seraplot-2.7.11/src/plot/statistical/pie/basic.rs +10 -0
- seraplot-2.7.11/src/plot/statistical/pie/common.rs +390 -0
- seraplot-2.7.11/src/plot/statistical/pie/config.rs +71 -0
- seraplot-2.7.11/src/plot/statistical/pie/donut.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/pie/exploded.rs +28 -0
- seraplot-2.7.11/src/plot/statistical/pie/kpi.rs +46 -0
- seraplot-2.7.11/src/plot/statistical/pie/mod.rs +158 -0
- seraplot-2.7.11/src/plot/statistical/pie/nested.rs +90 -0
- seraplot-2.7.11/src/plot/statistical/pie/pattern.rs +14 -0
- seraplot-2.7.11/src/plot/statistical/pie/proportional.rs +44 -0
- seraplot-2.7.11/src/plot/statistical/pie/semi.rs +17 -0
- seraplot-2.7.11/src/plot/statistical/pie/subplots.rs +126 -0
- seraplot-2.7.11/src/plot/statistical/pie/variant.rs +13 -0
- seraplot-2.7.11/src/plot/statistical/radar/basic.rs +40 -0
- seraplot-2.7.11/src/plot/statistical/radar/common.rs +240 -0
- seraplot-2.7.11/src/plot/statistical/radar/config.rs +18 -0
- seraplot-2.7.11/src/plot/statistical/radar/dashed.rs +38 -0
- seraplot-2.7.11/src/plot/statistical/radar/deluxe.rs +190 -0
- seraplot-2.7.11/src/plot/statistical/radar/filled.rs +49 -0
- seraplot-2.7.11/src/plot/statistical/radar/gradient.rs +59 -0
- seraplot-2.7.11/src/plot/statistical/radar/lines.rs +38 -0
- seraplot-2.7.11/src/plot/statistical/radar/markers.rs +38 -0
- seraplot-2.7.11/src/plot/statistical/radar/mod.rs +64 -0
- seraplot-2.7.11/src/plot/statistical/radar/polar_bar.rs +77 -0
- seraplot-2.7.11/src/plot/statistical/radar/stacked.rs +67 -0
- seraplot-2.7.11/src/plot/statistical/radar/variant.rs +13 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/basic.rs +43 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/common.rs +345 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/config.rs +22 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/deluxe.rs +147 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/gradient.rs +58 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/heatmap.rs +71 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/lines.rs +32 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/mean.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/mod.rs +70 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/quartiles.rs +77 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/rug.rs +71 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/spaced.rs +41 -0
- seraplot-2.7.11/src/plot/statistical/ridgeline/variant.rs +13 -0
- seraplot-2.7.11/src/plot/statistical/scatter/basic.rs +61 -0
- seraplot-2.7.11/src/plot/statistical/scatter/categorical.rs +99 -0
- seraplot-2.7.11/src/plot/statistical/scatter/common.rs +306 -0
- seraplot-2.7.11/src/plot/statistical/scatter/config.rs +38 -0
- seraplot-2.7.11/src/plot/statistical/scatter/deluxe.rs +112 -0
- seraplot-2.7.11/src/plot/statistical/scatter/galaxy.rs +114 -0
- seraplot-2.7.11/src/plot/statistical/scatter/gradient.rs +123 -0
- seraplot-2.7.11/src/plot/statistical/scatter/labeled.rs +102 -0
- seraplot-2.7.11/src/plot/statistical/scatter/mod.rs +145 -0
- seraplot-2.7.11/src/plot/statistical/scatter/nova.rs +194 -0
- seraplot-2.7.11/src/plot/statistical/scatter/regression.rs +228 -0
- seraplot-2.7.11/src/plot/statistical/scatter/symbols.rs +119 -0
- seraplot-2.7.11/src/plot/statistical/scatter/variant.rs +13 -0
- seraplot-2.7.11/src/plot/statistical/slope/basic.rs +51 -0
- seraplot-2.7.11/src/plot/statistical/slope/bumps.rs +89 -0
- seraplot-2.7.11/src/plot/statistical/slope/common.rs +185 -0
- seraplot-2.7.11/src/plot/statistical/slope/config.rs +22 -0
- seraplot-2.7.11/src/plot/statistical/slope/curved.rs +60 -0
- seraplot-2.7.11/src/plot/statistical/slope/diverging.rs +125 -0
- seraplot-2.7.11/src/plot/statistical/slope/highlighted.rs +83 -0
- seraplot-2.7.11/src/plot/statistical/slope/mod.rs +63 -0
- seraplot-2.7.11/src/plot/statistical/slope/monochrome.rs +54 -0
- seraplot-2.7.11/src/plot/statistical/slope/stepped.rs +57 -0
- seraplot-2.7.11/src/plot/statistical/slope/thick.rs +56 -0
- seraplot-2.7.11/src/plot/statistical/slope/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/basic.rs +49 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/common.rs +341 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/config.rs +16 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/depth_fade.rs +44 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/donut.rs +74 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/flame.rs +45 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/gapped.rs +55 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/mod.rs +63 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/mono.rs +49 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/outlined.rs +52 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/rainbow.rs +50 -0
- seraplot-2.7.11/src/plot/statistical/sunburst/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/theme.rs +406 -0
- seraplot-2.7.11/src/plot/statistical/treemap/basic.rs +32 -0
- seraplot-2.7.11/src/plot/statistical/treemap/common.rs +485 -0
- seraplot-2.7.11/src/plot/statistical/treemap/config.rs +16 -0
- seraplot-2.7.11/src/plot/statistical/treemap/flat.rs +31 -0
- seraplot-2.7.11/src/plot/statistical/treemap/gapped.rs +46 -0
- seraplot-2.7.11/src/plot/statistical/treemap/gradient.rs +50 -0
- seraplot-2.7.11/src/plot/statistical/treemap/heat.rs +43 -0
- seraplot-2.7.11/src/plot/statistical/treemap/mod.rs +64 -0
- seraplot-2.7.11/src/plot/statistical/treemap/mono.rs +45 -0
- seraplot-2.7.11/src/plot/statistical/treemap/nested.rs +61 -0
- seraplot-2.7.11/src/plot/statistical/treemap/outlined.rs +35 -0
- seraplot-2.7.11/src/plot/statistical/treemap/variant.rs +12 -0
- seraplot-2.7.11/src/plot/statistical/violin/aurora.rs +131 -0
- seraplot-2.7.11/src/plot/statistical/violin/basic.rs +72 -0
- seraplot-2.7.11/src/plot/statistical/violin/common.rs +551 -0
- seraplot-2.7.11/src/plot/statistical/violin/config.rs +30 -0
- seraplot-2.7.11/src/plot/statistical/violin/crystal.rs +188 -0
- seraplot-2.7.11/src/plot/statistical/violin/deluxe.rs +132 -0
- seraplot-2.7.11/src/plot/statistical/violin/half.rs +99 -0
- seraplot-2.7.11/src/plot/statistical/violin/horizontal.rs +84 -0
- seraplot-2.7.11/src/plot/statistical/violin/mean.rs +73 -0
- seraplot-2.7.11/src/plot/statistical/violin/mod.rs +93 -0
- seraplot-2.7.11/src/plot/statistical/violin/points.rs +76 -0
- seraplot-2.7.11/src/plot/statistical/violin/quartile.rs +73 -0
- seraplot-2.7.11/src/plot/statistical/violin/rainbow.rs +78 -0
- seraplot-2.7.11/src/plot/statistical/violin/split.rs +118 -0
- seraplot-2.7.11/src/plot/statistical/violin/strip.rs +58 -0
- seraplot-2.7.11/src/plot/statistical/violin/variant.rs +17 -0
- seraplot-2.7.11/src/plot/statistical/violin/with_box.rs +73 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/arrowed.rs +85 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/basic.rs +70 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/common.rs +248 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/config.rs +16 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/delta.rs +90 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/horizontal.rs +193 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/lollipop.rs +70 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/mod.rs +56 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/stepped.rs +53 -0
- seraplot-2.7.11/src/plot/statistical/waterfall/variant.rs +10 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/basic.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/bubble.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/common.rs +957 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/config.rs +42 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/context.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/image.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/labelmap.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/mod.rs +94 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/network.rs +7 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/neuron.rs +217 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/shape.rs +11 -0
- seraplot-2.7.11/src/plot/statistical/wordcloud/variant.rs +11 -0
- seraplot-2.7.11/src/plot/utils.rs +871 -0
- seraplot-2.7.11/src/telemetry.rs +640 -0
- seraplot-2.7.11/src/viewer/cache.rs +240 -0
- seraplot-2.7.11/src/viewer/chart.rs +2031 -0
- seraplot-2.7.11/src/viewer/gui.rs +238 -0
- seraplot-2.7.11/src/viewer/hybrid.rs +123 -0
- seraplot-2.7.11/src/viewer/manager/button_manager.rs +186 -0
- seraplot-2.7.11/src/viewer/manager/mod.rs +3 -0
- seraplot-2.7.11/src/viewer/mod.rs +15 -0
- seraplot-2.7.11/src/viewer/render/advanced_render.rs +315 -0
- seraplot-2.7.11/src/viewer/render/fast_render_gui.rs +53 -0
- seraplot-2.7.11/src/viewer/render/mod.rs +11 -0
- seraplot-2.7.11/src/viewer/render/pipeline.rs +384 -0
- seraplot-2.7.11/src/viewer/render/viewer_3d.rs +125 -0
- seraplot-2.7.11/src/viewer/render/wiki_viewer.rs +233 -0
- seraplot-2.7.11/src/viewer/utils/image_loader.rs +74 -0
- seraplot-2.7.11/src/viewer/utils/mod.rs +1 -0
- seraplot-2.7.11/src/wiki/api.rs +146 -0
- seraplot-2.7.11/src/wiki/extractor.rs +123 -0
- seraplot-2.7.11/src/wiki/language.rs +61 -0
- seraplot-2.7.11/src/wiki/metadata.rs +254 -0
- seraplot-2.7.11/src/wiki/mod.rs +9 -0
- seraplot-2.7.11/start-seraplot-copilot.cmd +24 -0
- seraplot-2.7.10/Cargo.lock +0 -6460
- seraplot-2.7.10/Cargo.toml +0 -78
- seraplot-2.7.10/PKG-INFO +0 -91
- seraplot-2.7.10/build.rs +0 -963
- seraplot-2.7.10/build_bindings.ps1 +0 -45
- seraplot-2.7.10/pyproject.toml +0 -40
- seraplot-2.7.10/python/seraplot/__init__.py +0 -45
- seraplot-2.7.10/seraplot-macros/src/bind.rs +0 -137
- seraplot-2.7.10/seraplot-macros/src/class.rs +0 -184
- seraplot-2.7.10/seraplot-macros/src/doc.rs +0 -81
- seraplot-2.7.10/seraplot-macros/src/lib.rs +0 -66
- seraplot-2.7.10/seraplot-macros/src/model.rs +0 -46
- seraplot-2.7.10/seraplot-macros/src/util.rs +0 -166
- seraplot-2.7.10/src/.gitignore +0 -7
- seraplot-2.7.10/src/_py.rs +0 -360
- seraplot-2.7.10/src/bindings/chart_types.rs +0 -75
- seraplot-2.7.10/src/bindings/commands/charts/mod.rs +0 -4
- seraplot-2.7.10/src/bindings/commands/docs.rs +0 -2544
- seraplot-2.7.10/src/bindings/commands/ml/mod.rs +0 -1
- seraplot-2.7.10/src/bindings/commands/mod.rs +0 -10
- seraplot-2.7.10/src/bindings/cross_bindings.rs +0 -1
- seraplot-2.7.10/src/bindings/fast_export_c.rs +0 -70
- seraplot-2.7.10/src/bindings/fast_render.rs +0 -180
- seraplot-2.7.10/src/bindings/mod.rs +0 -26
- seraplot-2.7.10/src/bindings/unified_config.rs +0 -152
- seraplot-2.7.10/src/bindings/utils/adaptive_buf.rs +0 -87
- seraplot-2.7.10/src/bindings/utils/arena_alloc.rs +0 -94
- seraplot-2.7.10/src/bindings/utils/bitset.rs +0 -143
- seraplot-2.7.10/src/bindings/utils/compact_state.rs +0 -83
- seraplot-2.7.10/src/bindings/utils/data_processor.rs +0 -54
- seraplot-2.7.10/src/bindings/utils/image_processor.rs +0 -43
- seraplot-2.7.10/src/bindings/utils/lazy_builders.rs +0 -197
- seraplot-2.7.10/src/bindings/utils/memory_pool.rs +0 -155
- seraplot-2.7.10/src/bindings/utils/mod.rs +0 -22
- seraplot-2.7.10/src/bindings/utils/simd_ops.rs +0 -26
- seraplot-2.7.10/src/bindings/utils/state_export.rs +0 -288
- seraplot-2.7.10/src/book.toml +0 -27
- seraplot-2.7.10/src/cloud/chunker.rs +0 -50
- seraplot-2.7.10/src/cloud/mod.rs +0 -5
- seraplot-2.7.10/src/cloud/planner.rs +0 -46
- seraplot-2.7.10/src/cloud/profile.rs +0 -31
- seraplot-2.7.10/src/core/adaptive_exec.rs +0 -56
- seraplot-2.7.10/src/core/dispatch.rs +0 -158
- seraplot-2.7.10/src/core/hw_profile.rs +0 -45
- seraplot-2.7.10/src/core/math.rs +0 -380
- seraplot-2.7.10/src/core/mod.rs +0 -12
- seraplot-2.7.10/src/data/dataset.rs +0 -244
- seraplot-2.7.10/src/data/loader.rs +0 -112
- seraplot-2.7.10/src/data/mod.rs +0 -6
- seraplot-2.7.10/src/html/assets.rs +0 -274
- seraplot-2.7.10/src/html/fast_builders.rs +0 -155
- seraplot-2.7.10/src/html/fast_exporter.rs +0 -118
- seraplot-2.7.10/src/html/hover.rs +0 -619
- seraplot-2.7.10/src/html/html_export.rs +0 -312
- seraplot-2.7.10/src/html/html_template.rs +0 -241
- seraplot-2.7.10/src/html/js_3d.rs +0 -1289
- seraplot-2.7.10/src/html/mod.rs +0 -15
- seraplot-2.7.10/src/lib.rs +0 -1516
- seraplot-2.7.10/src/ml/anomaly/isolation_forest.rs +0 -157
- seraplot-2.7.10/src/ml/anomaly/mod.rs +0 -5
- seraplot-2.7.10/src/ml/bindings/anomaly.rs +0 -20
- seraplot-2.7.10/src/ml/bindings/clustering.rs +0 -38
- seraplot-2.7.10/src/ml/bindings/decomposition.rs +0 -28
- seraplot-2.7.10/src/ml/bindings/ensemble.rs +0 -92
- seraplot-2.7.10/src/ml/bindings/helpers.rs +0 -63
- seraplot-2.7.10/src/ml/bindings/importance.rs +0 -25
- seraplot-2.7.10/src/ml/bindings/linear.rs +0 -137
- seraplot-2.7.10/src/ml/bindings/metrics.rs +0 -129
- seraplot-2.7.10/src/ml/bindings/mod.rs +0 -33
- seraplot-2.7.10/src/ml/bindings/model_selection.rs +0 -66
- seraplot-2.7.10/src/ml/bindings/naive_bayes.rs +0 -37
- seraplot-2.7.10/src/ml/bindings/neighbors.rs +0 -36
- seraplot-2.7.10/src/ml/bindings/persistence.rs +0 -34
- seraplot-2.7.10/src/ml/bindings/preprocessing.rs +0 -136
- seraplot-2.7.10/src/ml/bindings/state.rs +0 -164
- seraplot-2.7.10/src/ml/bindings/svm.rs +0 -29
- seraplot-2.7.10/src/ml/bindings/tree.rs +0 -38
- seraplot-2.7.10/src/ml/cache.rs +0 -438
- seraplot-2.7.10/src/ml/decomposition/mod.rs +0 -5
- seraplot-2.7.10/src/ml/decomposition/pca.rs +0 -262
- seraplot-2.7.10/src/ml/distributed/mod.rs +0 -95
- seraplot-2.7.10/src/ml/export/mod.rs +0 -4
- seraplot-2.7.10/src/ml/export/powerbi.rs +0 -54
- seraplot-2.7.10/src/ml/export/tableau.rs +0 -79
- seraplot-2.7.10/src/ml/gpu/mod.rs +0 -125
- seraplot-2.7.10/src/ml/handle.rs +0 -209
- seraplot-2.7.10/src/ml/linalg.rs +0 -538
- seraplot-2.7.10/src/ml/linear/elastic_net.rs +0 -228
- seraplot-2.7.10/src/ml/linear/lasso.rs +0 -35
- seraplot-2.7.10/src/ml/linear/logistic.rs +0 -509
- seraplot-2.7.10/src/ml/linear/mod.rs +0 -15
- seraplot-2.7.10/src/ml/linear/ols.rs +0 -151
- seraplot-2.7.10/src/ml/linear/ridge.rs +0 -233
- seraplot-2.7.10/src/ml/linear/sgd.rs +0 -412
- seraplot-2.7.10/src/ml/metrics/classification.rs +0 -349
- seraplot-2.7.10/src/ml/metrics/clustering.rs +0 -275
- seraplot-2.7.10/src/ml/metrics/mod.rs +0 -9
- seraplot-2.7.10/src/ml/metrics/regression.rs +0 -105
- seraplot-2.7.10/src/ml/mod.rs +0 -51
- seraplot-2.7.10/src/ml/model_selection/cross_val.rs +0 -66
- seraplot-2.7.10/src/ml/model_selection/grid_search.rs +0 -1228
- seraplot-2.7.10/src/ml/model_selection/mod.rs +0 -11
- seraplot-2.7.10/src/ml/model_selection/permutation.rs +0 -70
- seraplot-2.7.10/src/ml/model_selection/split.rs +0 -157
- seraplot-2.7.10/src/ml/models/decomposition.rs +0 -1
- seraplot-2.7.10/src/ml/models/linear.rs +0 -4
- seraplot-2.7.10/src/ml/models/mod.rs +0 -17
- seraplot-2.7.10/src/ml/models/naive_bayes.rs +0 -1
- seraplot-2.7.10/src/ml/models/preprocessing.rs +0 -5
- seraplot-2.7.10/src/ml/models/tree.rs +0 -6
- seraplot-2.7.10/src/ml/naive_bayes/bernoulli.rs +0 -146
- seraplot-2.7.10/src/ml/naive_bayes/gaussian.rs +0 -163
- seraplot-2.7.10/src/ml/naive_bayes/mod.rs +0 -9
- seraplot-2.7.10/src/ml/naive_bayes/multinomial.rs +0 -122
- seraplot-2.7.10/src/ml/neighbors/knn.rs +0 -614
- seraplot-2.7.10/src/ml/neighbors/mod.rs +0 -5
- seraplot-2.7.10/src/ml/preprocessing/encoders.rs +0 -188
- seraplot-2.7.10/src/ml/preprocessing/mod.rs +0 -9
- seraplot-2.7.10/src/ml/preprocessing/scalers.rs +0 -560
- seraplot-2.7.10/src/ml/preprocessing/transformers.rs +0 -351
- seraplot-2.7.10/src/ml/registry/mod.rs +0 -148
- seraplot-2.7.10/src/ml/svm/mod.rs +0 -5
- seraplot-2.7.10/src/ml/svm/svm.rs +0 -315
- seraplot-2.7.10/src/ml/tree/adaboost.rs +0 -404
- seraplot-2.7.10/src/ml/tree/decision_tree.rs +0 -730
- seraplot-2.7.10/src/ml/tree/gradient_boosting.rs +0 -195
- seraplot-2.7.10/src/ml/tree/mod.rs +0 -11
- seraplot-2.7.10/src/ml/tree/random_forest.rs +0 -215
- seraplot-2.7.10/src/plot/camera.rs +0 -45
- seraplot-2.7.10/src/plot/canvas.rs +0 -105
- seraplot-2.7.10/src/plot/chart_input.rs +0 -408
- seraplot-2.7.10/src/plot/containers_3d.rs +0 -249
- seraplot-2.7.10/src/plot/controller/chart_controller.rs +0 -318
- seraplot-2.7.10/src/plot/controller/mod.rs +0 -6
- seraplot-2.7.10/src/plot/controller/plot_3d_controller.rs +0 -325
- seraplot-2.7.10/src/plot/default/_3d/bar_3d.rs +0 -163
- seraplot-2.7.10/src/plot/default/_3d/line_3d.rs +0 -143
- seraplot-2.7.10/src/plot/default/_3d/mod.rs +0 -29
- seraplot-2.7.10/src/plot/default/_3d/plot_3d_types.rs +0 -78
- seraplot-2.7.10/src/plot/default/_3d/scatter_3d.rs +0 -137
- seraplot-2.7.10/src/plot/default/bar.rs +0 -397
- seraplot-2.7.10/src/plot/default/chart.rs +0 -71
- seraplot-2.7.10/src/plot/default/kmeans.rs +0 -974
- seraplot-2.7.10/src/plot/default/line.rs +0 -302
- seraplot-2.7.10/src/plot/default/mod.rs +0 -62
- seraplot-2.7.10/src/plot/default/scatter.rs +0 -1442
- seraplot-2.7.10/src/plot/default/svg.rs +0 -59
- seraplot-2.7.10/src/plot/family_macro.rs +0 -49
- seraplot-2.7.10/src/plot/generic.rs +0 -430
- seraplot-2.7.10/src/plot/layout.rs +0 -160
- seraplot-2.7.10/src/plot/map/_3d/globe.rs +0 -219
- seraplot-2.7.10/src/plot/map/_3d/globe_html.rs +0 -50
- seraplot-2.7.10/src/plot/map/_3d/globe_types.rs +0 -51
- seraplot-2.7.10/src/plot/map/_3d/mod.rs +0 -9
- seraplot-2.7.10/src/plot/map/bubble_map.rs +0 -247
- seraplot-2.7.10/src/plot/map/chart.rs +0 -45
- seraplot-2.7.10/src/plot/map/choropleth.rs +0 -221
- seraplot-2.7.10/src/plot/map/mod.rs +0 -16
- seraplot-2.7.10/src/plot/map/svg_parser.rs +0 -203
- seraplot-2.7.10/src/plot/map/world_data.rs +0 -156
- seraplot-2.7.10/src/plot/mod.rs +0 -37
- seraplot-2.7.10/src/plot/models/config.rs +0 -1
- seraplot-2.7.10/src/plot/projection.rs +0 -244
- seraplot-2.7.10/src/plot/renderers.rs +0 -129
- seraplot-2.7.10/src/plot/scale_renderer.rs +0 -31
- seraplot-2.7.10/src/plot/seaborn/_3d/bar_3d.rs +0 -19
- seraplot-2.7.10/src/plot/seaborn/_3d/line_3d.rs +0 -19
- seraplot-2.7.10/src/plot/seaborn/_3d/mod.rs +0 -10
- seraplot-2.7.10/src/plot/seaborn/_3d/plot_3d_types.rs +0 -136
- seraplot-2.7.10/src/plot/seaborn/_3d/scatter_3d.rs +0 -19
- seraplot-2.7.10/src/plot/seaborn/chart.rs +0 -47
- seraplot-2.7.10/src/plot/seaborn/mod.rs +0 -10
- seraplot-2.7.10/src/plot/statistical/_3d/candlestick3d.rs +0 -43
- seraplot-2.7.10/src/plot/statistical/_3d/dumbbell3d.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/_3d/funnel3d.rs +0 -37
- seraplot-2.7.10/src/plot/statistical/_3d/heatmap3d.rs +0 -42
- seraplot-2.7.10/src/plot/statistical/_3d/kde3d.rs +0 -59
- seraplot-2.7.10/src/plot/statistical/_3d/lollipop3d.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/_3d/mod.rs +0 -43
- seraplot-2.7.10/src/plot/statistical/_3d/pie3d.rs +0 -38
- seraplot-2.7.10/src/plot/statistical/_3d/plot_3d_types.rs +0 -78
- seraplot-2.7.10/src/plot/statistical/_3d/radar3d.rs +0 -44
- seraplot-2.7.10/src/plot/statistical/_3d/ridgeline3d.rs +0 -55
- seraplot-2.7.10/src/plot/statistical/_3d/stacked_bar3d.rs +0 -46
- seraplot-2.7.10/src/plot/statistical/_3d/sunburst3d.rs +0 -43
- seraplot-2.7.10/src/plot/statistical/_3d/violin3d.rs +0 -59
- seraplot-2.7.10/src/plot/statistical/area.rs +0 -164
- seraplot-2.7.10/src/plot/statistical/bar/basic.rs +0 -13
- seraplot-2.7.10/src/plot/statistical/bar/config.rs +0 -63
- seraplot-2.7.10/src/plot/statistical/bar/deluxe.rs +0 -136
- seraplot-2.7.10/src/plot/statistical/bar/grouped.rs +0 -19
- seraplot-2.7.10/src/plot/statistical/bar/grouped_stacked.rs +0 -79
- seraplot-2.7.10/src/plot/statistical/bar/marimekko.rs +0 -81
- seraplot-2.7.10/src/plot/statistical/bar/mod.rs +0 -112
- seraplot-2.7.10/src/plot/statistical/bar/multicategory.rs +0 -102
- seraplot-2.7.10/src/plot/statistical/bar/pictogram.rs +0 -83
- seraplot-2.7.10/src/plot/statistical/bar/prism.rs +0 -131
- seraplot-2.7.10/src/plot/statistical/bar/relative.rs +0 -85
- seraplot-2.7.10/src/plot/statistical/bar/variant.rs +0 -17
- seraplot-2.7.10/src/plot/statistical/boxplot/basic.rs +0 -81
- seraplot-2.7.10/src/plot/statistical/boxplot/common.rs +0 -298
- seraplot-2.7.10/src/plot/statistical/boxplot/config.rs +0 -34
- seraplot-2.7.10/src/plot/statistical/boxplot/grouped.rs +0 -87
- seraplot-2.7.10/src/plot/statistical/boxplot/horizontal.rs +0 -119
- seraplot-2.7.10/src/plot/statistical/boxplot/letter_value.rs +0 -90
- seraplot-2.7.10/src/plot/statistical/boxplot/mod.rs +0 -79
- seraplot-2.7.10/src/plot/statistical/boxplot/notched.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/boxplot/outliers.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/boxplot/points.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/boxplot/rainbow.rs +0 -74
- seraplot-2.7.10/src/plot/statistical/boxplot/strip.rs +0 -70
- seraplot-2.7.10/src/plot/statistical/boxplot/variant.rs +0 -16
- seraplot-2.7.10/src/plot/statistical/boxplot/violin.rs +0 -105
- seraplot-2.7.10/src/plot/statistical/bubble/basic.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/bubble/categorical.rs +0 -60
- seraplot-2.7.10/src/plot/statistical/bubble/common.rs +0 -86
- seraplot-2.7.10/src/plot/statistical/bubble/config.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/bubble/deluxe.rs +0 -89
- seraplot-2.7.10/src/plot/statistical/bubble/gradient.rs +0 -82
- seraplot-2.7.10/src/plot/statistical/bubble/labeled.rs +0 -62
- seraplot-2.7.10/src/plot/statistical/bubble/mod.rs +0 -81
- seraplot-2.7.10/src/plot/statistical/bubble/negative.rs +0 -71
- seraplot-2.7.10/src/plot/statistical/bubble/outlined.rs +0 -61
- seraplot-2.7.10/src/plot/statistical/bubble/plasma.rs +0 -81
- seraplot-2.7.10/src/plot/statistical/bubble/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/bullet/basic.rs +0 -48
- seraplot-2.7.10/src/plot/statistical/bullet/common.rs +0 -99
- seraplot-2.7.10/src/plot/statistical/bullet/compare.rs +0 -50
- seraplot-2.7.10/src/plot/statistical/bullet/config.rs +0 -22
- seraplot-2.7.10/src/plot/statistical/bullet/dot.rs +0 -47
- seraplot-2.7.10/src/plot/statistical/bullet/minimal.rs +0 -35
- seraplot-2.7.10/src/plot/statistical/bullet/mod.rs +0 -55
- seraplot-2.7.10/src/plot/statistical/bullet/progress.rs +0 -52
- seraplot-2.7.10/src/plot/statistical/bullet/segmented.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/bullet/stacked.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/bullet/thermo.rs +0 -83
- seraplot-2.7.10/src/plot/statistical/bullet/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/candlestick/basic.rs +0 -41
- seraplot-2.7.10/src/plot/statistical/candlestick/common.rs +0 -149
- seraplot-2.7.10/src/plot/statistical/candlestick/config.rs +0 -22
- seraplot-2.7.10/src/plot/statistical/candlestick/heikin.rs +0 -43
- seraplot-2.7.10/src/plot/statistical/candlestick/hollow.rs +0 -46
- seraplot-2.7.10/src/plot/statistical/candlestick/line.rs +0 -35
- seraplot-2.7.10/src/plot/statistical/candlestick/mod.rs +0 -54
- seraplot-2.7.10/src/plot/statistical/candlestick/mountain.rs +0 -46
- seraplot-2.7.10/src/plot/statistical/candlestick/ohlc.rs +0 -44
- seraplot-2.7.10/src/plot/statistical/candlestick/outlined.rs +0 -41
- seraplot-2.7.10/src/plot/statistical/candlestick/range.rs +0 -29
- seraplot-2.7.10/src/plot/statistical/candlestick/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/common.rs +0 -440
- seraplot-2.7.10/src/plot/statistical/dumbbell/arrow.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/dumbbell/barbell.rs +0 -37
- seraplot-2.7.10/src/plot/statistical/dumbbell/basic.rs +0 -26
- seraplot-2.7.10/src/plot/statistical/dumbbell/common.rs +0 -82
- seraplot-2.7.10/src/plot/statistical/dumbbell/config.rs +0 -20
- seraplot-2.7.10/src/plot/statistical/dumbbell/delta.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/dumbbell/dotted.rs +0 -36
- seraplot-2.7.10/src/plot/statistical/dumbbell/glow.rs +0 -36
- seraplot-2.7.10/src/plot/statistical/dumbbell/mod.rs +0 -52
- seraplot-2.7.10/src/plot/statistical/dumbbell/ranked.rs +0 -37
- seraplot-2.7.10/src/plot/statistical/dumbbell/variant.rs +0 -13
- seraplot-2.7.10/src/plot/statistical/funnel/basic.rs +0 -38
- seraplot-2.7.10/src/plot/statistical/funnel/chevron.rs +0 -39
- seraplot-2.7.10/src/plot/statistical/funnel/common.rs +0 -106
- seraplot-2.7.10/src/plot/statistical/funnel/config.rs +0 -18
- seraplot-2.7.10/src/plot/statistical/funnel/conversion.rs +0 -47
- seraplot-2.7.10/src/plot/statistical/funnel/gradient.rs +0 -49
- seraplot-2.7.10/src/plot/statistical/funnel/inverted.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/funnel/mod.rs +0 -50
- seraplot-2.7.10/src/plot/statistical/funnel/pyramid.rs +0 -48
- seraplot-2.7.10/src/plot/statistical/funnel/rounded.rs +0 -49
- seraplot-2.7.10/src/plot/statistical/funnel/stepped.rs +0 -34
- seraplot-2.7.10/src/plot/statistical/funnel/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/gauge/arc270.rs +0 -39
- seraplot-2.7.10/src/plot/statistical/gauge/basic.rs +0 -52
- seraplot-2.7.10/src/plot/statistical/gauge/common.rs +0 -120
- seraplot-2.7.10/src/plot/statistical/gauge/concentric.rs +0 -42
- seraplot-2.7.10/src/plot/statistical/gauge/config.rs +0 -22
- seraplot-2.7.10/src/plot/statistical/gauge/glow.rs +0 -41
- seraplot-2.7.10/src/plot/statistical/gauge/mod.rs +0 -51
- seraplot-2.7.10/src/plot/statistical/gauge/radial.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/gauge/segmented.rs +0 -43
- seraplot-2.7.10/src/plot/statistical/gauge/sleek.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/gauge/tick.rs +0 -65
- seraplot-2.7.10/src/plot/statistical/gauge/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/grouped_bar.rs +0 -306
- seraplot-2.7.10/src/plot/statistical/heatmap/annotated.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/heatmap/basic.rs +0 -9
- seraplot-2.7.10/src/plot/statistical/heatmap/bubble.rs +0 -151
- seraplot-2.7.10/src/plot/statistical/heatmap/categorical.rs +0 -17
- seraplot-2.7.10/src/plot/statistical/heatmap/cluster.rs +0 -51
- seraplot-2.7.10/src/plot/statistical/heatmap/common.rs +0 -480
- seraplot-2.7.10/src/plot/statistical/heatmap/config.rs +0 -76
- seraplot-2.7.10/src/plot/statistical/heatmap/confusion.rs +0 -17
- seraplot-2.7.10/src/plot/statistical/heatmap/contour.rs +0 -17
- seraplot-2.7.10/src/plot/statistical/heatmap/correlation.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/heatmap/density.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/heatmap/discrete.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/heatmap/log.rs +0 -13
- seraplot-2.7.10/src/plot/statistical/heatmap/marginal.rs +0 -157
- seraplot-2.7.10/src/plot/statistical/heatmap/mod.rs +0 -83
- seraplot-2.7.10/src/plot/statistical/heatmap/pivot.rs +0 -188
- seraplot-2.7.10/src/plot/statistical/heatmap/temporal.rs +0 -16
- seraplot-2.7.10/src/plot/statistical/heatmap/unequal.rs +0 -24
- seraplot-2.7.10/src/plot/statistical/heatmap/variant.rs +0 -21
- seraplot-2.7.10/src/plot/statistical/histogram/basic.rs +0 -104
- seraplot-2.7.10/src/plot/statistical/histogram/common.rs +0 -52
- seraplot-2.7.10/src/plot/statistical/histogram/config.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/histogram/cumulative.rs +0 -88
- seraplot-2.7.10/src/plot/statistical/histogram/deluxe.rs +0 -97
- seraplot-2.7.10/src/plot/statistical/histogram/horizontal.rs +0 -66
- seraplot-2.7.10/src/plot/statistical/histogram/mod.rs +0 -114
- seraplot-2.7.10/src/plot/statistical/histogram/normalized.rs +0 -100
- seraplot-2.7.10/src/plot/statistical/histogram/overlay.rs +0 -105
- seraplot-2.7.10/src/plot/statistical/histogram/stacked.rs +0 -95
- seraplot-2.7.10/src/plot/statistical/histogram/step.rs +0 -74
- seraplot-2.7.10/src/plot/statistical/histogram/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/kde/basic.rs +0 -65
- seraplot-2.7.10/src/plot/statistical/kde/common.rs +0 -113
- seraplot-2.7.10/src/plot/statistical/kde/config.rs +0 -24
- seraplot-2.7.10/src/plot/statistical/kde/cumulative.rs +0 -62
- seraplot-2.7.10/src/plot/statistical/kde/gradient.rs +0 -78
- seraplot-2.7.10/src/plot/statistical/kde/histogram.rs +0 -81
- seraplot-2.7.10/src/plot/statistical/kde/mod.rs +0 -66
- seraplot-2.7.10/src/plot/statistical/kde/normalized.rs +0 -70
- seraplot-2.7.10/src/plot/statistical/kde/outline.rs +0 -48
- seraplot-2.7.10/src/plot/statistical/kde/rug.rs +0 -89
- seraplot-2.7.10/src/plot/statistical/kde/stepped.rs +0 -59
- seraplot-2.7.10/src/plot/statistical/kde/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/line/basic.rs +0 -13
- seraplot-2.7.10/src/plot/statistical/line/config.rs +0 -59
- seraplot-2.7.10/src/plot/statistical/line/connected_scatter.rs +0 -83
- seraplot-2.7.10/src/plot/statistical/line/dashed.rs +0 -76
- seraplot-2.7.10/src/plot/statistical/line/filled.rs +0 -104
- seraplot-2.7.10/src/plot/statistical/line/gapped.rs +0 -107
- seraplot-2.7.10/src/plot/statistical/line/mod.rs +0 -91
- seraplot-2.7.10/src/plot/statistical/line/multi.rs +0 -18
- seraplot-2.7.10/src/plot/statistical/line/neon.rs +0 -123
- seraplot-2.7.10/src/plot/statistical/line/sparkline.rs +0 -98
- seraplot-2.7.10/src/plot/statistical/line/spline.rs +0 -79
- seraplot-2.7.10/src/plot/statistical/line/stepped.rs +0 -98
- seraplot-2.7.10/src/plot/statistical/line/variant.rs +0 -16
- seraplot-2.7.10/src/plot/statistical/lollipop/basic.rs +0 -58
- seraplot-2.7.10/src/plot/statistical/lollipop/circular.rs +0 -62
- seraplot-2.7.10/src/plot/statistical/lollipop/cleveland.rs +0 -70
- seraplot-2.7.10/src/plot/statistical/lollipop/common.rs +0 -95
- seraplot-2.7.10/src/plot/statistical/lollipop/config.rs +0 -24
- seraplot-2.7.10/src/plot/statistical/lollipop/diverging.rs +0 -65
- seraplot-2.7.10/src/plot/statistical/lollipop/highlight.rs +0 -73
- seraplot-2.7.10/src/plot/statistical/lollipop/mod.rs +0 -53
- seraplot-2.7.10/src/plot/statistical/lollipop/office.rs +0 -122
- seraplot-2.7.10/src/plot/statistical/lollipop/variant.rs +0 -12
- seraplot-2.7.10/src/plot/statistical/mod.rs +0 -129
- seraplot-2.7.10/src/plot/statistical/multiline.rs +0 -129
- seraplot-2.7.10/src/plot/statistical/parallel/arc.rs +0 -102
- seraplot-2.7.10/src/plot/statistical/parallel/basic.rs +0 -21
- seraplot-2.7.10/src/plot/statistical/parallel/categorical.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/parallel/common.rs +0 -141
- seraplot-2.7.10/src/plot/statistical/parallel/config.rs +0 -26
- seraplot-2.7.10/src/plot/statistical/parallel/deluxe.rs +0 -102
- seraplot-2.7.10/src/plot/statistical/parallel/density.rs +0 -20
- seraplot-2.7.10/src/plot/statistical/parallel/gradient.rs +0 -84
- seraplot-2.7.10/src/plot/statistical/parallel/highlight.rs +0 -27
- seraplot-2.7.10/src/plot/statistical/parallel/mod.rs +0 -73
- seraplot-2.7.10/src/plot/statistical/parallel/ribbon.rs +0 -136
- seraplot-2.7.10/src/plot/statistical/parallel/smooth.rs +0 -49
- seraplot-2.7.10/src/plot/statistical/parallel/variant.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/pie/basic.rs +0 -9
- seraplot-2.7.10/src/plot/statistical/pie/common.rs +0 -278
- seraplot-2.7.10/src/plot/statistical/pie/config.rs +0 -73
- seraplot-2.7.10/src/plot/statistical/pie/donut.rs +0 -11
- seraplot-2.7.10/src/plot/statistical/pie/exploded.rs +0 -25
- seraplot-2.7.10/src/plot/statistical/pie/kpi.rs +0 -25
- seraplot-2.7.10/src/plot/statistical/pie/mod.rs +0 -129
- seraplot-2.7.10/src/plot/statistical/pie/nested.rs +0 -75
- seraplot-2.7.10/src/plot/statistical/pie/pattern.rs +0 -11
- seraplot-2.7.10/src/plot/statistical/pie/proportional.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/pie/semi.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/pie/subplots.rs +0 -103
- seraplot-2.7.10/src/plot/statistical/pie/variant.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/radar/basic.rs +0 -31
- seraplot-2.7.10/src/plot/statistical/radar/common.rs +0 -163
- seraplot-2.7.10/src/plot/statistical/radar/config.rs +0 -20
- seraplot-2.7.10/src/plot/statistical/radar/dashed.rs +0 -28
- seraplot-2.7.10/src/plot/statistical/radar/deluxe.rs +0 -109
- seraplot-2.7.10/src/plot/statistical/radar/filled.rs +0 -33
- seraplot-2.7.10/src/plot/statistical/radar/gradient.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/radar/lines.rs +0 -28
- seraplot-2.7.10/src/plot/statistical/radar/markers.rs +0 -28
- seraplot-2.7.10/src/plot/statistical/radar/mod.rs +0 -54
- seraplot-2.7.10/src/plot/statistical/radar/polar_bar.rs +0 -57
- seraplot-2.7.10/src/plot/statistical/radar/stacked.rs +0 -53
- seraplot-2.7.10/src/plot/statistical/radar/variant.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/ridgeline/basic.rs +0 -34
- seraplot-2.7.10/src/plot/statistical/ridgeline/common.rs +0 -213
- seraplot-2.7.10/src/plot/statistical/ridgeline/config.rs +0 -24
- seraplot-2.7.10/src/plot/statistical/ridgeline/deluxe.rs +0 -100
- seraplot-2.7.10/src/plot/statistical/ridgeline/gradient.rs +0 -47
- seraplot-2.7.10/src/plot/statistical/ridgeline/heatmap.rs +0 -56
- seraplot-2.7.10/src/plot/statistical/ridgeline/lines.rs +0 -28
- seraplot-2.7.10/src/plot/statistical/ridgeline/mean.rs +0 -52
- seraplot-2.7.10/src/plot/statistical/ridgeline/mod.rs +0 -53
- seraplot-2.7.10/src/plot/statistical/ridgeline/quartiles.rs +0 -59
- seraplot-2.7.10/src/plot/statistical/ridgeline/rug.rs +0 -51
- seraplot-2.7.10/src/plot/statistical/ridgeline/spaced.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/ridgeline/variant.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/scatter/basic.rs +0 -36
- seraplot-2.7.10/src/plot/statistical/scatter/categorical.rs +0 -56
- seraplot-2.7.10/src/plot/statistical/scatter/common.rs +0 -179
- seraplot-2.7.10/src/plot/statistical/scatter/config.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/scatter/deluxe.rs +0 -76
- seraplot-2.7.10/src/plot/statistical/scatter/galaxy.rs +0 -81
- seraplot-2.7.10/src/plot/statistical/scatter/gradient.rs +0 -78
- seraplot-2.7.10/src/plot/statistical/scatter/labeled.rs +0 -57
- seraplot-2.7.10/src/plot/statistical/scatter/mod.rs +0 -98
- seraplot-2.7.10/src/plot/statistical/scatter/nova.rs +0 -120
- seraplot-2.7.10/src/plot/statistical/scatter/regression.rs +0 -142
- seraplot-2.7.10/src/plot/statistical/scatter/symbols.rs +0 -74
- seraplot-2.7.10/src/plot/statistical/scatter/variant.rs +0 -15
- seraplot-2.7.10/src/plot/statistical/slope/basic.rs +0 -35
- seraplot-2.7.10/src/plot/statistical/slope/bumps.rs +0 -63
- seraplot-2.7.10/src/plot/statistical/slope/common.rs +0 -129
- seraplot-2.7.10/src/plot/statistical/slope/config.rs +0 -24
- seraplot-2.7.10/src/plot/statistical/slope/curved.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/slope/diverging.rs +0 -73
- seraplot-2.7.10/src/plot/statistical/slope/highlighted.rs +0 -55
- seraplot-2.7.10/src/plot/statistical/slope/mod.rs +0 -54
- seraplot-2.7.10/src/plot/statistical/slope/monochrome.rs +0 -38
- seraplot-2.7.10/src/plot/statistical/slope/stepped.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/slope/thick.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/slope/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/sunburst/basic.rs +0 -33
- seraplot-2.7.10/src/plot/statistical/sunburst/common.rs +0 -235
- seraplot-2.7.10/src/plot/statistical/sunburst/config.rs +0 -18
- seraplot-2.7.10/src/plot/statistical/sunburst/depth_fade.rs +0 -33
- seraplot-2.7.10/src/plot/statistical/sunburst/donut.rs +0 -44
- seraplot-2.7.10/src/plot/statistical/sunburst/flame.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/sunburst/gapped.rs +0 -39
- seraplot-2.7.10/src/plot/statistical/sunburst/mod.rs +0 -50
- seraplot-2.7.10/src/plot/statistical/sunburst/mono.rs +0 -34
- seraplot-2.7.10/src/plot/statistical/sunburst/outlined.rs +0 -33
- seraplot-2.7.10/src/plot/statistical/sunburst/rainbow.rs +0 -37
- seraplot-2.7.10/src/plot/statistical/sunburst/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/theme.rs +0 -398
- seraplot-2.7.10/src/plot/statistical/treemap/basic.rs +0 -24
- seraplot-2.7.10/src/plot/statistical/treemap/common.rs +0 -294
- seraplot-2.7.10/src/plot/statistical/treemap/config.rs +0 -18
- seraplot-2.7.10/src/plot/statistical/treemap/flat.rs +0 -23
- seraplot-2.7.10/src/plot/statistical/treemap/gapped.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/treemap/gradient.rs +0 -33
- seraplot-2.7.10/src/plot/statistical/treemap/heat.rs +0 -31
- seraplot-2.7.10/src/plot/statistical/treemap/mod.rs +0 -51
- seraplot-2.7.10/src/plot/statistical/treemap/mono.rs +0 -29
- seraplot-2.7.10/src/plot/statistical/treemap/nested.rs +0 -44
- seraplot-2.7.10/src/plot/statistical/treemap/outlined.rs +0 -25
- seraplot-2.7.10/src/plot/statistical/treemap/variant.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/violin/aurora.rs +0 -106
- seraplot-2.7.10/src/plot/statistical/violin/basic.rs +0 -44
- seraplot-2.7.10/src/plot/statistical/violin/common.rs +0 -380
- seraplot-2.7.10/src/plot/statistical/violin/config.rs +0 -32
- seraplot-2.7.10/src/plot/statistical/violin/crystal.rs +0 -141
- seraplot-2.7.10/src/plot/statistical/violin/deluxe.rs +0 -107
- seraplot-2.7.10/src/plot/statistical/violin/half.rs +0 -59
- seraplot-2.7.10/src/plot/statistical/violin/horizontal.rs +0 -56
- seraplot-2.7.10/src/plot/statistical/violin/mean.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/violin/mod.rs +0 -73
- seraplot-2.7.10/src/plot/statistical/violin/points.rs +0 -46
- seraplot-2.7.10/src/plot/statistical/violin/quartile.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/violin/rainbow.rs +0 -48
- seraplot-2.7.10/src/plot/statistical/violin/split.rs +0 -69
- seraplot-2.7.10/src/plot/statistical/violin/strip.rs +0 -40
- seraplot-2.7.10/src/plot/statistical/violin/variant.rs +0 -19
- seraplot-2.7.10/src/plot/statistical/violin/with_box.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/waterfall/arrowed.rs +0 -58
- seraplot-2.7.10/src/plot/statistical/waterfall/basic.rs +0 -45
- seraplot-2.7.10/src/plot/statistical/waterfall/common.rs +0 -166
- seraplot-2.7.10/src/plot/statistical/waterfall/config.rs +0 -18
- seraplot-2.7.10/src/plot/statistical/waterfall/delta.rs +0 -58
- seraplot-2.7.10/src/plot/statistical/waterfall/horizontal.rs +0 -122
- seraplot-2.7.10/src/plot/statistical/waterfall/lollipop.rs +0 -47
- seraplot-2.7.10/src/plot/statistical/waterfall/mod.rs +0 -47
- seraplot-2.7.10/src/plot/statistical/waterfall/stepped.rs +0 -37
- seraplot-2.7.10/src/plot/statistical/waterfall/variant.rs +0 -12
- seraplot-2.7.10/src/plot/statistical/wordcloud/basic.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/wordcloud/bubble.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/wordcloud/common.rs +0 -712
- seraplot-2.7.10/src/plot/statistical/wordcloud/config.rs +0 -44
- seraplot-2.7.10/src/plot/statistical/wordcloud/context.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/wordcloud/image.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/wordcloud/labelmap.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/wordcloud/mod.rs +0 -67
- seraplot-2.7.10/src/plot/statistical/wordcloud/network.rs +0 -8
- seraplot-2.7.10/src/plot/statistical/wordcloud/neuron.rs +0 -156
- seraplot-2.7.10/src/plot/statistical/wordcloud/shape.rs +0 -14
- seraplot-2.7.10/src/plot/statistical/wordcloud/variant.rs +0 -13
- seraplot-2.7.10/src/plot/utils.rs +0 -613
- seraplot-2.7.10/src/telemetry.rs +0 -419
- seraplot-2.7.10/src/viewer/cache.rs +0 -194
- seraplot-2.7.10/src/viewer/chart.rs +0 -1795
- seraplot-2.7.10/src/viewer/gui.rs +0 -210
- seraplot-2.7.10/src/viewer/hybrid.rs +0 -115
- seraplot-2.7.10/src/viewer/manager/button_manager.rs +0 -181
- seraplot-2.7.10/src/viewer/manager/mod.rs +0 -5
- seraplot-2.7.10/src/viewer/mod.rs +0 -17
- seraplot-2.7.10/src/viewer/render/advanced_render.rs +0 -318
- seraplot-2.7.10/src/viewer/render/fast_render_gui.rs +0 -61
- seraplot-2.7.10/src/viewer/render/mod.rs +0 -12
- seraplot-2.7.10/src/viewer/render/pipeline.rs +0 -384
- seraplot-2.7.10/src/viewer/render/viewer_3d.rs +0 -123
- seraplot-2.7.10/src/viewer/render/wiki_viewer.rs +0 -182
- seraplot-2.7.10/src/viewer/utils/image_loader.rs +0 -83
- seraplot-2.7.10/src/viewer/utils/mod.rs +0 -2
- seraplot-2.7.10/src/wiki/api.rs +0 -147
- seraplot-2.7.10/src/wiki/extractor.rs +0 -110
- seraplot-2.7.10/src/wiki/language.rs +0 -63
- seraplot-2.7.10/src/wiki/metadata.rs +0 -215
- seraplot-2.7.10/src/wiki/mod.rs +0 -11
- {seraplot-2.7.10 → seraplot-2.7.11}/README.md +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/check_output.json +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/main.py +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/seraplot-macros/Cargo.lock +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/seraplot-macros/Cargo.toml +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/seraplot-macros/src/register.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/.github/workflows/mdbook.yml +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/.github/workflows/telemetry.yml +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/README.md +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/commands/charts/builders.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/commands/registry.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/doc_registry.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/exports.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/fn_registry.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/model_registry.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/bindings/registry_macro.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/ml/models/anomaly.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/ml/models/neighbors.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/ml/models/svm.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/ml/tree/decision_tree_backup.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/playground-url.json +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/playground_server.py +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/plot/models/mod.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/python/mod.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/python/registry.rs +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/telemetry/data.csv +0 -0
- {seraplot-2.7.10 → seraplot-2.7.11}/src/wiki/macros.rs +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
target/**
|
|
2
|
+
book/**
|
|
3
|
+
pkg/**
|
|
4
|
+
pkg_nm/**
|
|
5
|
+
dist/**
|
|
6
|
+
node_modules/**
|
|
7
|
+
.git/**
|
|
8
|
+
|
|
9
|
+
# Generated or heavy documentation outputs. Keep markdown docs indexable, skip rendered pages.
|
|
10
|
+
src/docs/previews/**
|
|
11
|
+
src/docs/theme/*.wasm
|
|
12
|
+
src/docs/theme/seraplot-web*
|
|
13
|
+
src/docs/theme/seraplot_bg.wasm
|
|
14
|
+
*.html
|
|
15
|
+
*.wasm
|
|
16
|
+
|
|
17
|
+
# Binary/static assets are usually noise for coding context.
|
|
18
|
+
src/asset/**
|
|
19
|
+
*.png
|
|
20
|
+
*.jpg
|
|
21
|
+
*.jpeg
|
|
22
|
+
*.gif
|
|
23
|
+
*.ico
|
|
24
|
+
|
|
25
|
+
# Python and build caches.
|
|
26
|
+
__pycache__/**
|
|
27
|
+
*.pyc
|
|
28
|
+
.pytest_cache/**
|
|
29
|
+
|
|
30
|
+
# Local AI/generated scratch files.
|
|
31
|
+
.sera-ai/file_index.json
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# SeraPlot Coding Instructions
|
|
2
|
+
|
|
3
|
+
SeraPlot is a Rust workspace with the main crate at the repository root and proc macros in `seraplot-macros`.
|
|
4
|
+
|
|
5
|
+
Focus context on `src/**/*.rs`, `seraplot-macros/src/**/*.rs`, `Cargo.toml`, and markdown docs when relevant. Avoid loading generated preview HTML, `target`, `book`, wasm artifacts, and binary assets unless specifically requested.
|
|
6
|
+
|
|
7
|
+
When changing code, inspect the local pattern first with `rg`, patch narrowly, and verify with `cargo fmt`, `cargo test`, or `cargo build` depending on the change. For macro changes, also inspect generated call sites and run `cargo test -p seraplot-macros`.
|
|
8
|
+
|
|
9
|
+
Important module areas:
|
|
10
|
+
|
|
11
|
+
- `src/plot`: chart families, controllers, renderers, layouts, chart input.
|
|
12
|
+
- `src/html`: HTML export and fast builders.
|
|
13
|
+
- `src/bindings`: command registries, chart types, exports, docs/model registries.
|
|
14
|
+
- `src/ml`: ML models, metrics, preprocessing, model selection, bindings.
|
|
15
|
+
- `src/core`: math, dispatch, hardware profile, adaptive execution.
|
|
16
|
+
- `seraplot-macros`: proc macros for model/bind/class/doc/register behavior.
|
|
17
|
+
|
|
18
|
+
Prefer existing serde, thiserror, registry, and macro patterns over new architecture.
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# SeraPlot Project Memory
|
|
2
|
+
|
|
3
|
+
Use this as the compact memory file for local coding agents. It is meant to replace sending hundreds of files at once.
|
|
4
|
+
|
|
5
|
+
## Goal
|
|
6
|
+
|
|
7
|
+
SeraPlot is a Rust plotting, visualization, documentation, and ML-oriented crate. The local agent should behave like a practical Rust maintainer: inspect the relevant files, patch code, run checks, and iterate on failures.
|
|
8
|
+
|
|
9
|
+
## Workspace
|
|
10
|
+
|
|
11
|
+
- Root crate: `seraplot`
|
|
12
|
+
- Proc macro crate: `seraplot-macros`
|
|
13
|
+
- Workspace members: root crate and `seraplot-macros`
|
|
14
|
+
- Rust edition: 2021
|
|
15
|
+
- Core dependencies include `serde`, `serde_json`, `thiserror`, `parking_lot`, `rayon`, `image`, optional `egui/eframe`, optional `reqwest/tokio`, optional `wasm-bindgen`, optional `pyo3`, and optional `candle-core`.
|
|
16
|
+
|
|
17
|
+
## High-Signal Paths
|
|
18
|
+
|
|
19
|
+
- `src/lib.rs`: public module layout.
|
|
20
|
+
- `src/core/`: math helpers, hardware profile, dispatch, adaptive execution.
|
|
21
|
+
- `src/plot/`: chart system.
|
|
22
|
+
- `src/plot/default/`: default charts and 3D default variants.
|
|
23
|
+
- `src/plot/statistical/`: large chart family area. Most chart variants follow a local pattern with `config.rs`, `common.rs`, `variant.rs`, `basic.rs`, and family-specific variant modules.
|
|
24
|
+
- `src/plot/map/`: maps, SVG parsing, choropleth, bubble map, globe.
|
|
25
|
+
- `src/plot/controller/`: chart controllers.
|
|
26
|
+
- `src/html/`: HTML export, templates, hover, 3D JavaScript glue, fast exporters/builders.
|
|
27
|
+
- `src/bindings/`: public bindings, command registries, chart types, model/doc registries, utility modules.
|
|
28
|
+
- `src/ml/`: ML implementation and public ML bindings.
|
|
29
|
+
- `src/viewer/`: GUI/viewer/rendering pipeline.
|
|
30
|
+
- `src/wiki/`: docs metadata/extraction/API helpers.
|
|
31
|
+
- `src/docs/**/*.md`: source docs.
|
|
32
|
+
- `seraplot-macros/src/`: proc macro implementation split by concern.
|
|
33
|
+
|
|
34
|
+
## Low-Signal Paths
|
|
35
|
+
|
|
36
|
+
Skip these by default for coding context:
|
|
37
|
+
|
|
38
|
+
- `target/**`
|
|
39
|
+
- `book/**`
|
|
40
|
+
- `src/docs/previews/**`
|
|
41
|
+
- `src/docs/theme/*.wasm`
|
|
42
|
+
- generated `*.html`
|
|
43
|
+
- binary image assets
|
|
44
|
+
- `.git/**`
|
|
45
|
+
|
|
46
|
+
## Agent Strategy
|
|
47
|
+
|
|
48
|
+
1. Restate the concrete target internally.
|
|
49
|
+
2. Use `rg` to find the symbol, chart family, registry entry, or macro involved.
|
|
50
|
+
3. Read only the relevant implementation, config/common/variant files, and call sites.
|
|
51
|
+
4. Patch the smallest coherent set of files.
|
|
52
|
+
5. Run the narrowest useful check, then broaden if the change touches shared behavior.
|
|
53
|
+
6. If tests or builds fail, inspect the error, patch, and rerun.
|
|
54
|
+
|
|
55
|
+
## Rust Style
|
|
56
|
+
|
|
57
|
+
- Preserve existing module boundaries.
|
|
58
|
+
- Prefer existing serde models, `thiserror` errors, registry macros, and chart-family conventions.
|
|
59
|
+
- Avoid broad rewrites inside chart families; they are intentionally repetitive.
|
|
60
|
+
- Keep public bindings and docs registry updates in sync with new public behavior.
|
|
61
|
+
- For performance-sensitive paths, check existing SIMD, memory pool, adaptive buffer, and rayon patterns before inventing new utilities.
|
|
62
|
+
|
|
63
|
+
## Useful Commands
|
|
64
|
+
|
|
65
|
+
```powershell
|
|
66
|
+
rg "SymbolOrFunction" src seraplot-macros
|
|
67
|
+
cargo fmt
|
|
68
|
+
cargo test
|
|
69
|
+
cargo test -p seraplot-macros
|
|
70
|
+
cargo build
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Local Model Guidance
|
|
74
|
+
|
|
75
|
+
Use `Sera Agent Qwen3 4B Think 64K` for normal agent work. Use `Sera Deep Qwen3 4B Think 128K` only for broad architectural/debug sessions. The 128K model can read more, but it is slower on an RTX 4060 Laptop GPU; better retrieval beats dumping the whole repository into context.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# SeraPlot v2 — Contexte permanent Hermes
|
|
2
|
+
|
|
3
|
+
Tu es le copilote spécialisé du projet SeraPlot v2.
|
|
4
|
+
|
|
5
|
+
## Initialisation obligatoire
|
|
6
|
+
|
|
7
|
+
Au début de chaque session concernant SeraPlot :
|
|
8
|
+
|
|
9
|
+
1. charger la skill `seraplot-copilot` ;
|
|
10
|
+
2. utiliser la collection QMD `seraplot-v2` ;
|
|
11
|
+
3. travailler depuis `C:\Users\Quentin\Desktop\SeraPlot\v2` ;
|
|
12
|
+
4. lire les fichiers source avant toute affirmation ;
|
|
13
|
+
5. valider les modifications avec Cargo.
|
|
14
|
+
|
|
15
|
+
## Recherche
|
|
16
|
+
|
|
17
|
+
Pour une recherche exacte :
|
|
18
|
+
|
|
19
|
+
`qmd search "SYMBOL" -c seraplot-v2`
|
|
20
|
+
|
|
21
|
+
`rg -n "SYMBOL" src seraplot-macros`
|
|
22
|
+
|
|
23
|
+
Pour une recherche conceptuelle :
|
|
24
|
+
|
|
25
|
+
`qmd query "QUESTION" -c seraplot-v2`
|
|
26
|
+
|
|
27
|
+
QMD sert uniquement à retrouver les passages pertinents. Le code source réel reste la source de vérité.
|
|
28
|
+
|
|
29
|
+
## Modification
|
|
30
|
+
|
|
31
|
+
Avant de modifier :
|
|
32
|
+
|
|
33
|
+
* présenter un plan ;
|
|
34
|
+
* donner les fichiers concernés ;
|
|
35
|
+
* éviter les changements larges ;
|
|
36
|
+
* demander confirmation pour les changements importants.
|
|
37
|
+
|
|
38
|
+
Après modification :
|
|
39
|
+
|
|
40
|
+
* exécuter `cargo fmt --check` ;
|
|
41
|
+
* exécuter `cargo check` ;
|
|
42
|
+
* exécuter les tests concernés ;
|
|
43
|
+
* mettre à jour QMD.
|
|
44
|
+
|
|
45
|
+
## Sécurité
|
|
46
|
+
|
|
47
|
+
Ne jamais supprimer de fichiers, modifier `.git`, nettoyer le dépôt ou lancer une commande destructive sans autorisation explicite.
|