seraplot 2.7.12__tar.gz → 2.8.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.8.2/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- seraplot-2.8.2/.github/ISSUE_TEMPLATE/custom.md +10 -0
- seraplot-2.8.2/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- seraplot-2.8.2/.github/workflows/mdbook.yml +74 -0
- seraplot-2.8.2/.github/workflows/release.yml +92 -0
- seraplot-2.8.2/.gitignore +18 -0
- seraplot-2.8.2/CODE_OF_CONDUCT.md +131 -0
- seraplot-2.8.2/Cargo.lock +6228 -0
- seraplot-2.8.2/Cargo.toml +84 -0
- seraplot-2.8.2/LICENSE +21 -0
- seraplot-2.8.2/PKG-INFO +13 -0
- seraplot-2.8.2/README.md +35 -0
- seraplot-2.8.2/SECURITY.md +73 -0
- seraplot-2.8.2/_py.rs +490 -0
- seraplot-2.8.2/asset/SVG World Map with labels.svg +3246 -0
- seraplot-2.8.2/asset/world.svg +1037 -0
- seraplot-2.8.2/bindings/alias_registry.rs +111 -0
- seraplot-2.8.2/bindings/chart_ffi.rs +260 -0
- seraplot-2.8.2/bindings/chart_methods/apply.rs +1047 -0
- seraplot-2.8.2/bindings/chart_methods/compose.rs +296 -0
- seraplot-2.8.2/bindings/chart_methods/extras.rs +192 -0
- seraplot-2.8.2/bindings/chart_methods/interactive.rs +17 -0
- seraplot-2.8.2/bindings/chart_methods/js.rs +227 -0
- seraplot-2.8.2/bindings/chart_methods/layout.rs +76 -0
- seraplot-2.8.2/bindings/chart_methods/methods.rs +3147 -0
- seraplot-2.8.2/bindings/chart_methods/mod.rs +13 -0
- seraplot-2.8.2/bindings/chart_methods/pages.rs +299 -0
- seraplot-2.8.2/bindings/chart_types.rs +90 -0
- seraplot-2.8.2/bindings/commands/mod.rs +9 -0
- seraplot-2.8.2/bindings/commands/registry.rs +1 -0
- seraplot-2.8.2/bindings/doc_registry.rs +30 -0
- seraplot-2.8.2/bindings/exports.rs +42 -0
- seraplot-2.8.2/bindings/fn_registry.rs +25 -0
- seraplot-2.8.2/bindings/live_stream.rs +250 -0
- seraplot-2.8.2/bindings/macros/src/class.rs +479 -0
- seraplot-2.8.2/bindings/macros/src/doc.rs +245 -0
- seraplot-2.8.2/bindings/macros/src/lib.rs +83 -0
- seraplot-2.8.2/bindings/macros/src/util.rs +193 -0
- seraplot-2.8.2/bindings/method_registry.rs +23 -0
- seraplot-2.8.2/bindings/mod.rs +30 -0
- seraplot-2.8.2/bindings/registry_macro.rs +32 -0
- seraplot-2.8.2/bindings/utils/compact_state.rs +85 -0
- seraplot-2.8.2/bindings/utils/data_processor.rs +136 -0
- seraplot-2.8.2/bindings/utils/image_processor.rs +31 -0
- seraplot-2.8.2/bindings/utils/lazy_builders.rs +77 -0
- seraplot-2.8.2/book.toml +28 -0
- seraplot-2.8.2/build.rs +84 -0
- seraplot-2.8.2/core/dispatch.rs +225 -0
- seraplot-2.8.2/core/mod.rs +13 -0
- seraplot-2.8.2/core/telemetry.rs +641 -0
- seraplot-2.8.2/docs/gen/bindings.rs +721 -0
- seraplot-2.8.2/docs/gen/common.rs +841 -0
- seraplot-2.8.2/docs/gen/ml_docs.rs +667 -0
- seraplot-2.8.2/docs/gen/plot_docs.rs +865 -0
- seraplot-2.8.2/docs/gen/registry.rs +102 -0
- seraplot-2.8.2/lib.rs +1751 -0
- seraplot-2.8.2/playground_server.py +187 -0
- seraplot-2.8.2/pyproject.toml +21 -0
- seraplot-2.8.2/python/seraplot/__init__.py +290 -0
- seraplot-2.8.2/services/data/dframe/aggregate/mod.rs +2 -0
- seraplot-2.8.2/services/data/dframe/aggregate/reduce.rs +259 -0
- seraplot-2.8.2/services/data/dframe/aggregate/stats.rs +481 -0
- seraplot-2.8.2/services/data/dframe/attrs.rs +75 -0
- seraplot-2.8.2/services/data/dframe/combine/combine.rs +298 -0
- seraplot-2.8.2/services/data/dframe/combine/mod.rs +3 -0
- seraplot-2.8.2/services/data/dframe/combine/relational.rs +355 -0
- seraplot-2.8.2/services/data/dframe/combine/reshape.rs +161 -0
- seraplot-2.8.2/services/data/dframe/construct/builder.rs +51 -0
- seraplot-2.8.2/services/data/dframe/construct/construct.rs +630 -0
- seraplot-2.8.2/services/data/dframe/construct/mod.rs +2 -0
- seraplot-2.8.2/services/data/dframe/groupby.rs +427 -0
- seraplot-2.8.2/services/data/dframe/mod.rs +100 -0
- seraplot-2.8.2/services/data/dframe/scale/bigdata.rs +207 -0
- seraplot-2.8.2/services/data/dframe/scale/chartbridge.rs +53 -0
- seraplot-2.8.2/services/data/dframe/scale/mod.rs +2 -0
- seraplot-2.8.2/services/data/dframe/select/filter.rs +353 -0
- seraplot-2.8.2/services/data/dframe/select/mask.rs +122 -0
- seraplot-2.8.2/services/data/dframe/select/mod.rs +3 -0
- seraplot-2.8.2/services/data/dframe/select/query.rs +143 -0
- seraplot-2.8.2/services/data/dframe/series.rs +306 -0
- seraplot-2.8.2/services/data/dframe/tools.rs +65 -0
- seraplot-2.8.2/services/data/dframe/transform/datetime.rs +254 -0
- seraplot-2.8.2/services/data/dframe/transform/derive.rs +362 -0
- seraplot-2.8.2/services/data/dframe/transform/elementwise.rs +197 -0
- seraplot-2.8.2/services/data/dframe/transform/mod.rs +4 -0
- seraplot-2.8.2/services/data/dframe/transform/strings.rs +272 -0
- seraplot-2.8.2/services/data/dframe/window/mod.rs +2 -0
- seraplot-2.8.2/services/data/dframe/window/resample.rs +60 -0
- seraplot-2.8.2/services/data/dframe/window/rolling.rs +183 -0
- seraplot-2.8.2/services/data/generic/loader.rs +129 -0
- seraplot-2.8.2/services/data/generic/mod.rs +2 -0
- seraplot-2.8.2/services/data/mod.rs +15 -0
- seraplot-2.8.2/services/data/py_dataset.rs +140 -0
- seraplot-2.8.2/services/data/table/agg.rs +266 -0
- seraplot-2.8.2/services/data/table/construct.rs +121 -0
- seraplot-2.8.2/services/data/table/filter.rs +87 -0
- seraplot-2.8.2/services/data/table/mod.rs +162 -0
- seraplot-2.8.2/services/data/table/tools.rs +44 -0
- seraplot-2.8.2/services/data/table/transform.rs +164 -0
- seraplot-2.8.2/services/ml/bindings/anomaly.rs +37 -0
- seraplot-2.8.2/services/ml/bindings/clustering.rs +83 -0
- seraplot-2.8.2/services/ml/bindings/decomposition.rs +58 -0
- seraplot-2.8.2/services/ml/bindings/ensemble.rs +175 -0
- seraplot-2.8.2/services/ml/bindings/helpers.rs +113 -0
- seraplot-2.8.2/services/ml/bindings/importance.rs +49 -0
- seraplot-2.8.2/services/ml/bindings/linear.rs +218 -0
- seraplot-2.8.2/services/ml/bindings/metrics.rs +190 -0
- seraplot-2.8.2/services/ml/bindings/model_selection.rs +119 -0
- seraplot-2.8.2/services/ml/bindings/naive_bayes.rs +65 -0
- seraplot-2.8.2/services/ml/bindings/neighbors.rs +65 -0
- seraplot-2.8.2/services/ml/bindings/persistence.rs +57 -0
- seraplot-2.8.2/services/ml/bindings/preprocessing.rs +217 -0
- seraplot-2.8.2/services/ml/bindings/svm.rs +48 -0
- seraplot-2.8.2/services/ml/bindings/tree.rs +72 -0
- seraplot-2.8.2/services/ml/cache.rs +582 -0
- seraplot-2.8.2/services/ml/linear/ols.rs +178 -0
- seraplot-2.8.2/services/ml/linear/ridge.rs +355 -0
- seraplot-2.8.2/services/ml/mod.rs +48 -0
- seraplot-2.8.2/services/ml/model_selection/grid_search.rs +2050 -0
- seraplot-2.8.2/services/ml/registry/mod.rs +186 -0
- seraplot-2.8.2/services/mod.rs +3 -0
- seraplot-2.8.2/services/plot/canvas.rs +152 -0
- seraplot-2.8.2/services/plot/canvas_points.rs +244 -0
- seraplot-2.8.2/services/plot/chart_input/annotate.rs +107 -0
- seraplot-2.8.2/services/plot/chart_input/html.rs +342 -0
- seraplot-2.8.2/services/plot/chart_input/mod.rs +9 -0
- seraplot-2.8.2/services/plot/chart_input/parse.rs +139 -0
- seraplot-2.8.2/services/plot/chart_input/types.rs +454 -0
- seraplot-2.8.2/services/plot/controller/chart_controller.rs +356 -0
- seraplot-2.8.2/services/plot/controller/plot_3d_controller.rs +473 -0
- seraplot-2.8.2/services/plot/dashboard/anchors.rs +260 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_build.rs +299 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_core.rs +328 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_index.rs +114 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_links.rs +109 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_persistence.rs +28 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_pins.rs +196 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_placement.rs +229 -0
- seraplot-2.8.2/services/plot/dashboard/canvas_shapes.rs +552 -0
- seraplot-2.8.2/services/plot/dashboard/dashboard_tests.rs +102 -0
- seraplot-2.8.2/services/plot/dashboard/element.rs +254 -0
- seraplot-2.8.2/services/plot/dashboard/geometry.rs +110 -0
- seraplot-2.8.2/services/plot/dashboard/html_util.rs +36 -0
- seraplot-2.8.2/services/plot/dashboard/mod.rs +24 -0
- seraplot-2.8.2/services/plot/dashboard/render.rs +744 -0
- seraplot-2.8.2/services/plot/decimate.rs +181 -0
- seraplot-2.8.2/services/plot/default/_3d/bar_3d.rs +182 -0
- seraplot-2.8.2/services/plot/default/_3d/line_3d.rs +159 -0
- seraplot-2.8.2/services/plot/default/_3d/plot_3d_types.rs +137 -0
- seraplot-2.8.2/services/plot/default/_3d/scatter_3d.rs +171 -0
- seraplot-2.8.2/services/plot/default/bar.rs +536 -0
- seraplot-2.8.2/services/plot/default/chart.rs +81 -0
- seraplot-2.8.2/services/plot/default/kmeans.rs +1718 -0
- seraplot-2.8.2/services/plot/default/line.rs +407 -0
- seraplot-2.8.2/services/plot/default/scatter.rs +2365 -0
- seraplot-2.8.2/services/plot/family_macro.rs +119 -0
- seraplot-2.8.2/services/plot/html/assets.rs +271 -0
- seraplot-2.8.2/services/plot/html/hover.rs +924 -0
- seraplot-2.8.2/services/plot/html/js_3d.rs +1679 -0
- seraplot-2.8.2/services/plot/layout.rs +182 -0
- seraplot-2.8.2/services/plot/map/_3d/globe.rs +265 -0
- seraplot-2.8.2/services/plot/map/_3d/globe_html.rs +79 -0
- seraplot-2.8.2/services/plot/map/_3d/globe_types.rs +62 -0
- seraplot-2.8.2/services/plot/map/chart.rs +47 -0
- seraplot-2.8.2/services/plot/map/world_data.rs +202 -0
- seraplot-2.8.2/services/plot/mod.rs +41 -0
- seraplot-2.8.2/services/plot/scene3d.rs +77 -0
- seraplot-2.8.2/services/plot/seaborn/_3d/bar_3d.rs +68 -0
- seraplot-2.8.2/services/plot/seaborn/_3d/line_3d.rs +30 -0
- seraplot-2.8.2/services/plot/seaborn/_3d/plot_3d_types.rs +137 -0
- seraplot-2.8.2/services/plot/seaborn/_3d/scatter_3d.rs +36 -0
- seraplot-2.8.2/services/plot/seaborn/chart.rs +65 -0
- seraplot-2.8.2/services/plot/statistical/_3d/bar3d/mod.rs +99 -0
- seraplot-2.8.2/services/plot/statistical/_3d/bubble3d.rs +57 -0
- seraplot-2.8.2/services/plot/statistical/_3d/candlestick3d.rs +91 -0
- seraplot-2.8.2/services/plot/statistical/_3d/dumbbell3d.rs +89 -0
- seraplot-2.8.2/services/plot/statistical/_3d/funnel3d.rs +76 -0
- seraplot-2.8.2/services/plot/statistical/_3d/heatmap3d.rs +87 -0
- seraplot-2.8.2/services/plot/statistical/_3d/isosurface.rs +354 -0
- seraplot-2.8.2/services/plot/statistical/_3d/kde3d.rs +116 -0
- seraplot-2.8.2/services/plot/statistical/_3d/lollipop3d.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/_3d/mesh3d.rs +510 -0
- seraplot-2.8.2/services/plot/statistical/_3d/mod.rs +54 -0
- seraplot-2.8.2/services/plot/statistical/_3d/pie3d.rs +74 -0
- seraplot-2.8.2/services/plot/statistical/_3d/plot_3d_types.rs +18 -0
- seraplot-2.8.2/services/plot/statistical/_3d/radar3d.rs +109 -0
- seraplot-2.8.2/services/plot/statistical/_3d/ridgeline3d.rs +112 -0
- seraplot-2.8.2/services/plot/statistical/_3d/stacked_bar3d.rs +96 -0
- seraplot-2.8.2/services/plot/statistical/_3d/streamtube.rs +359 -0
- seraplot-2.8.2/services/plot/statistical/_3d/sunburst3d.rs +88 -0
- seraplot-2.8.2/services/plot/statistical/_3d/violin3d.rs +116 -0
- seraplot-2.8.2/services/plot/statistical/arc_diagram/basic.rs +138 -0
- seraplot-2.8.2/services/plot/statistical/arc_diagram/config.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/arc_diagram/mod.rs +50 -0
- seraplot-2.8.2/services/plot/statistical/arc_diagram/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/area/basic.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/common.rs +393 -0
- seraplot-2.8.2/services/plot/statistical/area/config.rs +14 -0
- seraplot-2.8.2/services/plot/statistical/area/gradient.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/mod.rs +98 -0
- seraplot-2.8.2/services/plot/statistical/area/percent.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/ribbon.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/spline.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/stacked.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/step.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/area/variant.rs +12 -0
- seraplot-2.8.2/services/plot/statistical/area/wave.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/bar/basic.rs +46 -0
- seraplot-2.8.2/services/plot/statistical/bar/block3d.rs +24 -0
- seraplot-2.8.2/services/plot/statistical/bar/circular.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/bar/circular_common.rs +161 -0
- seraplot-2.8.2/services/plot/statistical/bar/circular_grouped.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/bar/deluxe.rs +222 -0
- seraplot-2.8.2/services/plot/statistical/bar/distribution.rs +138 -0
- seraplot-2.8.2/services/plot/statistical/bar/diverging.rs +155 -0
- seraplot-2.8.2/services/plot/statistical/bar/grouped.rs +59 -0
- seraplot-2.8.2/services/plot/statistical/bar/grouped_stacked.rs +161 -0
- seraplot-2.8.2/services/plot/statistical/bar/marimekko.rs +168 -0
- seraplot-2.8.2/services/plot/statistical/bar/mod.rs +180 -0
- seraplot-2.8.2/services/plot/statistical/bar/multicategory.rs +203 -0
- seraplot-2.8.2/services/plot/statistical/bar/pictogram.rs +141 -0
- seraplot-2.8.2/services/plot/statistical/bar/population_pyramid.rs +172 -0
- seraplot-2.8.2/services/plot/statistical/bar/prism.rs +215 -0
- seraplot-2.8.2/services/plot/statistical/bar/relative.rs +177 -0
- seraplot-2.8.2/services/plot/statistical/bar/stacked.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/bar/variant.rs +18 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/basic.rs +107 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/common.rs +442 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/config.rs +34 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/horizontal.rs +178 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/letter_value.rs +121 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/mod.rs +121 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/outliers.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/strip.rs +95 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/swarm.rs +102 -0
- seraplot-2.8.2/services/plot/statistical/boxplot/variant.rs +14 -0
- seraplot-2.8.2/services/plot/statistical/bubble/basic.rs +60 -0
- seraplot-2.8.2/services/plot/statistical/bubble/common.rs +118 -0
- seraplot-2.8.2/services/plot/statistical/bubble/config.rs +44 -0
- seraplot-2.8.2/services/plot/statistical/bubble/labeled.rs +101 -0
- seraplot-2.8.2/services/plot/statistical/bubble/mod.rs +129 -0
- seraplot-2.8.2/services/plot/statistical/bubble/outlined.rs +101 -0
- seraplot-2.8.2/services/plot/statistical/bubble/split.rs +217 -0
- seraplot-2.8.2/services/plot/statistical/bubble/variant.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/bullet/basic.rs +77 -0
- seraplot-2.8.2/services/plot/statistical/bullet/common.rs +177 -0
- seraplot-2.8.2/services/plot/statistical/bullet/compare.rs +83 -0
- seraplot-2.8.2/services/plot/statistical/bullet/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/bullet/dot.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/bullet/minimal.rs +65 -0
- seraplot-2.8.2/services/plot/statistical/bullet/mod.rs +63 -0
- seraplot-2.8.2/services/plot/statistical/bullet/progress.rs +76 -0
- seraplot-2.8.2/services/plot/statistical/bullet/segmented.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/bullet/stacked.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/bullet/thermo.rs +125 -0
- seraplot-2.8.2/services/plot/statistical/bullet/variant.rs +12 -0
- seraplot-2.8.2/services/plot/statistical/candlestick/common.rs +235 -0
- seraplot-2.8.2/services/plot/statistical/candlestick/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/candlestick/mod.rs +85 -0
- seraplot-2.8.2/services/plot/statistical/candlestick/variant.rs +13 -0
- seraplot-2.8.2/services/plot/statistical/candlestick/volume.rs +112 -0
- seraplot-2.8.2/services/plot/statistical/chart_registry.rs +70 -0
- seraplot-2.8.2/services/plot/statistical/chord/basic.rs +138 -0
- seraplot-2.8.2/services/plot/statistical/chord/common.rs +103 -0
- seraplot-2.8.2/services/plot/statistical/chord/config.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/chord/directed.rs +6 -0
- seraplot-2.8.2/services/plot/statistical/chord/mod.rs +49 -0
- seraplot-2.8.2/services/plot/statistical/chord/mono.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/chord/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/basic.rs +166 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/bubble.rs +196 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/common.rs +176 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/config.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/flat.rs +69 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/mod.rs +55 -0
- seraplot-2.8.2/services/plot/statistical/circle_pack/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/common.rs +834 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/circle.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/circle_legend.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/common.rs +288 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/ellipse.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/heatmap.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/mixed.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/mod.rs +63 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/pie_square.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/text.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/correlogram/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/common.rs +783 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/compact.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/elegant.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/horizontal.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/mod.rs +57 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/radial.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/triangular.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/variant.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/dendrogram/vertical.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/basic.rs +37 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/common.rs +164 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/config.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/glow.rs +50 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/mod.rs +79 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/ranked.rs +54 -0
- seraplot-2.8.2/services/plot/statistical/dumbbell/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/basic.rs +42 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/common.rs +94 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/config.rs +16 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/connected.rs +59 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/density.rs +81 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/mod.rs +53 -0
- seraplot-2.8.2/services/plot/statistical/eventplot/variant.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/facet/basic.rs +56 -0
- seraplot-2.8.2/services/plot/statistical/facet/faceted_histogram.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/facet/faceted_lineplot.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/facet/many_facets.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/facet/mod.rs +166 -0
- seraplot-2.8.2/services/plot/statistical/facet/multiple_conditional_kde.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/facet/three_variable_histogram.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/funnel/common.rs +140 -0
- seraplot-2.8.2/services/plot/statistical/funnel/compare.rs +167 -0
- seraplot-2.8.2/services/plot/statistical/funnel/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/funnel/conversion.rs +83 -0
- seraplot-2.8.2/services/plot/statistical/funnel/grouped.rs +160 -0
- seraplot-2.8.2/services/plot/statistical/funnel/mod.rs +93 -0
- seraplot-2.8.2/services/plot/statistical/funnel/variant.rs +13 -0
- seraplot-2.8.2/services/plot/statistical/gantt/basic.rs +39 -0
- seraplot-2.8.2/services/plot/statistical/gantt/common.rs +149 -0
- seraplot-2.8.2/services/plot/statistical/gantt/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/gantt/milestone.rs +66 -0
- seraplot-2.8.2/services/plot/statistical/gantt/mod.rs +67 -0
- seraplot-2.8.2/services/plot/statistical/gantt/progress.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/gantt/variant.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/gauge/arc270.rs +74 -0
- seraplot-2.8.2/services/plot/statistical/gauge/basic.rs +97 -0
- seraplot-2.8.2/services/plot/statistical/gauge/common.rs +178 -0
- seraplot-2.8.2/services/plot/statistical/gauge/concentric.rs +101 -0
- seraplot-2.8.2/services/plot/statistical/gauge/config.rs +24 -0
- seraplot-2.8.2/services/plot/statistical/gauge/glow.rs +73 -0
- seraplot-2.8.2/services/plot/statistical/gauge/mod.rs +64 -0
- seraplot-2.8.2/services/plot/statistical/gauge/radial.rs +65 -0
- seraplot-2.8.2/services/plot/statistical/gauge/segmented.rs +61 -0
- seraplot-2.8.2/services/plot/statistical/gauge/sleek.rs +66 -0
- seraplot-2.8.2/services/plot/statistical/gauge/sparkline.rs +181 -0
- seraplot-2.8.2/services/plot/statistical/gauge/tick.rs +104 -0
- seraplot-2.8.2/services/plot/statistical/gauge/variant.rs +13 -0
- seraplot-2.8.2/services/plot/statistical/grouped_bar.rs +492 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/bubble.rs +174 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/cluster.rs +196 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/common.rs +792 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/config.rs +78 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/marginal.rs +188 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/mod.rs +143 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/pivot.rs +230 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/polar.rs +241 -0
- seraplot-2.8.2/services/plot/statistical/heatmap/variant.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/basic.rs +26 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/common.rs +560 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/dotted.rs +28 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/highlight.rs +33 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/log_counts.rs +28 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/marginals.rs +78 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/mincnt.rs +31 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/mod.rs +70 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/nested.rs +27 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/outlined.rs +27 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/spaced.rs +26 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/variant.rs +14 -0
- seraplot-2.8.2/services/plot/statistical/hexbin/weighted.rs +30 -0
- seraplot-2.8.2/services/plot/statistical/histogram/basic.rs +153 -0
- seraplot-2.8.2/services/plot/statistical/histogram/config.rs +38 -0
- seraplot-2.8.2/services/plot/statistical/histogram/cumulative.rs +128 -0
- seraplot-2.8.2/services/plot/statistical/histogram/deluxe.rs +150 -0
- seraplot-2.8.2/services/plot/statistical/histogram/horizontal.rs +105 -0
- seraplot-2.8.2/services/plot/statistical/histogram/mod.rs +157 -0
- seraplot-2.8.2/services/plot/statistical/histogram/normalized.rs +162 -0
- seraplot-2.8.2/services/plot/statistical/histogram/overlay.rs +165 -0
- seraplot-2.8.2/services/plot/statistical/histogram/stacked.rs +154 -0
- seraplot-2.8.2/services/plot/statistical/histogram/step.rs +120 -0
- seraplot-2.8.2/services/plot/statistical/histogram/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/hive/basic.rs +192 -0
- seraplot-2.8.2/services/plot/statistical/hive/config.rs +28 -0
- seraplot-2.8.2/services/plot/statistical/hive/mod.rs +61 -0
- seraplot-2.8.2/services/plot/statistical/hive/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/icicle/basic.rs +32 -0
- seraplot-2.8.2/services/plot/statistical/icicle/common.rs +313 -0
- seraplot-2.8.2/services/plot/statistical/icicle/config.rs +16 -0
- seraplot-2.8.2/services/plot/statistical/icicle/gapped.rs +39 -0
- seraplot-2.8.2/services/plot/statistical/icicle/horizontal.rs +45 -0
- seraplot-2.8.2/services/plot/statistical/icicle/mod.rs +51 -0
- seraplot-2.8.2/services/plot/statistical/icicle/radial.rs +215 -0
- seraplot-2.8.2/services/plot/statistical/icicle/rank.rs +52 -0
- seraplot-2.8.2/services/plot/statistical/icicle/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/joint/basic.rs +123 -0
- seraplot-2.8.2/services/plot/statistical/joint/common.rs +120 -0
- seraplot-2.8.2/services/plot/statistical/joint/hexbin_kde.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/joint/hexbin_outlined_kde.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/joint/kde_histogram.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/joint/layered_bivariate.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/joint/mod.rs +108 -0
- seraplot-2.8.2/services/plot/statistical/joint/scatter_bar.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/joint/variant.rs +32 -0
- seraplot-2.8.2/services/plot/statistical/kde/basic.rs +117 -0
- seraplot-2.8.2/services/plot/statistical/kde/config.rs +26 -0
- seraplot-2.8.2/services/plot/statistical/kde/contour.rs +211 -0
- seraplot-2.8.2/services/plot/statistical/kde/cumulative.rs +99 -0
- seraplot-2.8.2/services/plot/statistical/kde/fill.rs +106 -0
- seraplot-2.8.2/services/plot/statistical/kde/histogram.rs +125 -0
- seraplot-2.8.2/services/plot/statistical/kde/levels.rs +206 -0
- seraplot-2.8.2/services/plot/statistical/kde/mod.rs +115 -0
- seraplot-2.8.2/services/plot/statistical/kde/normalized.rs +126 -0
- seraplot-2.8.2/services/plot/statistical/kde/outline.rs +80 -0
- seraplot-2.8.2/services/plot/statistical/kde/rug.rs +153 -0
- seraplot-2.8.2/services/plot/statistical/kde/stack.rs +107 -0
- seraplot-2.8.2/services/plot/statistical/kde/stepped.rs +102 -0
- seraplot-2.8.2/services/plot/statistical/kde/variant.rs +15 -0
- seraplot-2.8.2/services/plot/statistical/line/band.rs +167 -0
- seraplot-2.8.2/services/plot/statistical/line/basic.rs +27 -0
- seraplot-2.8.2/services/plot/statistical/line/connected_scatter.rs +146 -0
- seraplot-2.8.2/services/plot/statistical/line/dashed.rs +137 -0
- seraplot-2.8.2/services/plot/statistical/line/filled.rs +189 -0
- seraplot-2.8.2/services/plot/statistical/line/gapped.rs +183 -0
- seraplot-2.8.2/services/plot/statistical/line/mod.rs +164 -0
- seraplot-2.8.2/services/plot/statistical/line/sparkline.rs +150 -0
- seraplot-2.8.2/services/plot/statistical/line/spline.rs +134 -0
- seraplot-2.8.2/services/plot/statistical/line/stepped.rs +165 -0
- seraplot-2.8.2/services/plot/statistical/line/variant.rs +14 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/basic.rs +74 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/circular.rs +98 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/cleveland.rs +91 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/common.rs +141 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/conditional_color.rs +89 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/config.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/custom.rs +89 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/diverging.rs +98 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/mod.rs +77 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/office.rs +170 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/trend.rs +137 -0
- seraplot-2.8.2/services/plot/statistical/lollipop/variant.rs +12 -0
- seraplot-2.8.2/services/plot/statistical/mod.rs +196 -0
- seraplot-2.8.2/services/plot/statistical/multiline.rs +214 -0
- seraplot-2.8.2/services/plot/statistical/orbita/basic.rs +197 -0
- seraplot-2.8.2/services/plot/statistical/orbita/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/orbita/mod.rs +49 -0
- seraplot-2.8.2/services/plot/statistical/orbita/variant.rs +10 -0
- seraplot-2.8.2/services/plot/statistical/parallel/arc.rs +144 -0
- seraplot-2.8.2/services/plot/statistical/parallel/common.rs +218 -0
- seraplot-2.8.2/services/plot/statistical/parallel/deluxe.rs +151 -0
- seraplot-2.8.2/services/plot/statistical/parallel/mod.rs +95 -0
- seraplot-2.8.2/services/plot/statistical/parallel/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/parcats/basic.rs +148 -0
- seraplot-2.8.2/services/plot/statistical/parcats/common.rs +75 -0
- seraplot-2.8.2/services/plot/statistical/parcats/config.rs +18 -0
- seraplot-2.8.2/services/plot/statistical/parcats/mod.rs +43 -0
- seraplot-2.8.2/services/plot/statistical/parcats/variant.rs +6 -0
- seraplot-2.8.2/services/plot/statistical/pie/common.rs +446 -0
- seraplot-2.8.2/services/plot/statistical/pie/config.rs +73 -0
- seraplot-2.8.2/services/plot/statistical/pie/mod.rs +163 -0
- seraplot-2.8.2/services/plot/statistical/pie/nested.rs +90 -0
- seraplot-2.8.2/services/plot/statistical/pie/nightingale.rs +122 -0
- seraplot-2.8.2/services/plot/statistical/pie/proportional.rs +45 -0
- seraplot-2.8.2/services/plot/statistical/pie/subplots.rs +126 -0
- seraplot-2.8.2/services/plot/statistical/pie/variant.rs +15 -0
- seraplot-2.8.2/services/plot/statistical/pie/waffle.rs +125 -0
- seraplot-2.8.2/services/plot/statistical/plot_web/common.rs +32 -0
- seraplot-2.8.2/services/plot/statistical/plot_web/config.rs +28 -0
- seraplot-2.8.2/services/plot/statistical/plot_web/mod.rs +75 -0
- seraplot-2.8.2/services/plot/statistical/plot_web/radial.rs +320 -0
- seraplot-2.8.2/services/plot/statistical/plot_web/scatter.rs +414 -0
- seraplot-2.8.2/services/plot/statistical/plot_web/variant.rs +6 -0
- seraplot-2.8.2/services/plot/statistical/pulse/common.rs +309 -0
- seraplot-2.8.2/services/plot/statistical/pulse/config.rs +18 -0
- seraplot-2.8.2/services/plot/statistical/pulse/dot.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/pulse/filled.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/pulse/mod.rs +51 -0
- seraplot-2.8.2/services/plot/statistical/pulse/outlined.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/pulse/radial.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/pulse/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/pulse/wave.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/radar/band.rs +132 -0
- seraplot-2.8.2/services/plot/statistical/radar/basic.rs +42 -0
- seraplot-2.8.2/services/plot/statistical/radar/common.rs +240 -0
- seraplot-2.8.2/services/plot/statistical/radar/dashed.rs +40 -0
- seraplot-2.8.2/services/plot/statistical/radar/filled.rs +51 -0
- seraplot-2.8.2/services/plot/statistical/radar/lines.rs +40 -0
- seraplot-2.8.2/services/plot/statistical/radar/markers.rs +40 -0
- seraplot-2.8.2/services/plot/statistical/radar/mod.rs +62 -0
- seraplot-2.8.2/services/plot/statistical/radar/polar_bar.rs +77 -0
- seraplot-2.8.2/services/plot/statistical/radar/stacked.rs +69 -0
- seraplot-2.8.2/services/plot/statistical/radar/variant.rs +12 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/basic.rs +46 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/common.rs +358 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/config.rs +24 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/heatmap.rs +61 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/lines.rs +36 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/mean.rs +77 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/mod.rs +68 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/quartiles.rs +80 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/rug.rs +74 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/spaced.rs +44 -0
- seraplot-2.8.2/services/plot/statistical/ridgeline/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/sankey/basic.rs +130 -0
- seraplot-2.8.2/services/plot/statistical/sankey/common.rs +205 -0
- seraplot-2.8.2/services/plot/statistical/sankey/config.rs +22 -0
- seraplot-2.8.2/services/plot/statistical/sankey/gapped.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/sankey/mod.rs +56 -0
- seraplot-2.8.2/services/plot/statistical/sankey/ribbon.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/sankey/sorted.rs +6 -0
- seraplot-2.8.2/services/plot/statistical/sankey/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/scatter/basic.rs +61 -0
- seraplot-2.8.2/services/plot/statistical/scatter/common.rs +303 -0
- seraplot-2.8.2/services/plot/statistical/scatter/config.rs +46 -0
- seraplot-2.8.2/services/plot/statistical/scatter/continuous_hue.rs +123 -0
- seraplot-2.8.2/services/plot/statistical/scatter/dual_style.rs +126 -0
- seraplot-2.8.2/services/plot/statistical/scatter/facet.rs +133 -0
- seraplot-2.8.2/services/plot/statistical/scatter/labeled.rs +102 -0
- seraplot-2.8.2/services/plot/statistical/scatter/mod.rs +210 -0
- seraplot-2.8.2/services/plot/statistical/scatter/regression.rs +293 -0
- seraplot-2.8.2/services/plot/statistical/scatter/residual.rs +91 -0
- seraplot-2.8.2/services/plot/statistical/scatter/rug.rs +114 -0
- seraplot-2.8.2/services/plot/statistical/scatter/sized.rs +116 -0
- seraplot-2.8.2/services/plot/statistical/scatter/symbols.rs +119 -0
- seraplot-2.8.2/services/plot/statistical/scatter/variant.rs +16 -0
- seraplot-2.8.2/services/plot/statistical/scatter/wide_form.rs +104 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/basic.rs +35 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/bubble.rs +59 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/common.rs +142 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/config.rs +30 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/labeled.rs +44 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/mod.rs +67 -0
- seraplot-2.8.2/services/plot/statistical/scatterternary/variant.rs +7 -0
- seraplot-2.8.2/services/plot/statistical/slope/common.rs +185 -0
- seraplot-2.8.2/services/plot/statistical/slope/diverging.rs +123 -0
- seraplot-2.8.2/services/plot/statistical/slope/highlighted.rs +83 -0
- seraplot-2.8.2/services/plot/statistical/slope/variant.rs +12 -0
- seraplot-2.8.2/services/plot/statistical/splom/basic.rs +40 -0
- seraplot-2.8.2/services/plot/statistical/splom/common.rs +184 -0
- seraplot-2.8.2/services/plot/statistical/splom/config.rs +18 -0
- seraplot-2.8.2/services/plot/statistical/splom/correlation.rs +56 -0
- seraplot-2.8.2/services/plot/statistical/splom/density.rs +41 -0
- seraplot-2.8.2/services/plot/statistical/splom/mod.rs +51 -0
- seraplot-2.8.2/services/plot/statistical/splom/regression.rs +80 -0
- seraplot-2.8.2/services/plot/statistical/splom/variant.rs +8 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/basic.rs +35 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/common.rs +137 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/config.rs +14 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/mod.rs +65 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/normalized.rs +72 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/radial.rs +159 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/ribbon.rs +138 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/streamgraph.rs +33 -0
- seraplot-2.8.2/services/plot/statistical/stackplot/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/basic.rs +49 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/common.rs +341 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/depth_fade.rs +44 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/donut.rs +74 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/gapped.rs +55 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/mod.rs +61 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/mono.rs +49 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/outlined.rs +52 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/sunburst/zoomable.rs +294 -0
- seraplot-2.8.2/services/plot/statistical/theme.rs +546 -0
- seraplot-2.8.2/services/plot/statistical/treemap/basic.rs +32 -0
- seraplot-2.8.2/services/plot/statistical/treemap/common.rs +473 -0
- seraplot-2.8.2/services/plot/statistical/treemap/config.rs +20 -0
- seraplot-2.8.2/services/plot/statistical/treemap/flat.rs +31 -0
- seraplot-2.8.2/services/plot/statistical/treemap/gapped.rs +46 -0
- seraplot-2.8.2/services/plot/statistical/treemap/heat.rs +43 -0
- seraplot-2.8.2/services/plot/statistical/treemap/mod.rs +67 -0
- seraplot-2.8.2/services/plot/statistical/treemap/mono.rs +45 -0
- seraplot-2.8.2/services/plot/statistical/treemap/nested.rs +61 -0
- seraplot-2.8.2/services/plot/statistical/treemap/outlined.rs +35 -0
- seraplot-2.8.2/services/plot/statistical/treemap/trend.rs +69 -0
- seraplot-2.8.2/services/plot/statistical/treemap/variant.rs +12 -0
- seraplot-2.8.2/services/plot/statistical/venn/basic.rs +213 -0
- seraplot-2.8.2/services/plot/statistical/venn/config.rs +18 -0
- seraplot-2.8.2/services/plot/statistical/venn/mod.rs +46 -0
- seraplot-2.8.2/services/plot/statistical/venn/variant.rs +9 -0
- seraplot-2.8.2/services/plot/statistical/violin/basic.rs +70 -0
- seraplot-2.8.2/services/plot/statistical/violin/common.rs +563 -0
- seraplot-2.8.2/services/plot/statistical/violin/half.rs +97 -0
- seraplot-2.8.2/services/plot/statistical/violin/horizontal.rs +82 -0
- seraplot-2.8.2/services/plot/statistical/violin/mean.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/violin/mod.rs +85 -0
- seraplot-2.8.2/services/plot/statistical/violin/points.rs +74 -0
- seraplot-2.8.2/services/plot/statistical/violin/quartile.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/violin/split.rs +111 -0
- seraplot-2.8.2/services/plot/statistical/violin/strip.rs +96 -0
- seraplot-2.8.2/services/plot/statistical/violin/variant.rs +13 -0
- seraplot-2.8.2/services/plot/statistical/violin/with_box.rs +71 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/arrowed.rs +85 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/basic.rs +70 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/common.rs +250 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/delta.rs +90 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/horizontal.rs +188 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/lollipop.rs +70 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/mod.rs +58 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/trend.rs +104 -0
- seraplot-2.8.2/services/plot/statistical/waterfall/variant.rs +11 -0
- seraplot-2.8.2/services/plot/statistical/wordcloud/common.rs +961 -0
- seraplot-2.8.2/services/plot/statistical/wordcloud/cosmos.rs +294 -0
- seraplot-2.8.2/services/plot/statistical/wordcloud/mod.rs +96 -0
- seraplot-2.8.2/services/plot/statistical/wordcloud/neuron.rs +224 -0
- seraplot-2.8.2/services/plot/statistical/wordcloud/variant.rs +12 -0
- seraplot-2.8.2/services/plot/utils.rs +941 -0
- seraplot-2.8.2/viewer/chart.rs +2051 -0
- seraplot-2.8.2/viewer/mod.rs +13 -0
- seraplot-2.8.2/viewer/render/pipeline.rs +387 -0
- seraplot-2.8.2/viewer/utils/image_loader.rs +105 -0
- seraplot-2.8.2/webapp/components.rs +77 -0
- seraplot-2.8.2/webapp/http.rs +103 -0
- seraplot-2.8.2/webapp/mod.rs +18 -0
- seraplot-2.8.2/webapp/py.rs +125 -0
- seraplot-2.8.2/webapp/registry.rs +370 -0
- seraplot-2.8.2/webapp/server.rs +278 -0
- seraplot-2.8.2/webapp/sha1.rs +89 -0
- seraplot-2.8.2/webapp/ws.rs +119 -0
- seraplot-2.8.2/wiki/api.rs +146 -0
- seraplot-2.7.12/.continueignore +0 -31
- seraplot-2.7.12/.github/copilot-instructions.md +0 -18
- seraplot-2.7.12/.sera-ai/PROJECT_MEMORY.md +0 -75
- seraplot-2.7.12/.vscode/settings.json +0 -5
- seraplot-2.7.12/AGENTS.md +0 -47
- seraplot-2.7.12/Cargo.lock +0 -6460
- seraplot-2.7.12/Cargo.toml +0 -82
- seraplot-2.7.12/PKG-INFO +0 -91
- seraplot-2.7.12/README.md +0 -60
- seraplot-2.7.12/benches/dispatch_bench.rs +0 -29
- seraplot-2.7.12/build/bindings.rs +0 -620
- seraplot-2.7.12/build/common.rs +0 -563
- seraplot-2.7.12/build/ml/docs.rs +0 -531
- seraplot-2.7.12/build/ml/mod.rs +0 -1
- seraplot-2.7.12/build/plot/docs.rs +0 -379
- seraplot-2.7.12/build/plot/mod.rs +0 -1
- seraplot-2.7.12/build/registry.rs +0 -76
- seraplot-2.7.12/build.rs +0 -69
- seraplot-2.7.12/build_bindings.ps1 +0 -45
- seraplot-2.7.12/check_output.json +0 -0
- seraplot-2.7.12/main.py +0 -17
- seraplot-2.7.12/ollama-qwen3-8b-32k.Modelfile +0 -3
- seraplot-2.7.12/ollama-qwen3-8b-agent-12k.Modelfile +0 -12
- seraplot-2.7.12/ollama-qwen3-coder-64k.Modelfile +0 -3
- seraplot-2.7.12/ollama-qwen3-coder-8k.Modelfile +0 -3
- seraplot-2.7.12/ollama-sera-agent-qwen3-4b-64k.Modelfile +0 -11
- seraplot-2.7.12/ollama-sera-agent-qwen3-4b.Modelfile +0 -12
- seraplot-2.7.12/ollama-sera-deep-qwen3-4b-128k.Modelfile +0 -10
- seraplot-2.7.12/ollama-sera-deep-qwen3-4b.Modelfile +0 -10
- seraplot-2.7.12/pyproject.toml +0 -40
- seraplot-2.7.12/python/seraplot/__init__.py +0 -72
- seraplot-2.7.12/seraplot-macros/Cargo.lock +0 -47
- seraplot-2.7.12/seraplot-macros/src/class.rs +0 -206
- seraplot-2.7.12/seraplot-macros/src/doc.rs +0 -89
- seraplot-2.7.12/seraplot-macros/src/lib.rs +0 -78
- seraplot-2.7.12/seraplot-macros/src/util.rs +0 -185
- seraplot-2.7.12/src/.github/workflows/mdbook.yml +0 -112
- seraplot-2.7.12/src/.gitignore +0 -8
- seraplot-2.7.12/src/README.md +0 -0
- seraplot-2.7.12/src/_py.rs +0 -584
- seraplot-2.7.12/src/bindings/chart_types.rs +0 -73
- seraplot-2.7.12/src/bindings/commands/docs.rs +0 -2553
- seraplot-2.7.12/src/bindings/commands/mod.rs +0 -10
- seraplot-2.7.12/src/bindings/commands/registry.rs +0 -1
- seraplot-2.7.12/src/bindings/doc_registry.rs +0 -29
- seraplot-2.7.12/src/bindings/exports.rs +0 -28
- seraplot-2.7.12/src/bindings/fn_registry.rs +0 -25
- seraplot-2.7.12/src/bindings/mod.rs +0 -24
- seraplot-2.7.12/src/bindings/registry_macro.rs +0 -30
- seraplot-2.7.12/src/bindings/utils/compact_state.rs +0 -85
- seraplot-2.7.12/src/bindings/utils/data_processor.rs +0 -60
- seraplot-2.7.12/src/bindings/utils/image_processor.rs +0 -41
- seraplot-2.7.12/src/bindings/utils/lazy_builders.rs +0 -198
- seraplot-2.7.12/src/book.toml +0 -27
- seraplot-2.7.12/src/core/dispatch.rs +0 -184
- seraplot-2.7.12/src/core/mod.rs +0 -12
- seraplot-2.7.12/src/data/loader.rs +0 -123
- seraplot-2.7.12/src/data/mod.rs +0 -3
- seraplot-2.7.12/src/html/assets.rs +0 -272
- seraplot-2.7.12/src/html/hover.rs +0 -714
- seraplot-2.7.12/src/html/js_3d.rs +0 -1333
- seraplot-2.7.12/src/lib.rs +0 -3057
- seraplot-2.7.12/src/ml/bindings/anomaly.rs +0 -36
- seraplot-2.7.12/src/ml/bindings/clustering.rs +0 -73
- seraplot-2.7.12/src/ml/bindings/decomposition.rs +0 -50
- seraplot-2.7.12/src/ml/bindings/ensemble.rs +0 -139
- seraplot-2.7.12/src/ml/bindings/helpers.rs +0 -107
- seraplot-2.7.12/src/ml/bindings/importance.rs +0 -48
- seraplot-2.7.12/src/ml/bindings/linear.rs +0 -168
- seraplot-2.7.12/src/ml/bindings/metrics.rs +0 -155
- seraplot-2.7.12/src/ml/bindings/model_selection.rs +0 -104
- seraplot-2.7.12/src/ml/bindings/naive_bayes.rs +0 -51
- seraplot-2.7.12/src/ml/bindings/neighbors.rs +0 -50
- seraplot-2.7.12/src/ml/bindings/persistence.rs +0 -49
- seraplot-2.7.12/src/ml/bindings/preprocessing.rs +0 -188
- seraplot-2.7.12/src/ml/bindings/svm.rs +0 -40
- seraplot-2.7.12/src/ml/bindings/tree.rs +0 -64
- seraplot-2.7.12/src/ml/cache.rs +0 -548
- seraplot-2.7.12/src/ml/handle.rs +0 -240
- seraplot-2.7.12/src/ml/linear/ols.rs +0 -192
- seraplot-2.7.12/src/ml/linear/ridge.rs +0 -337
- seraplot-2.7.12/src/ml/mod.rs +0 -49
- seraplot-2.7.12/src/ml/model_selection/grid_search.rs +0 -2066
- seraplot-2.7.12/src/ml/registry/mod.rs +0 -171
- seraplot-2.7.12/src/ml/tree/decision_tree_backup.rs +0 -459
- seraplot-2.7.12/src/playground_server.py +0 -167
- seraplot-2.7.12/src/plot/canvas.rs +0 -149
- seraplot-2.7.12/src/plot/chart_input.rs +0 -501
- seraplot-2.7.12/src/plot/controller/chart_controller.rs +0 -328
- seraplot-2.7.12/src/plot/controller/plot_3d_controller.rs +0 -348
- seraplot-2.7.12/src/plot/default/_3d/bar_3d.rs +0 -180
- seraplot-2.7.12/src/plot/default/_3d/line_3d.rs +0 -157
- seraplot-2.7.12/src/plot/default/_3d/plot_3d_types.rs +0 -136
- seraplot-2.7.12/src/plot/default/_3d/scatter_3d.rs +0 -169
- seraplot-2.7.12/src/plot/default/bar.rs +0 -530
- seraplot-2.7.12/src/plot/default/chart.rs +0 -80
- seraplot-2.7.12/src/plot/default/kmeans.rs +0 -1676
- seraplot-2.7.12/src/plot/default/line.rs +0 -395
- seraplot-2.7.12/src/plot/default/scatter.rs +0 -2227
- seraplot-2.7.12/src/plot/family_macro.rs +0 -47
- seraplot-2.7.12/src/plot/generic.rs +0 -522
- seraplot-2.7.12/src/plot/layout.rs +0 -175
- seraplot-2.7.12/src/plot/map/_3d/globe.rs +0 -262
- seraplot-2.7.12/src/plot/map/_3d/globe_html.rs +0 -77
- seraplot-2.7.12/src/plot/map/_3d/globe_types.rs +0 -65
- seraplot-2.7.12/src/plot/map/chart.rs +0 -46
- seraplot-2.7.12/src/plot/map/world_data.rs +0 -202
- seraplot-2.7.12/src/plot/mod.rs +0 -36
- seraplot-2.7.12/src/plot/seaborn/_3d/bar_3d.rs +0 -27
- seraplot-2.7.12/src/plot/seaborn/_3d/line_3d.rs +0 -27
- seraplot-2.7.12/src/plot/seaborn/_3d/plot_3d_types.rs +0 -136
- seraplot-2.7.12/src/plot/seaborn/_3d/scatter_3d.rs +0 -33
- seraplot-2.7.12/src/plot/seaborn/chart.rs +0 -64
- seraplot-2.7.12/src/plot/statistical/_3d/candlestick3d.rs +0 -76
- seraplot-2.7.12/src/plot/statistical/_3d/dumbbell3d.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/_3d/funnel3d.rs +0 -61
- seraplot-2.7.12/src/plot/statistical/_3d/heatmap3d.rs +0 -72
- seraplot-2.7.12/src/plot/statistical/_3d/kde3d.rs +0 -101
- seraplot-2.7.12/src/plot/statistical/_3d/lollipop3d.rs +0 -56
- seraplot-2.7.12/src/plot/statistical/_3d/mod.rs +0 -41
- seraplot-2.7.12/src/plot/statistical/_3d/pie3d.rs +0 -59
- seraplot-2.7.12/src/plot/statistical/_3d/plot_3d_types.rs +0 -105
- seraplot-2.7.12/src/plot/statistical/_3d/radar3d.rs +0 -79
- seraplot-2.7.12/src/plot/statistical/_3d/ridgeline3d.rs +0 -97
- seraplot-2.7.12/src/plot/statistical/_3d/stacked_bar3d.rs +0 -81
- seraplot-2.7.12/src/plot/statistical/_3d/sunburst3d.rs +0 -73
- seraplot-2.7.12/src/plot/statistical/_3d/violin3d.rs +0 -101
- seraplot-2.7.12/src/plot/statistical/area.rs +0 -255
- seraplot-2.7.12/src/plot/statistical/bar/basic.rs +0 -24
- seraplot-2.7.12/src/plot/statistical/bar/deluxe.rs +0 -228
- seraplot-2.7.12/src/plot/statistical/bar/grouped.rs +0 -26
- seraplot-2.7.12/src/plot/statistical/bar/grouped_stacked.rs +0 -109
- seraplot-2.7.12/src/plot/statistical/bar/marimekko.rs +0 -110
- seraplot-2.7.12/src/plot/statistical/bar/mod.rs +0 -143
- seraplot-2.7.12/src/plot/statistical/bar/multicategory.rs +0 -151
- seraplot-2.7.12/src/plot/statistical/bar/pictogram.rs +0 -111
- seraplot-2.7.12/src/plot/statistical/bar/prism.rs +0 -223
- seraplot-2.7.12/src/plot/statistical/bar/relative.rs +0 -115
- seraplot-2.7.12/src/plot/statistical/bar/variant.rs +0 -15
- seraplot-2.7.12/src/plot/statistical/boxplot/basic.rs +0 -107
- seraplot-2.7.12/src/plot/statistical/boxplot/common.rs +0 -404
- seraplot-2.7.12/src/plot/statistical/boxplot/config.rs +0 -32
- seraplot-2.7.12/src/plot/statistical/boxplot/horizontal.rs +0 -183
- seraplot-2.7.12/src/plot/statistical/boxplot/letter_value.rs +0 -121
- seraplot-2.7.12/src/plot/statistical/boxplot/mod.rs +0 -84
- seraplot-2.7.12/src/plot/statistical/boxplot/outliers.rs +0 -7
- seraplot-2.7.12/src/plot/statistical/boxplot/rainbow.rs +0 -100
- seraplot-2.7.12/src/plot/statistical/boxplot/strip.rs +0 -92
- seraplot-2.7.12/src/plot/statistical/boxplot/variant.rs +0 -14
- seraplot-2.7.12/src/plot/statistical/bubble/basic.rs +0 -60
- seraplot-2.7.12/src/plot/statistical/bubble/common.rs +0 -132
- seraplot-2.7.12/src/plot/statistical/bubble/config.rs +0 -38
- seraplot-2.7.12/src/plot/statistical/bubble/gradient.rs +0 -122
- seraplot-2.7.12/src/plot/statistical/bubble/labeled.rs +0 -101
- seraplot-2.7.12/src/plot/statistical/bubble/mod.rs +0 -97
- seraplot-2.7.12/src/plot/statistical/bubble/outlined.rs +0 -101
- seraplot-2.7.12/src/plot/statistical/bubble/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/bullet/basic.rs +0 -75
- seraplot-2.7.12/src/plot/statistical/bullet/common.rs +0 -177
- seraplot-2.7.12/src/plot/statistical/bullet/compare.rs +0 -81
- seraplot-2.7.12/src/plot/statistical/bullet/config.rs +0 -20
- seraplot-2.7.12/src/plot/statistical/bullet/dot.rs +0 -69
- seraplot-2.7.12/src/plot/statistical/bullet/minimal.rs +0 -63
- seraplot-2.7.12/src/plot/statistical/bullet/mod.rs +0 -62
- seraplot-2.7.12/src/plot/statistical/bullet/progress.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/bullet/segmented.rs +0 -69
- seraplot-2.7.12/src/plot/statistical/bullet/stacked.rs +0 -69
- seraplot-2.7.12/src/plot/statistical/bullet/thermo.rs +0 -125
- seraplot-2.7.12/src/plot/statistical/bullet/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/candlestick/common.rs +0 -231
- seraplot-2.7.12/src/plot/statistical/candlestick/config.rs +0 -20
- seraplot-2.7.12/src/plot/statistical/candlestick/mod.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/candlestick/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/common.rs +0 -679
- seraplot-2.7.12/src/plot/statistical/dumbbell/basic.rs +0 -37
- seraplot-2.7.12/src/plot/statistical/dumbbell/common.rs +0 -164
- seraplot-2.7.12/src/plot/statistical/dumbbell/config.rs +0 -18
- seraplot-2.7.12/src/plot/statistical/dumbbell/glow.rs +0 -50
- seraplot-2.7.12/src/plot/statistical/dumbbell/mod.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/dumbbell/ranked.rs +0 -52
- seraplot-2.7.12/src/plot/statistical/dumbbell/variant.rs +0 -11
- seraplot-2.7.12/src/plot/statistical/funnel/common.rs +0 -141
- seraplot-2.7.12/src/plot/statistical/funnel/config.rs +0 -16
- seraplot-2.7.12/src/plot/statistical/funnel/conversion.rs +0 -83
- seraplot-2.7.12/src/plot/statistical/funnel/gradient.rs +0 -86
- seraplot-2.7.12/src/plot/statistical/funnel/mod.rs +0 -57
- seraplot-2.7.12/src/plot/statistical/funnel/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/gauge/arc270.rs +0 -70
- seraplot-2.7.12/src/plot/statistical/gauge/basic.rs +0 -93
- seraplot-2.7.12/src/plot/statistical/gauge/common.rs +0 -178
- seraplot-2.7.12/src/plot/statistical/gauge/concentric.rs +0 -97
- seraplot-2.7.12/src/plot/statistical/gauge/config.rs +0 -20
- seraplot-2.7.12/src/plot/statistical/gauge/glow.rs +0 -69
- seraplot-2.7.12/src/plot/statistical/gauge/mod.rs +0 -58
- seraplot-2.7.12/src/plot/statistical/gauge/radial.rs +0 -61
- seraplot-2.7.12/src/plot/statistical/gauge/segmented.rs +0 -57
- seraplot-2.7.12/src/plot/statistical/gauge/sleek.rs +0 -62
- seraplot-2.7.12/src/plot/statistical/gauge/tick.rs +0 -100
- seraplot-2.7.12/src/plot/statistical/gauge/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/grouped_bar.rs +0 -488
- seraplot-2.7.12/src/plot/statistical/heatmap/bubble.rs +0 -174
- seraplot-2.7.12/src/plot/statistical/heatmap/cluster.rs +0 -60
- seraplot-2.7.12/src/plot/statistical/heatmap/common.rs +0 -590
- seraplot-2.7.12/src/plot/statistical/heatmap/config.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/heatmap/marginal.rs +0 -188
- seraplot-2.7.12/src/plot/statistical/heatmap/mod.rs +0 -91
- seraplot-2.7.12/src/plot/statistical/heatmap/pivot.rs +0 -230
- seraplot-2.7.12/src/plot/statistical/heatmap/variant.rs +0 -19
- seraplot-2.7.12/src/plot/statistical/histogram/basic.rs +0 -153
- seraplot-2.7.12/src/plot/statistical/histogram/config.rs +0 -38
- seraplot-2.7.12/src/plot/statistical/histogram/cumulative.rs +0 -128
- seraplot-2.7.12/src/plot/statistical/histogram/deluxe.rs +0 -150
- seraplot-2.7.12/src/plot/statistical/histogram/horizontal.rs +0 -105
- seraplot-2.7.12/src/plot/statistical/histogram/mod.rs +0 -158
- seraplot-2.7.12/src/plot/statistical/histogram/normalized.rs +0 -162
- seraplot-2.7.12/src/plot/statistical/histogram/overlay.rs +0 -165
- seraplot-2.7.12/src/plot/statistical/histogram/stacked.rs +0 -151
- seraplot-2.7.12/src/plot/statistical/histogram/step.rs +0 -120
- seraplot-2.7.12/src/plot/statistical/histogram/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/kde/basic.rs +0 -113
- seraplot-2.7.12/src/plot/statistical/kde/config.rs +0 -22
- seraplot-2.7.12/src/plot/statistical/kde/cumulative.rs +0 -97
- seraplot-2.7.12/src/plot/statistical/kde/gradient.rs +0 -128
- seraplot-2.7.12/src/plot/statistical/kde/histogram.rs +0 -123
- seraplot-2.7.12/src/plot/statistical/kde/mod.rs +0 -88
- seraplot-2.7.12/src/plot/statistical/kde/normalized.rs +0 -122
- seraplot-2.7.12/src/plot/statistical/kde/outline.rs +0 -78
- seraplot-2.7.12/src/plot/statistical/kde/rug.rs +0 -151
- seraplot-2.7.12/src/plot/statistical/kde/stepped.rs +0 -100
- seraplot-2.7.12/src/plot/statistical/kde/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/line/basic.rs +0 -27
- seraplot-2.7.12/src/plot/statistical/line/connected_scatter.rs +0 -141
- seraplot-2.7.12/src/plot/statistical/line/dashed.rs +0 -135
- seraplot-2.7.12/src/plot/statistical/line/filled.rs +0 -187
- seraplot-2.7.12/src/plot/statistical/line/gapped.rs +0 -181
- seraplot-2.7.12/src/plot/statistical/line/mod.rs +0 -121
- seraplot-2.7.12/src/plot/statistical/line/neon.rs +0 -212
- seraplot-2.7.12/src/plot/statistical/line/sparkline.rs +0 -148
- seraplot-2.7.12/src/plot/statistical/line/spline.rs +0 -134
- seraplot-2.7.12/src/plot/statistical/line/stepped.rs +0 -165
- seraplot-2.7.12/src/plot/statistical/line/variant.rs +0 -14
- seraplot-2.7.12/src/plot/statistical/lollipop/basic.rs +0 -71
- seraplot-2.7.12/src/plot/statistical/lollipop/circular.rs +0 -91
- seraplot-2.7.12/src/plot/statistical/lollipop/cleveland.rs +0 -93
- seraplot-2.7.12/src/plot/statistical/lollipop/common.rs +0 -127
- seraplot-2.7.12/src/plot/statistical/lollipop/config.rs +0 -22
- seraplot-2.7.12/src/plot/statistical/lollipop/diverging.rs +0 -93
- seraplot-2.7.12/src/plot/statistical/lollipop/highlight.rs +0 -97
- seraplot-2.7.12/src/plot/statistical/lollipop/mod.rs +0 -70
- seraplot-2.7.12/src/plot/statistical/lollipop/office.rs +0 -172
- seraplot-2.7.12/src/plot/statistical/lollipop/variant.rs +0 -10
- seraplot-2.7.12/src/plot/statistical/mod.rs +0 -136
- seraplot-2.7.12/src/plot/statistical/multiline.rs +0 -209
- seraplot-2.7.12/src/plot/statistical/parallel/arc.rs +0 -144
- seraplot-2.7.12/src/plot/statistical/parallel/common.rs +0 -218
- seraplot-2.7.12/src/plot/statistical/parallel/deluxe.rs +0 -151
- seraplot-2.7.12/src/plot/statistical/parallel/gradient.rs +0 -104
- seraplot-2.7.12/src/plot/statistical/parallel/mod.rs +0 -98
- seraplot-2.7.12/src/plot/statistical/parallel/variant.rs +0 -13
- seraplot-2.7.12/src/plot/statistical/pie/common.rs +0 -390
- seraplot-2.7.12/src/plot/statistical/pie/config.rs +0 -71
- seraplot-2.7.12/src/plot/statistical/pie/mod.rs +0 -158
- seraplot-2.7.12/src/plot/statistical/pie/nested.rs +0 -90
- seraplot-2.7.12/src/plot/statistical/pie/proportional.rs +0 -44
- seraplot-2.7.12/src/plot/statistical/pie/subplots.rs +0 -126
- seraplot-2.7.12/src/plot/statistical/pie/variant.rs +0 -13
- seraplot-2.7.12/src/plot/statistical/radar/basic.rs +0 -40
- seraplot-2.7.12/src/plot/statistical/radar/common.rs +0 -240
- seraplot-2.7.12/src/plot/statistical/radar/dashed.rs +0 -38
- seraplot-2.7.12/src/plot/statistical/radar/deluxe.rs +0 -190
- seraplot-2.7.12/src/plot/statistical/radar/filled.rs +0 -49
- seraplot-2.7.12/src/plot/statistical/radar/gradient.rs +0 -59
- seraplot-2.7.12/src/plot/statistical/radar/lines.rs +0 -38
- seraplot-2.7.12/src/plot/statistical/radar/markers.rs +0 -38
- seraplot-2.7.12/src/plot/statistical/radar/mod.rs +0 -64
- seraplot-2.7.12/src/plot/statistical/radar/polar_bar.rs +0 -77
- seraplot-2.7.12/src/plot/statistical/radar/stacked.rs +0 -67
- seraplot-2.7.12/src/plot/statistical/radar/variant.rs +0 -13
- seraplot-2.7.12/src/plot/statistical/ridgeline/basic.rs +0 -43
- seraplot-2.7.12/src/plot/statistical/ridgeline/common.rs +0 -345
- seraplot-2.7.12/src/plot/statistical/ridgeline/config.rs +0 -22
- seraplot-2.7.12/src/plot/statistical/ridgeline/deluxe.rs +0 -147
- seraplot-2.7.12/src/plot/statistical/ridgeline/gradient.rs +0 -58
- seraplot-2.7.12/src/plot/statistical/ridgeline/heatmap.rs +0 -71
- seraplot-2.7.12/src/plot/statistical/ridgeline/lines.rs +0 -32
- seraplot-2.7.12/src/plot/statistical/ridgeline/mean.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/ridgeline/mod.rs +0 -70
- seraplot-2.7.12/src/plot/statistical/ridgeline/quartiles.rs +0 -77
- seraplot-2.7.12/src/plot/statistical/ridgeline/rug.rs +0 -71
- seraplot-2.7.12/src/plot/statistical/ridgeline/spaced.rs +0 -41
- seraplot-2.7.12/src/plot/statistical/ridgeline/variant.rs +0 -13
- seraplot-2.7.12/src/plot/statistical/scatter/basic.rs +0 -61
- seraplot-2.7.12/src/plot/statistical/scatter/common.rs +0 -306
- seraplot-2.7.12/src/plot/statistical/scatter/config.rs +0 -38
- seraplot-2.7.12/src/plot/statistical/scatter/deluxe.rs +0 -112
- seraplot-2.7.12/src/plot/statistical/scatter/galaxy.rs +0 -114
- seraplot-2.7.12/src/plot/statistical/scatter/gradient.rs +0 -123
- seraplot-2.7.12/src/plot/statistical/scatter/labeled.rs +0 -102
- seraplot-2.7.12/src/plot/statistical/scatter/mod.rs +0 -145
- seraplot-2.7.12/src/plot/statistical/scatter/nova.rs +0 -194
- seraplot-2.7.12/src/plot/statistical/scatter/regression.rs +0 -228
- seraplot-2.7.12/src/plot/statistical/scatter/symbols.rs +0 -119
- seraplot-2.7.12/src/plot/statistical/scatter/variant.rs +0 -13
- seraplot-2.7.12/src/plot/statistical/slope/common.rs +0 -185
- seraplot-2.7.12/src/plot/statistical/slope/diverging.rs +0 -125
- seraplot-2.7.12/src/plot/statistical/slope/highlighted.rs +0 -83
- seraplot-2.7.12/src/plot/statistical/slope/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/sunburst/basic.rs +0 -49
- seraplot-2.7.12/src/plot/statistical/sunburst/common.rs +0 -341
- seraplot-2.7.12/src/plot/statistical/sunburst/depth_fade.rs +0 -44
- seraplot-2.7.12/src/plot/statistical/sunburst/donut.rs +0 -74
- seraplot-2.7.12/src/plot/statistical/sunburst/flame.rs +0 -45
- seraplot-2.7.12/src/plot/statistical/sunburst/gapped.rs +0 -55
- seraplot-2.7.12/src/plot/statistical/sunburst/mod.rs +0 -63
- seraplot-2.7.12/src/plot/statistical/sunburst/mono.rs +0 -49
- seraplot-2.7.12/src/plot/statistical/sunburst/outlined.rs +0 -52
- seraplot-2.7.12/src/plot/statistical/sunburst/rainbow.rs +0 -50
- seraplot-2.7.12/src/plot/statistical/sunburst/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/theme.rs +0 -406
- seraplot-2.7.12/src/plot/statistical/treemap/basic.rs +0 -32
- seraplot-2.7.12/src/plot/statistical/treemap/common.rs +0 -485
- seraplot-2.7.12/src/plot/statistical/treemap/config.rs +0 -16
- seraplot-2.7.12/src/plot/statistical/treemap/flat.rs +0 -31
- seraplot-2.7.12/src/plot/statistical/treemap/gapped.rs +0 -46
- seraplot-2.7.12/src/plot/statistical/treemap/gradient.rs +0 -50
- seraplot-2.7.12/src/plot/statistical/treemap/heat.rs +0 -43
- seraplot-2.7.12/src/plot/statistical/treemap/mod.rs +0 -64
- seraplot-2.7.12/src/plot/statistical/treemap/mono.rs +0 -45
- seraplot-2.7.12/src/plot/statistical/treemap/nested.rs +0 -61
- seraplot-2.7.12/src/plot/statistical/treemap/outlined.rs +0 -35
- seraplot-2.7.12/src/plot/statistical/treemap/variant.rs +0 -12
- seraplot-2.7.12/src/plot/statistical/violin/aurora.rs +0 -131
- seraplot-2.7.12/src/plot/statistical/violin/basic.rs +0 -72
- seraplot-2.7.12/src/plot/statistical/violin/common.rs +0 -551
- seraplot-2.7.12/src/plot/statistical/violin/crystal.rs +0 -188
- seraplot-2.7.12/src/plot/statistical/violin/deluxe.rs +0 -132
- seraplot-2.7.12/src/plot/statistical/violin/half.rs +0 -99
- seraplot-2.7.12/src/plot/statistical/violin/horizontal.rs +0 -84
- seraplot-2.7.12/src/plot/statistical/violin/mean.rs +0 -73
- seraplot-2.7.12/src/plot/statistical/violin/mod.rs +0 -93
- seraplot-2.7.12/src/plot/statistical/violin/points.rs +0 -76
- seraplot-2.7.12/src/plot/statistical/violin/quartile.rs +0 -73
- seraplot-2.7.12/src/plot/statistical/violin/rainbow.rs +0 -78
- seraplot-2.7.12/src/plot/statistical/violin/split.rs +0 -118
- seraplot-2.7.12/src/plot/statistical/violin/strip.rs +0 -58
- seraplot-2.7.12/src/plot/statistical/violin/variant.rs +0 -17
- seraplot-2.7.12/src/plot/statistical/violin/with_box.rs +0 -73
- seraplot-2.7.12/src/plot/statistical/waterfall/arrowed.rs +0 -85
- seraplot-2.7.12/src/plot/statistical/waterfall/basic.rs +0 -70
- seraplot-2.7.12/src/plot/statistical/waterfall/common.rs +0 -248
- seraplot-2.7.12/src/plot/statistical/waterfall/delta.rs +0 -90
- seraplot-2.7.12/src/plot/statistical/waterfall/horizontal.rs +0 -193
- seraplot-2.7.12/src/plot/statistical/waterfall/lollipop.rs +0 -70
- seraplot-2.7.12/src/plot/statistical/waterfall/mod.rs +0 -56
- seraplot-2.7.12/src/plot/statistical/waterfall/variant.rs +0 -10
- seraplot-2.7.12/src/plot/statistical/wordcloud/common.rs +0 -957
- seraplot-2.7.12/src/plot/statistical/wordcloud/mod.rs +0 -94
- seraplot-2.7.12/src/plot/statistical/wordcloud/neuron.rs +0 -217
- seraplot-2.7.12/src/plot/statistical/wordcloud/variant.rs +0 -11
- seraplot-2.7.12/src/plot/utils.rs +0 -871
- seraplot-2.7.12/src/python/mod.rs +0 -1
- seraplot-2.7.12/src/python/registry.rs +0 -1
- seraplot-2.7.12/src/telemetry.rs +0 -640
- seraplot-2.7.12/src/viewer/chart.rs +0 -2031
- seraplot-2.7.12/src/viewer/hybrid.rs +0 -123
- seraplot-2.7.12/src/viewer/mod.rs +0 -15
- seraplot-2.7.12/src/viewer/render/pipeline.rs +0 -384
- seraplot-2.7.12/src/viewer/utils/image_loader.rs +0 -74
- seraplot-2.7.12/src/wiki/api.rs +0 -146
- seraplot-2.7.12/start-seraplot-copilot.cmd +0 -24
- {seraplot-2.7.12/src → seraplot-2.8.2}/.github/workflows/telemetry.yml +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/commands/charts/builders.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/commands/charts/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/commands/ml/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/fast_export_c.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/fast_render.rs +0 -0
- {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/Cargo.toml +0 -0
- {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/src/bind.rs +0 -0
- {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/src/model.rs +0 -0
- {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/src/register.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/model_registry.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/unified_config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/adaptive_buf.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/arena_alloc.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/bitset.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/memory_pool.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/simd_ops.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/state_export.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/core/adaptive_exec.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/core/hw_profile.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/core/math.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/playground-url.json +0 -0
- {seraplot-2.7.12/src/data → seraplot-2.8.2/services/data/generic}/dataset.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/anomaly/isolation_forest.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/anomaly/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/bindings/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/bindings/state.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/decomposition/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/decomposition/pca.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/distributed/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/export/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/export/powerbi.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/export/tableau.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/gpu/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linalg.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/elastic_net.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/lasso.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/logistic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/sgd.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/classification.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/clustering.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/regression.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/cross_val.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/permutation.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/split.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/anomaly.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/decomposition.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/linear.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/naive_bayes.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/neighbors.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/preprocessing.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/svm.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/tree.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/bernoulli.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/gaussian.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/multinomial.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/neighbors/knn.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/neighbors/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/encoders.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/scalers.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/transformers.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/svm/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/svm/svm.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/adaboost.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/decision_tree.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/gradient_boosting.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/random_forest.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/camera.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/chunker.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/planner.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/profile.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/containers_3d.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/controller/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/default/_3d/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/default/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/default/svg.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/fast_builders.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/fast_exporter.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/html_export.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/html_template.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/_3d/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/bubble_map.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/choropleth.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/svg_parser.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/models/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/models/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/projection.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/renderers.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/scale_renderer.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/seaborn/_3d/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/seaborn/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bar/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/grouped.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/notched.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/points.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/violin.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/categorical.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/deluxe.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/negative.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/plasma.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/heikin.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/hollow.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/line.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/mountain.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/ohlc.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/outlined.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/range.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/arrow.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/barbell.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/delta.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/dotted.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/chevron.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/inverted.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/pyramid.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/rounded.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/stepped.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/annotated.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/categorical.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/confusion.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/contour.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/correlation.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/density.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/discrete.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/log.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/temporal.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/unequal.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/histogram/common.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/kde/common.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/line/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/line/multi.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/categorical.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/density.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/highlight.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/ribbon.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/smooth.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/donut.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/exploded.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/kpi.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/pattern.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/semi.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/radar/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/scatter/categorical.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/bumps.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/curved.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/monochrome.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/stepped.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/thick.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/sunburst/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/violin/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/waterfall/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/waterfall/stepped.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/basic.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/bubble.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/config.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/context.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/image.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/labelmap.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/network.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/shape.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/telemetry/data.csv +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/cache.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/gui.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/manager/button_manager.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/manager/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/advanced_render.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/fast_render_gui.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/viewer_3d.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/wiki_viewer.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/utils/mod.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/extractor.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/language.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/macros.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/metadata.rs +0 -0
- {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/mod.rs +0 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Steps to reproduce the behavior:
|
|
15
|
+
1. Go to '...'
|
|
16
|
+
2. Click on '....'
|
|
17
|
+
3. Scroll down to '....'
|
|
18
|
+
4. See error
|
|
19
|
+
|
|
20
|
+
**Expected behavior**
|
|
21
|
+
A clear and concise description of what you expected to happen.
|
|
22
|
+
|
|
23
|
+
**Screenshots**
|
|
24
|
+
If applicable, add screenshots to help explain your problem.
|
|
25
|
+
|
|
26
|
+
**Desktop (please complete the following information):**
|
|
27
|
+
- OS: [e.g. iOS]
|
|
28
|
+
- Browser [e.g. chrome, safari]
|
|
29
|
+
- Version [e.g. 22]
|
|
30
|
+
|
|
31
|
+
**Smartphone (please complete the following information):**
|
|
32
|
+
- Device: [e.g. iPhone6]
|
|
33
|
+
- OS: [e.g. iOS8.1]
|
|
34
|
+
- Browser [e.g. stock browser, safari]
|
|
35
|
+
- Version [e.g. 22]
|
|
36
|
+
|
|
37
|
+
**Additional context**
|
|
38
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
name: Deploy mdBook
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
- main
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
pages: write
|
|
13
|
+
id-token: write
|
|
14
|
+
|
|
15
|
+
concurrency:
|
|
16
|
+
group: pages
|
|
17
|
+
cancel-in-progress: true
|
|
18
|
+
|
|
19
|
+
env:
|
|
20
|
+
MDBOOK_VERSION: 0.4.51
|
|
21
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
deploy:
|
|
25
|
+
environment:
|
|
26
|
+
name: github-pages
|
|
27
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
28
|
+
runs-on: ubuntu-latest
|
|
29
|
+
steps:
|
|
30
|
+
- name: Checkout
|
|
31
|
+
uses: actions/checkout@v4
|
|
32
|
+
|
|
33
|
+
- name: Install mdBook (pre-built binary)
|
|
34
|
+
run: |
|
|
35
|
+
set -e
|
|
36
|
+
MDBOOK_URL="https://github.com/rust-lang/mdBook/releases/download/v${{ env.MDBOOK_VERSION }}/mdbook-v${{ env.MDBOOK_VERSION }}-x86_64-unknown-linux-gnu.tar.gz"
|
|
37
|
+
echo "Downloading from: $MDBOOK_URL"
|
|
38
|
+
curl -sSL -f "$MDBOOK_URL" -o /tmp/mdbook.tar.gz
|
|
39
|
+
tar xzf /tmp/mdbook.tar.gz -C /tmp/
|
|
40
|
+
mv /tmp/mdbook /usr/local/bin/
|
|
41
|
+
chmod +x /usr/local/bin/mdbook
|
|
42
|
+
mdbook --version
|
|
43
|
+
|
|
44
|
+
- name: Build docs
|
|
45
|
+
run: |
|
|
46
|
+
mdbook build -d book/html
|
|
47
|
+
mkdir -p book/html/docs/theme/wasm book/html/docs/theme/images
|
|
48
|
+
cp docs/theme/wasm/seraplot_bg.wasm book/html/docs/theme/wasm/seraplot_bg.wasm
|
|
49
|
+
cp docs/theme/images/logo_banner.png book/html/docs/theme/images/logo_banner.png
|
|
50
|
+
|
|
51
|
+
- name: Setup Pages
|
|
52
|
+
uses: actions/configure-pages@v5
|
|
53
|
+
|
|
54
|
+
- name: Verify build output
|
|
55
|
+
run: |
|
|
56
|
+
if [ ! -d "book/html" ]; then
|
|
57
|
+
echo "ERROR: book/html directory was not created"
|
|
58
|
+
exit 1
|
|
59
|
+
fi
|
|
60
|
+
if [ ! -f "book/html/index.html" ]; then
|
|
61
|
+
echo "ERROR: book/html/index.html was not created"
|
|
62
|
+
ls -la book/
|
|
63
|
+
exit 1
|
|
64
|
+
fi
|
|
65
|
+
echo "Build output verified: $(du -sh book/html)"
|
|
66
|
+
|
|
67
|
+
- name: Upload artifact
|
|
68
|
+
uses: actions/upload-pages-artifact@v3
|
|
69
|
+
with:
|
|
70
|
+
path: book/html
|
|
71
|
+
|
|
72
|
+
- name: Deploy to GitHub Pages
|
|
73
|
+
id: deployment
|
|
74
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
wheels:
|
|
13
|
+
strategy:
|
|
14
|
+
fail-fast: false
|
|
15
|
+
matrix:
|
|
16
|
+
include:
|
|
17
|
+
- os: ubuntu-latest
|
|
18
|
+
target: x86_64
|
|
19
|
+
manylinux: auto
|
|
20
|
+
- os: macos-latest
|
|
21
|
+
target: universal2-apple-darwin
|
|
22
|
+
runs-on: ${{ matrix.os }}
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v4
|
|
25
|
+
|
|
26
|
+
- uses: actions/setup-python@v5
|
|
27
|
+
with:
|
|
28
|
+
python-version: "3.11"
|
|
29
|
+
|
|
30
|
+
- name: Build wheel
|
|
31
|
+
uses: PyO3/maturin-action@v1
|
|
32
|
+
with:
|
|
33
|
+
target: ${{ matrix.target }}
|
|
34
|
+
args: --release --out dist
|
|
35
|
+
manylinux: ${{ matrix.manylinux || 'auto' }}
|
|
36
|
+
|
|
37
|
+
- name: Upload wheel artifact
|
|
38
|
+
uses: actions/upload-artifact@v4
|
|
39
|
+
with:
|
|
40
|
+
name: wheels-${{ matrix.os }}
|
|
41
|
+
path: dist/*.whl
|
|
42
|
+
|
|
43
|
+
native:
|
|
44
|
+
strategy:
|
|
45
|
+
fail-fast: false
|
|
46
|
+
matrix:
|
|
47
|
+
include:
|
|
48
|
+
- os: ubuntu-latest
|
|
49
|
+
name: linux-x64
|
|
50
|
+
lib: libseraplot.so
|
|
51
|
+
out: seraplot-linux-x64.so
|
|
52
|
+
- os: macos-latest
|
|
53
|
+
name: macos-x64
|
|
54
|
+
lib: libseraplot.dylib
|
|
55
|
+
out: seraplot-macos-x64.dylib
|
|
56
|
+
runs-on: ${{ matrix.os }}
|
|
57
|
+
steps:
|
|
58
|
+
- uses: actions/checkout@v4
|
|
59
|
+
|
|
60
|
+
- name: Build native cdylib (ffi + js)
|
|
61
|
+
run: cargo build --release --features ffi,js
|
|
62
|
+
|
|
63
|
+
- name: Rename artifact
|
|
64
|
+
run: cp target/release/${{ matrix.lib }} ${{ matrix.out }}
|
|
65
|
+
|
|
66
|
+
- name: Upload native artifact
|
|
67
|
+
uses: actions/upload-artifact@v4
|
|
68
|
+
with:
|
|
69
|
+
name: native-${{ matrix.name }}
|
|
70
|
+
path: ${{ matrix.out }}
|
|
71
|
+
|
|
72
|
+
release:
|
|
73
|
+
needs: [wheels, native]
|
|
74
|
+
runs-on: ubuntu-latest
|
|
75
|
+
steps:
|
|
76
|
+
- name: Download all artifacts
|
|
77
|
+
uses: actions/download-artifact@v4
|
|
78
|
+
with:
|
|
79
|
+
path: artifacts
|
|
80
|
+
|
|
81
|
+
- name: Flatten artifacts
|
|
82
|
+
run: |
|
|
83
|
+
mkdir -p out
|
|
84
|
+
find artifacts -type f -exec cp {} out/ \;
|
|
85
|
+
ls -la out
|
|
86
|
+
|
|
87
|
+
- name: Create / update GitHub release
|
|
88
|
+
uses: softprops/action-gh-release@v2
|
|
89
|
+
with:
|
|
90
|
+
files: out/*
|
|
91
|
+
name: SeraPlot ${{ github.ref_name }}
|
|
92
|
+
generate_release_notes: true
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
book/
|
|
2
|
+
target/
|
|
3
|
+
pkg/
|
|
4
|
+
*.lock
|
|
5
|
+
.env
|
|
6
|
+
.DS_Store
|
|
7
|
+
src/telemetry/
|
|
8
|
+
*.csv
|
|
9
|
+
v2/
|
|
10
|
+
tools/
|
|
11
|
+
python/seraplot/*.pyd
|
|
12
|
+
python/seraplot/*.pyd.bak
|
|
13
|
+
python/seraplot/*.pyd.old
|
|
14
|
+
python/seraplot/*.pdb
|
|
15
|
+
python/seraplot/__pycache__/
|
|
16
|
+
*.ipynb
|
|
17
|
+
.ipynb_checkpoints/
|
|
18
|
+
CAHIER_DES_CHARGES.md
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
26
|
+
overall community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or
|
|
31
|
+
advances of any kind
|
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
* Public or private harassment
|
|
34
|
+
* Publishing others' private information, such as a physical or email
|
|
35
|
+
address, without their explicit permission
|
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement Responsibilities
|
|
40
|
+
|
|
41
|
+
SeraPlot is maintained by a single person ([@feur25](https://github.com/feur25))
|
|
42
|
+
in their spare time, not a formal team. That one maintainer is responsible for
|
|
43
|
+
clarifying and enforcing our standards of acceptable behavior and will take
|
|
44
|
+
appropriate and fair corrective action in response to any behavior deemed
|
|
45
|
+
inappropriate, threatening, offensive, or harmful.
|
|
46
|
+
|
|
47
|
+
The maintainer has the right and responsibility to remove, edit, or reject
|
|
48
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
49
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
50
|
+
decisions when appropriate.
|
|
51
|
+
|
|
52
|
+
## Scope
|
|
53
|
+
|
|
54
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
55
|
+
an individual is officially representing the community in public spaces.
|
|
56
|
+
Examples of representing our community include using an official e-mail address,
|
|
57
|
+
posting via an official social media account, or acting as an appointed
|
|
58
|
+
representative at an online or offline event.
|
|
59
|
+
|
|
60
|
+
## Enforcement
|
|
61
|
+
|
|
62
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
63
|
+
reported by opening a GitHub issue on [feur25/Sera](https://github.com/feur25/Sera/issues)
|
|
64
|
+
(mark it clearly as a Code of Conduct report), or via the contact details on
|
|
65
|
+
the [Support & Contact](https://feur25.github.io/Sera/about/support.html) page
|
|
66
|
+
if you'd rather not report it publicly. All complaints will be reviewed and
|
|
67
|
+
investigated promptly and fairly.
|
|
68
|
+
|
|
69
|
+
The maintainer is obligated to respect the privacy and security of the
|
|
70
|
+
reporter of any incident.
|
|
71
|
+
|
|
72
|
+
## Enforcement Guidelines
|
|
73
|
+
|
|
74
|
+
The maintainer will follow these Community Impact Guidelines in determining
|
|
75
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
76
|
+
|
|
77
|
+
### 1. Correction
|
|
78
|
+
|
|
79
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
80
|
+
unprofessional or unwelcome in the community.
|
|
81
|
+
|
|
82
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
83
|
+
clarity around the nature of the violation and an explanation of why the
|
|
84
|
+
behavior was inappropriate. A public apology may be requested.
|
|
85
|
+
|
|
86
|
+
### 2. Warning
|
|
87
|
+
|
|
88
|
+
**Community Impact**: A violation through a single incident or series
|
|
89
|
+
of actions.
|
|
90
|
+
|
|
91
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
92
|
+
interaction with the people involved, including unsolicited interaction with
|
|
93
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
94
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
95
|
+
like social media. Violating these terms may lead to a temporary or
|
|
96
|
+
permanent ban.
|
|
97
|
+
|
|
98
|
+
### 3. Temporary Ban
|
|
99
|
+
|
|
100
|
+
**Community Impact**: A serious violation of community standards, including
|
|
101
|
+
sustained inappropriate behavior.
|
|
102
|
+
|
|
103
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
104
|
+
communication with the community for a specified period of time. No public or
|
|
105
|
+
private interaction with the people involved, including unsolicited interaction
|
|
106
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
107
|
+
Violating these terms may lead to a permanent ban.
|
|
108
|
+
|
|
109
|
+
### 4. Permanent Ban
|
|
110
|
+
|
|
111
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
112
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
113
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
114
|
+
|
|
115
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
|
116
|
+
the community.
|
|
117
|
+
|
|
118
|
+
## Attribution
|
|
119
|
+
|
|
120
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
121
|
+
version 2.0, available at
|
|
122
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
|
123
|
+
|
|
124
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
|
125
|
+
enforcement ladder](https://github.com/mozilla/diversity).
|
|
126
|
+
|
|
127
|
+
[homepage]: https://www.contributor-covenant.org
|
|
128
|
+
|
|
129
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
130
|
+
https://www.contributor-covenant.org/faq. Translations are available at
|
|
131
|
+
https://www.contributor-covenant.org/translations.
|