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.
Files changed (1185) hide show
  1. seraplot-2.8.2/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  2. seraplot-2.8.2/.github/ISSUE_TEMPLATE/custom.md +10 -0
  3. seraplot-2.8.2/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. seraplot-2.8.2/.github/workflows/mdbook.yml +74 -0
  5. seraplot-2.8.2/.github/workflows/release.yml +92 -0
  6. seraplot-2.8.2/.gitignore +18 -0
  7. seraplot-2.8.2/CODE_OF_CONDUCT.md +131 -0
  8. seraplot-2.8.2/Cargo.lock +6228 -0
  9. seraplot-2.8.2/Cargo.toml +84 -0
  10. seraplot-2.8.2/LICENSE +21 -0
  11. seraplot-2.8.2/PKG-INFO +13 -0
  12. seraplot-2.8.2/README.md +35 -0
  13. seraplot-2.8.2/SECURITY.md +73 -0
  14. seraplot-2.8.2/_py.rs +490 -0
  15. seraplot-2.8.2/asset/SVG World Map with labels.svg +3246 -0
  16. seraplot-2.8.2/asset/world.svg +1037 -0
  17. seraplot-2.8.2/bindings/alias_registry.rs +111 -0
  18. seraplot-2.8.2/bindings/chart_ffi.rs +260 -0
  19. seraplot-2.8.2/bindings/chart_methods/apply.rs +1047 -0
  20. seraplot-2.8.2/bindings/chart_methods/compose.rs +296 -0
  21. seraplot-2.8.2/bindings/chart_methods/extras.rs +192 -0
  22. seraplot-2.8.2/bindings/chart_methods/interactive.rs +17 -0
  23. seraplot-2.8.2/bindings/chart_methods/js.rs +227 -0
  24. seraplot-2.8.2/bindings/chart_methods/layout.rs +76 -0
  25. seraplot-2.8.2/bindings/chart_methods/methods.rs +3147 -0
  26. seraplot-2.8.2/bindings/chart_methods/mod.rs +13 -0
  27. seraplot-2.8.2/bindings/chart_methods/pages.rs +299 -0
  28. seraplot-2.8.2/bindings/chart_types.rs +90 -0
  29. seraplot-2.8.2/bindings/commands/mod.rs +9 -0
  30. seraplot-2.8.2/bindings/commands/registry.rs +1 -0
  31. seraplot-2.8.2/bindings/doc_registry.rs +30 -0
  32. seraplot-2.8.2/bindings/exports.rs +42 -0
  33. seraplot-2.8.2/bindings/fn_registry.rs +25 -0
  34. seraplot-2.8.2/bindings/live_stream.rs +250 -0
  35. seraplot-2.8.2/bindings/macros/src/class.rs +479 -0
  36. seraplot-2.8.2/bindings/macros/src/doc.rs +245 -0
  37. seraplot-2.8.2/bindings/macros/src/lib.rs +83 -0
  38. seraplot-2.8.2/bindings/macros/src/util.rs +193 -0
  39. seraplot-2.8.2/bindings/method_registry.rs +23 -0
  40. seraplot-2.8.2/bindings/mod.rs +30 -0
  41. seraplot-2.8.2/bindings/registry_macro.rs +32 -0
  42. seraplot-2.8.2/bindings/utils/compact_state.rs +85 -0
  43. seraplot-2.8.2/bindings/utils/data_processor.rs +136 -0
  44. seraplot-2.8.2/bindings/utils/image_processor.rs +31 -0
  45. seraplot-2.8.2/bindings/utils/lazy_builders.rs +77 -0
  46. seraplot-2.8.2/book.toml +28 -0
  47. seraplot-2.8.2/build.rs +84 -0
  48. seraplot-2.8.2/core/dispatch.rs +225 -0
  49. seraplot-2.8.2/core/mod.rs +13 -0
  50. seraplot-2.8.2/core/telemetry.rs +641 -0
  51. seraplot-2.8.2/docs/gen/bindings.rs +721 -0
  52. seraplot-2.8.2/docs/gen/common.rs +841 -0
  53. seraplot-2.8.2/docs/gen/ml_docs.rs +667 -0
  54. seraplot-2.8.2/docs/gen/plot_docs.rs +865 -0
  55. seraplot-2.8.2/docs/gen/registry.rs +102 -0
  56. seraplot-2.8.2/lib.rs +1751 -0
  57. seraplot-2.8.2/playground_server.py +187 -0
  58. seraplot-2.8.2/pyproject.toml +21 -0
  59. seraplot-2.8.2/python/seraplot/__init__.py +290 -0
  60. seraplot-2.8.2/services/data/dframe/aggregate/mod.rs +2 -0
  61. seraplot-2.8.2/services/data/dframe/aggregate/reduce.rs +259 -0
  62. seraplot-2.8.2/services/data/dframe/aggregate/stats.rs +481 -0
  63. seraplot-2.8.2/services/data/dframe/attrs.rs +75 -0
  64. seraplot-2.8.2/services/data/dframe/combine/combine.rs +298 -0
  65. seraplot-2.8.2/services/data/dframe/combine/mod.rs +3 -0
  66. seraplot-2.8.2/services/data/dframe/combine/relational.rs +355 -0
  67. seraplot-2.8.2/services/data/dframe/combine/reshape.rs +161 -0
  68. seraplot-2.8.2/services/data/dframe/construct/builder.rs +51 -0
  69. seraplot-2.8.2/services/data/dframe/construct/construct.rs +630 -0
  70. seraplot-2.8.2/services/data/dframe/construct/mod.rs +2 -0
  71. seraplot-2.8.2/services/data/dframe/groupby.rs +427 -0
  72. seraplot-2.8.2/services/data/dframe/mod.rs +100 -0
  73. seraplot-2.8.2/services/data/dframe/scale/bigdata.rs +207 -0
  74. seraplot-2.8.2/services/data/dframe/scale/chartbridge.rs +53 -0
  75. seraplot-2.8.2/services/data/dframe/scale/mod.rs +2 -0
  76. seraplot-2.8.2/services/data/dframe/select/filter.rs +353 -0
  77. seraplot-2.8.2/services/data/dframe/select/mask.rs +122 -0
  78. seraplot-2.8.2/services/data/dframe/select/mod.rs +3 -0
  79. seraplot-2.8.2/services/data/dframe/select/query.rs +143 -0
  80. seraplot-2.8.2/services/data/dframe/series.rs +306 -0
  81. seraplot-2.8.2/services/data/dframe/tools.rs +65 -0
  82. seraplot-2.8.2/services/data/dframe/transform/datetime.rs +254 -0
  83. seraplot-2.8.2/services/data/dframe/transform/derive.rs +362 -0
  84. seraplot-2.8.2/services/data/dframe/transform/elementwise.rs +197 -0
  85. seraplot-2.8.2/services/data/dframe/transform/mod.rs +4 -0
  86. seraplot-2.8.2/services/data/dframe/transform/strings.rs +272 -0
  87. seraplot-2.8.2/services/data/dframe/window/mod.rs +2 -0
  88. seraplot-2.8.2/services/data/dframe/window/resample.rs +60 -0
  89. seraplot-2.8.2/services/data/dframe/window/rolling.rs +183 -0
  90. seraplot-2.8.2/services/data/generic/loader.rs +129 -0
  91. seraplot-2.8.2/services/data/generic/mod.rs +2 -0
  92. seraplot-2.8.2/services/data/mod.rs +15 -0
  93. seraplot-2.8.2/services/data/py_dataset.rs +140 -0
  94. seraplot-2.8.2/services/data/table/agg.rs +266 -0
  95. seraplot-2.8.2/services/data/table/construct.rs +121 -0
  96. seraplot-2.8.2/services/data/table/filter.rs +87 -0
  97. seraplot-2.8.2/services/data/table/mod.rs +162 -0
  98. seraplot-2.8.2/services/data/table/tools.rs +44 -0
  99. seraplot-2.8.2/services/data/table/transform.rs +164 -0
  100. seraplot-2.8.2/services/ml/bindings/anomaly.rs +37 -0
  101. seraplot-2.8.2/services/ml/bindings/clustering.rs +83 -0
  102. seraplot-2.8.2/services/ml/bindings/decomposition.rs +58 -0
  103. seraplot-2.8.2/services/ml/bindings/ensemble.rs +175 -0
  104. seraplot-2.8.2/services/ml/bindings/helpers.rs +113 -0
  105. seraplot-2.8.2/services/ml/bindings/importance.rs +49 -0
  106. seraplot-2.8.2/services/ml/bindings/linear.rs +218 -0
  107. seraplot-2.8.2/services/ml/bindings/metrics.rs +190 -0
  108. seraplot-2.8.2/services/ml/bindings/model_selection.rs +119 -0
  109. seraplot-2.8.2/services/ml/bindings/naive_bayes.rs +65 -0
  110. seraplot-2.8.2/services/ml/bindings/neighbors.rs +65 -0
  111. seraplot-2.8.2/services/ml/bindings/persistence.rs +57 -0
  112. seraplot-2.8.2/services/ml/bindings/preprocessing.rs +217 -0
  113. seraplot-2.8.2/services/ml/bindings/svm.rs +48 -0
  114. seraplot-2.8.2/services/ml/bindings/tree.rs +72 -0
  115. seraplot-2.8.2/services/ml/cache.rs +582 -0
  116. seraplot-2.8.2/services/ml/linear/ols.rs +178 -0
  117. seraplot-2.8.2/services/ml/linear/ridge.rs +355 -0
  118. seraplot-2.8.2/services/ml/mod.rs +48 -0
  119. seraplot-2.8.2/services/ml/model_selection/grid_search.rs +2050 -0
  120. seraplot-2.8.2/services/ml/registry/mod.rs +186 -0
  121. seraplot-2.8.2/services/mod.rs +3 -0
  122. seraplot-2.8.2/services/plot/canvas.rs +152 -0
  123. seraplot-2.8.2/services/plot/canvas_points.rs +244 -0
  124. seraplot-2.8.2/services/plot/chart_input/annotate.rs +107 -0
  125. seraplot-2.8.2/services/plot/chart_input/html.rs +342 -0
  126. seraplot-2.8.2/services/plot/chart_input/mod.rs +9 -0
  127. seraplot-2.8.2/services/plot/chart_input/parse.rs +139 -0
  128. seraplot-2.8.2/services/plot/chart_input/types.rs +454 -0
  129. seraplot-2.8.2/services/plot/controller/chart_controller.rs +356 -0
  130. seraplot-2.8.2/services/plot/controller/plot_3d_controller.rs +473 -0
  131. seraplot-2.8.2/services/plot/dashboard/anchors.rs +260 -0
  132. seraplot-2.8.2/services/plot/dashboard/canvas_build.rs +299 -0
  133. seraplot-2.8.2/services/plot/dashboard/canvas_core.rs +328 -0
  134. seraplot-2.8.2/services/plot/dashboard/canvas_index.rs +114 -0
  135. seraplot-2.8.2/services/plot/dashboard/canvas_links.rs +109 -0
  136. seraplot-2.8.2/services/plot/dashboard/canvas_persistence.rs +28 -0
  137. seraplot-2.8.2/services/plot/dashboard/canvas_pins.rs +196 -0
  138. seraplot-2.8.2/services/plot/dashboard/canvas_placement.rs +229 -0
  139. seraplot-2.8.2/services/plot/dashboard/canvas_shapes.rs +552 -0
  140. seraplot-2.8.2/services/plot/dashboard/dashboard_tests.rs +102 -0
  141. seraplot-2.8.2/services/plot/dashboard/element.rs +254 -0
  142. seraplot-2.8.2/services/plot/dashboard/geometry.rs +110 -0
  143. seraplot-2.8.2/services/plot/dashboard/html_util.rs +36 -0
  144. seraplot-2.8.2/services/plot/dashboard/mod.rs +24 -0
  145. seraplot-2.8.2/services/plot/dashboard/render.rs +744 -0
  146. seraplot-2.8.2/services/plot/decimate.rs +181 -0
  147. seraplot-2.8.2/services/plot/default/_3d/bar_3d.rs +182 -0
  148. seraplot-2.8.2/services/plot/default/_3d/line_3d.rs +159 -0
  149. seraplot-2.8.2/services/plot/default/_3d/plot_3d_types.rs +137 -0
  150. seraplot-2.8.2/services/plot/default/_3d/scatter_3d.rs +171 -0
  151. seraplot-2.8.2/services/plot/default/bar.rs +536 -0
  152. seraplot-2.8.2/services/plot/default/chart.rs +81 -0
  153. seraplot-2.8.2/services/plot/default/kmeans.rs +1718 -0
  154. seraplot-2.8.2/services/plot/default/line.rs +407 -0
  155. seraplot-2.8.2/services/plot/default/scatter.rs +2365 -0
  156. seraplot-2.8.2/services/plot/family_macro.rs +119 -0
  157. seraplot-2.8.2/services/plot/html/assets.rs +271 -0
  158. seraplot-2.8.2/services/plot/html/hover.rs +924 -0
  159. seraplot-2.8.2/services/plot/html/js_3d.rs +1679 -0
  160. seraplot-2.8.2/services/plot/layout.rs +182 -0
  161. seraplot-2.8.2/services/plot/map/_3d/globe.rs +265 -0
  162. seraplot-2.8.2/services/plot/map/_3d/globe_html.rs +79 -0
  163. seraplot-2.8.2/services/plot/map/_3d/globe_types.rs +62 -0
  164. seraplot-2.8.2/services/plot/map/chart.rs +47 -0
  165. seraplot-2.8.2/services/plot/map/world_data.rs +202 -0
  166. seraplot-2.8.2/services/plot/mod.rs +41 -0
  167. seraplot-2.8.2/services/plot/scene3d.rs +77 -0
  168. seraplot-2.8.2/services/plot/seaborn/_3d/bar_3d.rs +68 -0
  169. seraplot-2.8.2/services/plot/seaborn/_3d/line_3d.rs +30 -0
  170. seraplot-2.8.2/services/plot/seaborn/_3d/plot_3d_types.rs +137 -0
  171. seraplot-2.8.2/services/plot/seaborn/_3d/scatter_3d.rs +36 -0
  172. seraplot-2.8.2/services/plot/seaborn/chart.rs +65 -0
  173. seraplot-2.8.2/services/plot/statistical/_3d/bar3d/mod.rs +99 -0
  174. seraplot-2.8.2/services/plot/statistical/_3d/bubble3d.rs +57 -0
  175. seraplot-2.8.2/services/plot/statistical/_3d/candlestick3d.rs +91 -0
  176. seraplot-2.8.2/services/plot/statistical/_3d/dumbbell3d.rs +89 -0
  177. seraplot-2.8.2/services/plot/statistical/_3d/funnel3d.rs +76 -0
  178. seraplot-2.8.2/services/plot/statistical/_3d/heatmap3d.rs +87 -0
  179. seraplot-2.8.2/services/plot/statistical/_3d/isosurface.rs +354 -0
  180. seraplot-2.8.2/services/plot/statistical/_3d/kde3d.rs +116 -0
  181. seraplot-2.8.2/services/plot/statistical/_3d/lollipop3d.rs +71 -0
  182. seraplot-2.8.2/services/plot/statistical/_3d/mesh3d.rs +510 -0
  183. seraplot-2.8.2/services/plot/statistical/_3d/mod.rs +54 -0
  184. seraplot-2.8.2/services/plot/statistical/_3d/pie3d.rs +74 -0
  185. seraplot-2.8.2/services/plot/statistical/_3d/plot_3d_types.rs +18 -0
  186. seraplot-2.8.2/services/plot/statistical/_3d/radar3d.rs +109 -0
  187. seraplot-2.8.2/services/plot/statistical/_3d/ridgeline3d.rs +112 -0
  188. seraplot-2.8.2/services/plot/statistical/_3d/stacked_bar3d.rs +96 -0
  189. seraplot-2.8.2/services/plot/statistical/_3d/streamtube.rs +359 -0
  190. seraplot-2.8.2/services/plot/statistical/_3d/sunburst3d.rs +88 -0
  191. seraplot-2.8.2/services/plot/statistical/_3d/violin3d.rs +116 -0
  192. seraplot-2.8.2/services/plot/statistical/arc_diagram/basic.rs +138 -0
  193. seraplot-2.8.2/services/plot/statistical/arc_diagram/config.rs +20 -0
  194. seraplot-2.8.2/services/plot/statistical/arc_diagram/mod.rs +50 -0
  195. seraplot-2.8.2/services/plot/statistical/arc_diagram/variant.rs +9 -0
  196. seraplot-2.8.2/services/plot/statistical/area/basic.rs +10 -0
  197. seraplot-2.8.2/services/plot/statistical/area/common.rs +393 -0
  198. seraplot-2.8.2/services/plot/statistical/area/config.rs +14 -0
  199. seraplot-2.8.2/services/plot/statistical/area/gradient.rs +10 -0
  200. seraplot-2.8.2/services/plot/statistical/area/mod.rs +98 -0
  201. seraplot-2.8.2/services/plot/statistical/area/percent.rs +10 -0
  202. seraplot-2.8.2/services/plot/statistical/area/ribbon.rs +10 -0
  203. seraplot-2.8.2/services/plot/statistical/area/spline.rs +10 -0
  204. seraplot-2.8.2/services/plot/statistical/area/stacked.rs +10 -0
  205. seraplot-2.8.2/services/plot/statistical/area/step.rs +10 -0
  206. seraplot-2.8.2/services/plot/statistical/area/variant.rs +12 -0
  207. seraplot-2.8.2/services/plot/statistical/area/wave.rs +10 -0
  208. seraplot-2.8.2/services/plot/statistical/bar/basic.rs +46 -0
  209. seraplot-2.8.2/services/plot/statistical/bar/block3d.rs +24 -0
  210. seraplot-2.8.2/services/plot/statistical/bar/circular.rs +10 -0
  211. seraplot-2.8.2/services/plot/statistical/bar/circular_common.rs +161 -0
  212. seraplot-2.8.2/services/plot/statistical/bar/circular_grouped.rs +10 -0
  213. seraplot-2.8.2/services/plot/statistical/bar/deluxe.rs +222 -0
  214. seraplot-2.8.2/services/plot/statistical/bar/distribution.rs +138 -0
  215. seraplot-2.8.2/services/plot/statistical/bar/diverging.rs +155 -0
  216. seraplot-2.8.2/services/plot/statistical/bar/grouped.rs +59 -0
  217. seraplot-2.8.2/services/plot/statistical/bar/grouped_stacked.rs +161 -0
  218. seraplot-2.8.2/services/plot/statistical/bar/marimekko.rs +168 -0
  219. seraplot-2.8.2/services/plot/statistical/bar/mod.rs +180 -0
  220. seraplot-2.8.2/services/plot/statistical/bar/multicategory.rs +203 -0
  221. seraplot-2.8.2/services/plot/statistical/bar/pictogram.rs +141 -0
  222. seraplot-2.8.2/services/plot/statistical/bar/population_pyramid.rs +172 -0
  223. seraplot-2.8.2/services/plot/statistical/bar/prism.rs +215 -0
  224. seraplot-2.8.2/services/plot/statistical/bar/relative.rs +177 -0
  225. seraplot-2.8.2/services/plot/statistical/bar/stacked.rs +9 -0
  226. seraplot-2.8.2/services/plot/statistical/bar/variant.rs +18 -0
  227. seraplot-2.8.2/services/plot/statistical/boxplot/basic.rs +107 -0
  228. seraplot-2.8.2/services/plot/statistical/boxplot/common.rs +442 -0
  229. seraplot-2.8.2/services/plot/statistical/boxplot/config.rs +34 -0
  230. seraplot-2.8.2/services/plot/statistical/boxplot/horizontal.rs +178 -0
  231. seraplot-2.8.2/services/plot/statistical/boxplot/letter_value.rs +121 -0
  232. seraplot-2.8.2/services/plot/statistical/boxplot/mod.rs +121 -0
  233. seraplot-2.8.2/services/plot/statistical/boxplot/outliers.rs +7 -0
  234. seraplot-2.8.2/services/plot/statistical/boxplot/strip.rs +95 -0
  235. seraplot-2.8.2/services/plot/statistical/boxplot/swarm.rs +102 -0
  236. seraplot-2.8.2/services/plot/statistical/boxplot/variant.rs +14 -0
  237. seraplot-2.8.2/services/plot/statistical/bubble/basic.rs +60 -0
  238. seraplot-2.8.2/services/plot/statistical/bubble/common.rs +118 -0
  239. seraplot-2.8.2/services/plot/statistical/bubble/config.rs +44 -0
  240. seraplot-2.8.2/services/plot/statistical/bubble/labeled.rs +101 -0
  241. seraplot-2.8.2/services/plot/statistical/bubble/mod.rs +129 -0
  242. seraplot-2.8.2/services/plot/statistical/bubble/outlined.rs +101 -0
  243. seraplot-2.8.2/services/plot/statistical/bubble/split.rs +217 -0
  244. seraplot-2.8.2/services/plot/statistical/bubble/variant.rs +10 -0
  245. seraplot-2.8.2/services/plot/statistical/bullet/basic.rs +77 -0
  246. seraplot-2.8.2/services/plot/statistical/bullet/common.rs +177 -0
  247. seraplot-2.8.2/services/plot/statistical/bullet/compare.rs +83 -0
  248. seraplot-2.8.2/services/plot/statistical/bullet/config.rs +22 -0
  249. seraplot-2.8.2/services/plot/statistical/bullet/dot.rs +71 -0
  250. seraplot-2.8.2/services/plot/statistical/bullet/minimal.rs +65 -0
  251. seraplot-2.8.2/services/plot/statistical/bullet/mod.rs +63 -0
  252. seraplot-2.8.2/services/plot/statistical/bullet/progress.rs +76 -0
  253. seraplot-2.8.2/services/plot/statistical/bullet/segmented.rs +71 -0
  254. seraplot-2.8.2/services/plot/statistical/bullet/stacked.rs +71 -0
  255. seraplot-2.8.2/services/plot/statistical/bullet/thermo.rs +125 -0
  256. seraplot-2.8.2/services/plot/statistical/bullet/variant.rs +12 -0
  257. seraplot-2.8.2/services/plot/statistical/candlestick/common.rs +235 -0
  258. seraplot-2.8.2/services/plot/statistical/candlestick/config.rs +22 -0
  259. seraplot-2.8.2/services/plot/statistical/candlestick/mod.rs +85 -0
  260. seraplot-2.8.2/services/plot/statistical/candlestick/variant.rs +13 -0
  261. seraplot-2.8.2/services/plot/statistical/candlestick/volume.rs +112 -0
  262. seraplot-2.8.2/services/plot/statistical/chart_registry.rs +70 -0
  263. seraplot-2.8.2/services/plot/statistical/chord/basic.rs +138 -0
  264. seraplot-2.8.2/services/plot/statistical/chord/common.rs +103 -0
  265. seraplot-2.8.2/services/plot/statistical/chord/config.rs +20 -0
  266. seraplot-2.8.2/services/plot/statistical/chord/directed.rs +6 -0
  267. seraplot-2.8.2/services/plot/statistical/chord/mod.rs +49 -0
  268. seraplot-2.8.2/services/plot/statistical/chord/mono.rs +11 -0
  269. seraplot-2.8.2/services/plot/statistical/chord/variant.rs +9 -0
  270. seraplot-2.8.2/services/plot/statistical/circle_pack/basic.rs +166 -0
  271. seraplot-2.8.2/services/plot/statistical/circle_pack/bubble.rs +196 -0
  272. seraplot-2.8.2/services/plot/statistical/circle_pack/common.rs +176 -0
  273. seraplot-2.8.2/services/plot/statistical/circle_pack/config.rs +20 -0
  274. seraplot-2.8.2/services/plot/statistical/circle_pack/flat.rs +69 -0
  275. seraplot-2.8.2/services/plot/statistical/circle_pack/mod.rs +55 -0
  276. seraplot-2.8.2/services/plot/statistical/circle_pack/variant.rs +9 -0
  277. seraplot-2.8.2/services/plot/statistical/common.rs +834 -0
  278. seraplot-2.8.2/services/plot/statistical/correlogram/circle.rs +7 -0
  279. seraplot-2.8.2/services/plot/statistical/correlogram/circle_legend.rs +9 -0
  280. seraplot-2.8.2/services/plot/statistical/correlogram/common.rs +288 -0
  281. seraplot-2.8.2/services/plot/statistical/correlogram/config.rs +22 -0
  282. seraplot-2.8.2/services/plot/statistical/correlogram/ellipse.rs +9 -0
  283. seraplot-2.8.2/services/plot/statistical/correlogram/heatmap.rs +7 -0
  284. seraplot-2.8.2/services/plot/statistical/correlogram/mixed.rs +7 -0
  285. seraplot-2.8.2/services/plot/statistical/correlogram/mod.rs +63 -0
  286. seraplot-2.8.2/services/plot/statistical/correlogram/pie_square.rs +9 -0
  287. seraplot-2.8.2/services/plot/statistical/correlogram/text.rs +7 -0
  288. seraplot-2.8.2/services/plot/statistical/correlogram/variant.rs +11 -0
  289. seraplot-2.8.2/services/plot/statistical/dendrogram/common.rs +783 -0
  290. seraplot-2.8.2/services/plot/statistical/dendrogram/compact.rs +7 -0
  291. seraplot-2.8.2/services/plot/statistical/dendrogram/config.rs +22 -0
  292. seraplot-2.8.2/services/plot/statistical/dendrogram/elegant.rs +7 -0
  293. seraplot-2.8.2/services/plot/statistical/dendrogram/horizontal.rs +7 -0
  294. seraplot-2.8.2/services/plot/statistical/dendrogram/mod.rs +57 -0
  295. seraplot-2.8.2/services/plot/statistical/dendrogram/radial.rs +7 -0
  296. seraplot-2.8.2/services/plot/statistical/dendrogram/triangular.rs +7 -0
  297. seraplot-2.8.2/services/plot/statistical/dendrogram/variant.rs +10 -0
  298. seraplot-2.8.2/services/plot/statistical/dendrogram/vertical.rs +7 -0
  299. seraplot-2.8.2/services/plot/statistical/dumbbell/basic.rs +37 -0
  300. seraplot-2.8.2/services/plot/statistical/dumbbell/common.rs +164 -0
  301. seraplot-2.8.2/services/plot/statistical/dumbbell/config.rs +20 -0
  302. seraplot-2.8.2/services/plot/statistical/dumbbell/glow.rs +50 -0
  303. seraplot-2.8.2/services/plot/statistical/dumbbell/mod.rs +79 -0
  304. seraplot-2.8.2/services/plot/statistical/dumbbell/ranked.rs +54 -0
  305. seraplot-2.8.2/services/plot/statistical/dumbbell/variant.rs +11 -0
  306. seraplot-2.8.2/services/plot/statistical/eventplot/basic.rs +42 -0
  307. seraplot-2.8.2/services/plot/statistical/eventplot/common.rs +94 -0
  308. seraplot-2.8.2/services/plot/statistical/eventplot/config.rs +16 -0
  309. seraplot-2.8.2/services/plot/statistical/eventplot/connected.rs +59 -0
  310. seraplot-2.8.2/services/plot/statistical/eventplot/density.rs +81 -0
  311. seraplot-2.8.2/services/plot/statistical/eventplot/mod.rs +53 -0
  312. seraplot-2.8.2/services/plot/statistical/eventplot/variant.rs +7 -0
  313. seraplot-2.8.2/services/plot/statistical/facet/basic.rs +56 -0
  314. seraplot-2.8.2/services/plot/statistical/facet/faceted_histogram.rs +8 -0
  315. seraplot-2.8.2/services/plot/statistical/facet/faceted_lineplot.rs +8 -0
  316. seraplot-2.8.2/services/plot/statistical/facet/many_facets.rs +8 -0
  317. seraplot-2.8.2/services/plot/statistical/facet/mod.rs +166 -0
  318. seraplot-2.8.2/services/plot/statistical/facet/multiple_conditional_kde.rs +9 -0
  319. seraplot-2.8.2/services/plot/statistical/facet/three_variable_histogram.rs +8 -0
  320. seraplot-2.8.2/services/plot/statistical/funnel/common.rs +140 -0
  321. seraplot-2.8.2/services/plot/statistical/funnel/compare.rs +167 -0
  322. seraplot-2.8.2/services/plot/statistical/funnel/config.rs +22 -0
  323. seraplot-2.8.2/services/plot/statistical/funnel/conversion.rs +83 -0
  324. seraplot-2.8.2/services/plot/statistical/funnel/grouped.rs +160 -0
  325. seraplot-2.8.2/services/plot/statistical/funnel/mod.rs +93 -0
  326. seraplot-2.8.2/services/plot/statistical/funnel/variant.rs +13 -0
  327. seraplot-2.8.2/services/plot/statistical/gantt/basic.rs +39 -0
  328. seraplot-2.8.2/services/plot/statistical/gantt/common.rs +149 -0
  329. seraplot-2.8.2/services/plot/statistical/gantt/config.rs +22 -0
  330. seraplot-2.8.2/services/plot/statistical/gantt/milestone.rs +66 -0
  331. seraplot-2.8.2/services/plot/statistical/gantt/mod.rs +67 -0
  332. seraplot-2.8.2/services/plot/statistical/gantt/progress.rs +71 -0
  333. seraplot-2.8.2/services/plot/statistical/gantt/variant.rs +7 -0
  334. seraplot-2.8.2/services/plot/statistical/gauge/arc270.rs +74 -0
  335. seraplot-2.8.2/services/plot/statistical/gauge/basic.rs +97 -0
  336. seraplot-2.8.2/services/plot/statistical/gauge/common.rs +178 -0
  337. seraplot-2.8.2/services/plot/statistical/gauge/concentric.rs +101 -0
  338. seraplot-2.8.2/services/plot/statistical/gauge/config.rs +24 -0
  339. seraplot-2.8.2/services/plot/statistical/gauge/glow.rs +73 -0
  340. seraplot-2.8.2/services/plot/statistical/gauge/mod.rs +64 -0
  341. seraplot-2.8.2/services/plot/statistical/gauge/radial.rs +65 -0
  342. seraplot-2.8.2/services/plot/statistical/gauge/segmented.rs +61 -0
  343. seraplot-2.8.2/services/plot/statistical/gauge/sleek.rs +66 -0
  344. seraplot-2.8.2/services/plot/statistical/gauge/sparkline.rs +181 -0
  345. seraplot-2.8.2/services/plot/statistical/gauge/tick.rs +104 -0
  346. seraplot-2.8.2/services/plot/statistical/gauge/variant.rs +13 -0
  347. seraplot-2.8.2/services/plot/statistical/grouped_bar.rs +492 -0
  348. seraplot-2.8.2/services/plot/statistical/heatmap/bubble.rs +174 -0
  349. seraplot-2.8.2/services/plot/statistical/heatmap/cluster.rs +196 -0
  350. seraplot-2.8.2/services/plot/statistical/heatmap/common.rs +792 -0
  351. seraplot-2.8.2/services/plot/statistical/heatmap/config.rs +78 -0
  352. seraplot-2.8.2/services/plot/statistical/heatmap/marginal.rs +188 -0
  353. seraplot-2.8.2/services/plot/statistical/heatmap/mod.rs +143 -0
  354. seraplot-2.8.2/services/plot/statistical/heatmap/pivot.rs +230 -0
  355. seraplot-2.8.2/services/plot/statistical/heatmap/polar.rs +241 -0
  356. seraplot-2.8.2/services/plot/statistical/heatmap/variant.rs +20 -0
  357. seraplot-2.8.2/services/plot/statistical/hexbin/basic.rs +26 -0
  358. seraplot-2.8.2/services/plot/statistical/hexbin/common.rs +560 -0
  359. seraplot-2.8.2/services/plot/statistical/hexbin/config.rs +22 -0
  360. seraplot-2.8.2/services/plot/statistical/hexbin/dotted.rs +28 -0
  361. seraplot-2.8.2/services/plot/statistical/hexbin/highlight.rs +33 -0
  362. seraplot-2.8.2/services/plot/statistical/hexbin/log_counts.rs +28 -0
  363. seraplot-2.8.2/services/plot/statistical/hexbin/marginals.rs +78 -0
  364. seraplot-2.8.2/services/plot/statistical/hexbin/mincnt.rs +31 -0
  365. seraplot-2.8.2/services/plot/statistical/hexbin/mod.rs +70 -0
  366. seraplot-2.8.2/services/plot/statistical/hexbin/nested.rs +27 -0
  367. seraplot-2.8.2/services/plot/statistical/hexbin/outlined.rs +27 -0
  368. seraplot-2.8.2/services/plot/statistical/hexbin/spaced.rs +26 -0
  369. seraplot-2.8.2/services/plot/statistical/hexbin/variant.rs +14 -0
  370. seraplot-2.8.2/services/plot/statistical/hexbin/weighted.rs +30 -0
  371. seraplot-2.8.2/services/plot/statistical/histogram/basic.rs +153 -0
  372. seraplot-2.8.2/services/plot/statistical/histogram/config.rs +38 -0
  373. seraplot-2.8.2/services/plot/statistical/histogram/cumulative.rs +128 -0
  374. seraplot-2.8.2/services/plot/statistical/histogram/deluxe.rs +150 -0
  375. seraplot-2.8.2/services/plot/statistical/histogram/horizontal.rs +105 -0
  376. seraplot-2.8.2/services/plot/statistical/histogram/mod.rs +157 -0
  377. seraplot-2.8.2/services/plot/statistical/histogram/normalized.rs +162 -0
  378. seraplot-2.8.2/services/plot/statistical/histogram/overlay.rs +165 -0
  379. seraplot-2.8.2/services/plot/statistical/histogram/stacked.rs +154 -0
  380. seraplot-2.8.2/services/plot/statistical/histogram/step.rs +120 -0
  381. seraplot-2.8.2/services/plot/statistical/histogram/variant.rs +11 -0
  382. seraplot-2.8.2/services/plot/statistical/hive/basic.rs +192 -0
  383. seraplot-2.8.2/services/plot/statistical/hive/config.rs +28 -0
  384. seraplot-2.8.2/services/plot/statistical/hive/mod.rs +61 -0
  385. seraplot-2.8.2/services/plot/statistical/hive/variant.rs +9 -0
  386. seraplot-2.8.2/services/plot/statistical/icicle/basic.rs +32 -0
  387. seraplot-2.8.2/services/plot/statistical/icicle/common.rs +313 -0
  388. seraplot-2.8.2/services/plot/statistical/icicle/config.rs +16 -0
  389. seraplot-2.8.2/services/plot/statistical/icicle/gapped.rs +39 -0
  390. seraplot-2.8.2/services/plot/statistical/icicle/horizontal.rs +45 -0
  391. seraplot-2.8.2/services/plot/statistical/icicle/mod.rs +51 -0
  392. seraplot-2.8.2/services/plot/statistical/icicle/radial.rs +215 -0
  393. seraplot-2.8.2/services/plot/statistical/icicle/rank.rs +52 -0
  394. seraplot-2.8.2/services/plot/statistical/icicle/variant.rs +9 -0
  395. seraplot-2.8.2/services/plot/statistical/joint/basic.rs +123 -0
  396. seraplot-2.8.2/services/plot/statistical/joint/common.rs +120 -0
  397. seraplot-2.8.2/services/plot/statistical/joint/hexbin_kde.rs +8 -0
  398. seraplot-2.8.2/services/plot/statistical/joint/hexbin_outlined_kde.rs +8 -0
  399. seraplot-2.8.2/services/plot/statistical/joint/kde_histogram.rs +8 -0
  400. seraplot-2.8.2/services/plot/statistical/joint/layered_bivariate.rs +8 -0
  401. seraplot-2.8.2/services/plot/statistical/joint/mod.rs +108 -0
  402. seraplot-2.8.2/services/plot/statistical/joint/scatter_bar.rs +8 -0
  403. seraplot-2.8.2/services/plot/statistical/joint/variant.rs +32 -0
  404. seraplot-2.8.2/services/plot/statistical/kde/basic.rs +117 -0
  405. seraplot-2.8.2/services/plot/statistical/kde/config.rs +26 -0
  406. seraplot-2.8.2/services/plot/statistical/kde/contour.rs +211 -0
  407. seraplot-2.8.2/services/plot/statistical/kde/cumulative.rs +99 -0
  408. seraplot-2.8.2/services/plot/statistical/kde/fill.rs +106 -0
  409. seraplot-2.8.2/services/plot/statistical/kde/histogram.rs +125 -0
  410. seraplot-2.8.2/services/plot/statistical/kde/levels.rs +206 -0
  411. seraplot-2.8.2/services/plot/statistical/kde/mod.rs +115 -0
  412. seraplot-2.8.2/services/plot/statistical/kde/normalized.rs +126 -0
  413. seraplot-2.8.2/services/plot/statistical/kde/outline.rs +80 -0
  414. seraplot-2.8.2/services/plot/statistical/kde/rug.rs +153 -0
  415. seraplot-2.8.2/services/plot/statistical/kde/stack.rs +107 -0
  416. seraplot-2.8.2/services/plot/statistical/kde/stepped.rs +102 -0
  417. seraplot-2.8.2/services/plot/statistical/kde/variant.rs +15 -0
  418. seraplot-2.8.2/services/plot/statistical/line/band.rs +167 -0
  419. seraplot-2.8.2/services/plot/statistical/line/basic.rs +27 -0
  420. seraplot-2.8.2/services/plot/statistical/line/connected_scatter.rs +146 -0
  421. seraplot-2.8.2/services/plot/statistical/line/dashed.rs +137 -0
  422. seraplot-2.8.2/services/plot/statistical/line/filled.rs +189 -0
  423. seraplot-2.8.2/services/plot/statistical/line/gapped.rs +183 -0
  424. seraplot-2.8.2/services/plot/statistical/line/mod.rs +164 -0
  425. seraplot-2.8.2/services/plot/statistical/line/sparkline.rs +150 -0
  426. seraplot-2.8.2/services/plot/statistical/line/spline.rs +134 -0
  427. seraplot-2.8.2/services/plot/statistical/line/stepped.rs +165 -0
  428. seraplot-2.8.2/services/plot/statistical/line/variant.rs +14 -0
  429. seraplot-2.8.2/services/plot/statistical/lollipop/basic.rs +74 -0
  430. seraplot-2.8.2/services/plot/statistical/lollipop/circular.rs +98 -0
  431. seraplot-2.8.2/services/plot/statistical/lollipop/cleveland.rs +91 -0
  432. seraplot-2.8.2/services/plot/statistical/lollipop/common.rs +141 -0
  433. seraplot-2.8.2/services/plot/statistical/lollipop/conditional_color.rs +89 -0
  434. seraplot-2.8.2/services/plot/statistical/lollipop/config.rs +20 -0
  435. seraplot-2.8.2/services/plot/statistical/lollipop/custom.rs +89 -0
  436. seraplot-2.8.2/services/plot/statistical/lollipop/diverging.rs +98 -0
  437. seraplot-2.8.2/services/plot/statistical/lollipop/mod.rs +77 -0
  438. seraplot-2.8.2/services/plot/statistical/lollipop/office.rs +170 -0
  439. seraplot-2.8.2/services/plot/statistical/lollipop/trend.rs +137 -0
  440. seraplot-2.8.2/services/plot/statistical/lollipop/variant.rs +12 -0
  441. seraplot-2.8.2/services/plot/statistical/mod.rs +196 -0
  442. seraplot-2.8.2/services/plot/statistical/multiline.rs +214 -0
  443. seraplot-2.8.2/services/plot/statistical/orbita/basic.rs +197 -0
  444. seraplot-2.8.2/services/plot/statistical/orbita/config.rs +22 -0
  445. seraplot-2.8.2/services/plot/statistical/orbita/mod.rs +49 -0
  446. seraplot-2.8.2/services/plot/statistical/orbita/variant.rs +10 -0
  447. seraplot-2.8.2/services/plot/statistical/parallel/arc.rs +144 -0
  448. seraplot-2.8.2/services/plot/statistical/parallel/common.rs +218 -0
  449. seraplot-2.8.2/services/plot/statistical/parallel/deluxe.rs +151 -0
  450. seraplot-2.8.2/services/plot/statistical/parallel/mod.rs +95 -0
  451. seraplot-2.8.2/services/plot/statistical/parallel/variant.rs +11 -0
  452. seraplot-2.8.2/services/plot/statistical/parcats/basic.rs +148 -0
  453. seraplot-2.8.2/services/plot/statistical/parcats/common.rs +75 -0
  454. seraplot-2.8.2/services/plot/statistical/parcats/config.rs +18 -0
  455. seraplot-2.8.2/services/plot/statistical/parcats/mod.rs +43 -0
  456. seraplot-2.8.2/services/plot/statistical/parcats/variant.rs +6 -0
  457. seraplot-2.8.2/services/plot/statistical/pie/common.rs +446 -0
  458. seraplot-2.8.2/services/plot/statistical/pie/config.rs +73 -0
  459. seraplot-2.8.2/services/plot/statistical/pie/mod.rs +163 -0
  460. seraplot-2.8.2/services/plot/statistical/pie/nested.rs +90 -0
  461. seraplot-2.8.2/services/plot/statistical/pie/nightingale.rs +122 -0
  462. seraplot-2.8.2/services/plot/statistical/pie/proportional.rs +45 -0
  463. seraplot-2.8.2/services/plot/statistical/pie/subplots.rs +126 -0
  464. seraplot-2.8.2/services/plot/statistical/pie/variant.rs +15 -0
  465. seraplot-2.8.2/services/plot/statistical/pie/waffle.rs +125 -0
  466. seraplot-2.8.2/services/plot/statistical/plot_web/common.rs +32 -0
  467. seraplot-2.8.2/services/plot/statistical/plot_web/config.rs +28 -0
  468. seraplot-2.8.2/services/plot/statistical/plot_web/mod.rs +75 -0
  469. seraplot-2.8.2/services/plot/statistical/plot_web/radial.rs +320 -0
  470. seraplot-2.8.2/services/plot/statistical/plot_web/scatter.rs +414 -0
  471. seraplot-2.8.2/services/plot/statistical/plot_web/variant.rs +6 -0
  472. seraplot-2.8.2/services/plot/statistical/pulse/common.rs +309 -0
  473. seraplot-2.8.2/services/plot/statistical/pulse/config.rs +18 -0
  474. seraplot-2.8.2/services/plot/statistical/pulse/dot.rs +7 -0
  475. seraplot-2.8.2/services/plot/statistical/pulse/filled.rs +7 -0
  476. seraplot-2.8.2/services/plot/statistical/pulse/mod.rs +51 -0
  477. seraplot-2.8.2/services/plot/statistical/pulse/outlined.rs +7 -0
  478. seraplot-2.8.2/services/plot/statistical/pulse/radial.rs +7 -0
  479. seraplot-2.8.2/services/plot/statistical/pulse/variant.rs +9 -0
  480. seraplot-2.8.2/services/plot/statistical/pulse/wave.rs +7 -0
  481. seraplot-2.8.2/services/plot/statistical/radar/band.rs +132 -0
  482. seraplot-2.8.2/services/plot/statistical/radar/basic.rs +42 -0
  483. seraplot-2.8.2/services/plot/statistical/radar/common.rs +240 -0
  484. seraplot-2.8.2/services/plot/statistical/radar/dashed.rs +40 -0
  485. seraplot-2.8.2/services/plot/statistical/radar/filled.rs +51 -0
  486. seraplot-2.8.2/services/plot/statistical/radar/lines.rs +40 -0
  487. seraplot-2.8.2/services/plot/statistical/radar/markers.rs +40 -0
  488. seraplot-2.8.2/services/plot/statistical/radar/mod.rs +62 -0
  489. seraplot-2.8.2/services/plot/statistical/radar/polar_bar.rs +77 -0
  490. seraplot-2.8.2/services/plot/statistical/radar/stacked.rs +69 -0
  491. seraplot-2.8.2/services/plot/statistical/radar/variant.rs +12 -0
  492. seraplot-2.8.2/services/plot/statistical/ridgeline/basic.rs +46 -0
  493. seraplot-2.8.2/services/plot/statistical/ridgeline/common.rs +358 -0
  494. seraplot-2.8.2/services/plot/statistical/ridgeline/config.rs +24 -0
  495. seraplot-2.8.2/services/plot/statistical/ridgeline/heatmap.rs +61 -0
  496. seraplot-2.8.2/services/plot/statistical/ridgeline/lines.rs +36 -0
  497. seraplot-2.8.2/services/plot/statistical/ridgeline/mean.rs +77 -0
  498. seraplot-2.8.2/services/plot/statistical/ridgeline/mod.rs +68 -0
  499. seraplot-2.8.2/services/plot/statistical/ridgeline/quartiles.rs +80 -0
  500. seraplot-2.8.2/services/plot/statistical/ridgeline/rug.rs +74 -0
  501. seraplot-2.8.2/services/plot/statistical/ridgeline/spaced.rs +44 -0
  502. seraplot-2.8.2/services/plot/statistical/ridgeline/variant.rs +11 -0
  503. seraplot-2.8.2/services/plot/statistical/sankey/basic.rs +130 -0
  504. seraplot-2.8.2/services/plot/statistical/sankey/common.rs +205 -0
  505. seraplot-2.8.2/services/plot/statistical/sankey/config.rs +22 -0
  506. seraplot-2.8.2/services/plot/statistical/sankey/gapped.rs +11 -0
  507. seraplot-2.8.2/services/plot/statistical/sankey/mod.rs +56 -0
  508. seraplot-2.8.2/services/plot/statistical/sankey/ribbon.rs +11 -0
  509. seraplot-2.8.2/services/plot/statistical/sankey/sorted.rs +6 -0
  510. seraplot-2.8.2/services/plot/statistical/sankey/variant.rs +9 -0
  511. seraplot-2.8.2/services/plot/statistical/scatter/basic.rs +61 -0
  512. seraplot-2.8.2/services/plot/statistical/scatter/common.rs +303 -0
  513. seraplot-2.8.2/services/plot/statistical/scatter/config.rs +46 -0
  514. seraplot-2.8.2/services/plot/statistical/scatter/continuous_hue.rs +123 -0
  515. seraplot-2.8.2/services/plot/statistical/scatter/dual_style.rs +126 -0
  516. seraplot-2.8.2/services/plot/statistical/scatter/facet.rs +133 -0
  517. seraplot-2.8.2/services/plot/statistical/scatter/labeled.rs +102 -0
  518. seraplot-2.8.2/services/plot/statistical/scatter/mod.rs +210 -0
  519. seraplot-2.8.2/services/plot/statistical/scatter/regression.rs +293 -0
  520. seraplot-2.8.2/services/plot/statistical/scatter/residual.rs +91 -0
  521. seraplot-2.8.2/services/plot/statistical/scatter/rug.rs +114 -0
  522. seraplot-2.8.2/services/plot/statistical/scatter/sized.rs +116 -0
  523. seraplot-2.8.2/services/plot/statistical/scatter/symbols.rs +119 -0
  524. seraplot-2.8.2/services/plot/statistical/scatter/variant.rs +16 -0
  525. seraplot-2.8.2/services/plot/statistical/scatter/wide_form.rs +104 -0
  526. seraplot-2.8.2/services/plot/statistical/scatterternary/basic.rs +35 -0
  527. seraplot-2.8.2/services/plot/statistical/scatterternary/bubble.rs +59 -0
  528. seraplot-2.8.2/services/plot/statistical/scatterternary/common.rs +142 -0
  529. seraplot-2.8.2/services/plot/statistical/scatterternary/config.rs +30 -0
  530. seraplot-2.8.2/services/plot/statistical/scatterternary/labeled.rs +44 -0
  531. seraplot-2.8.2/services/plot/statistical/scatterternary/mod.rs +67 -0
  532. seraplot-2.8.2/services/plot/statistical/scatterternary/variant.rs +7 -0
  533. seraplot-2.8.2/services/plot/statistical/slope/common.rs +185 -0
  534. seraplot-2.8.2/services/plot/statistical/slope/diverging.rs +123 -0
  535. seraplot-2.8.2/services/plot/statistical/slope/highlighted.rs +83 -0
  536. seraplot-2.8.2/services/plot/statistical/slope/variant.rs +12 -0
  537. seraplot-2.8.2/services/plot/statistical/splom/basic.rs +40 -0
  538. seraplot-2.8.2/services/plot/statistical/splom/common.rs +184 -0
  539. seraplot-2.8.2/services/plot/statistical/splom/config.rs +18 -0
  540. seraplot-2.8.2/services/plot/statistical/splom/correlation.rs +56 -0
  541. seraplot-2.8.2/services/plot/statistical/splom/density.rs +41 -0
  542. seraplot-2.8.2/services/plot/statistical/splom/mod.rs +51 -0
  543. seraplot-2.8.2/services/plot/statistical/splom/regression.rs +80 -0
  544. seraplot-2.8.2/services/plot/statistical/splom/variant.rs +8 -0
  545. seraplot-2.8.2/services/plot/statistical/stackplot/basic.rs +35 -0
  546. seraplot-2.8.2/services/plot/statistical/stackplot/common.rs +137 -0
  547. seraplot-2.8.2/services/plot/statistical/stackplot/config.rs +14 -0
  548. seraplot-2.8.2/services/plot/statistical/stackplot/mod.rs +65 -0
  549. seraplot-2.8.2/services/plot/statistical/stackplot/normalized.rs +72 -0
  550. seraplot-2.8.2/services/plot/statistical/stackplot/radial.rs +159 -0
  551. seraplot-2.8.2/services/plot/statistical/stackplot/ribbon.rs +138 -0
  552. seraplot-2.8.2/services/plot/statistical/stackplot/streamgraph.rs +33 -0
  553. seraplot-2.8.2/services/plot/statistical/stackplot/variant.rs +9 -0
  554. seraplot-2.8.2/services/plot/statistical/sunburst/basic.rs +49 -0
  555. seraplot-2.8.2/services/plot/statistical/sunburst/common.rs +341 -0
  556. seraplot-2.8.2/services/plot/statistical/sunburst/depth_fade.rs +44 -0
  557. seraplot-2.8.2/services/plot/statistical/sunburst/donut.rs +74 -0
  558. seraplot-2.8.2/services/plot/statistical/sunburst/gapped.rs +55 -0
  559. seraplot-2.8.2/services/plot/statistical/sunburst/mod.rs +61 -0
  560. seraplot-2.8.2/services/plot/statistical/sunburst/mono.rs +49 -0
  561. seraplot-2.8.2/services/plot/statistical/sunburst/outlined.rs +52 -0
  562. seraplot-2.8.2/services/plot/statistical/sunburst/variant.rs +11 -0
  563. seraplot-2.8.2/services/plot/statistical/sunburst/zoomable.rs +294 -0
  564. seraplot-2.8.2/services/plot/statistical/theme.rs +546 -0
  565. seraplot-2.8.2/services/plot/statistical/treemap/basic.rs +32 -0
  566. seraplot-2.8.2/services/plot/statistical/treemap/common.rs +473 -0
  567. seraplot-2.8.2/services/plot/statistical/treemap/config.rs +20 -0
  568. seraplot-2.8.2/services/plot/statistical/treemap/flat.rs +31 -0
  569. seraplot-2.8.2/services/plot/statistical/treemap/gapped.rs +46 -0
  570. seraplot-2.8.2/services/plot/statistical/treemap/heat.rs +43 -0
  571. seraplot-2.8.2/services/plot/statistical/treemap/mod.rs +67 -0
  572. seraplot-2.8.2/services/plot/statistical/treemap/mono.rs +45 -0
  573. seraplot-2.8.2/services/plot/statistical/treemap/nested.rs +61 -0
  574. seraplot-2.8.2/services/plot/statistical/treemap/outlined.rs +35 -0
  575. seraplot-2.8.2/services/plot/statistical/treemap/trend.rs +69 -0
  576. seraplot-2.8.2/services/plot/statistical/treemap/variant.rs +12 -0
  577. seraplot-2.8.2/services/plot/statistical/venn/basic.rs +213 -0
  578. seraplot-2.8.2/services/plot/statistical/venn/config.rs +18 -0
  579. seraplot-2.8.2/services/plot/statistical/venn/mod.rs +46 -0
  580. seraplot-2.8.2/services/plot/statistical/venn/variant.rs +9 -0
  581. seraplot-2.8.2/services/plot/statistical/violin/basic.rs +70 -0
  582. seraplot-2.8.2/services/plot/statistical/violin/common.rs +563 -0
  583. seraplot-2.8.2/services/plot/statistical/violin/half.rs +97 -0
  584. seraplot-2.8.2/services/plot/statistical/violin/horizontal.rs +82 -0
  585. seraplot-2.8.2/services/plot/statistical/violin/mean.rs +71 -0
  586. seraplot-2.8.2/services/plot/statistical/violin/mod.rs +85 -0
  587. seraplot-2.8.2/services/plot/statistical/violin/points.rs +74 -0
  588. seraplot-2.8.2/services/plot/statistical/violin/quartile.rs +71 -0
  589. seraplot-2.8.2/services/plot/statistical/violin/split.rs +111 -0
  590. seraplot-2.8.2/services/plot/statistical/violin/strip.rs +96 -0
  591. seraplot-2.8.2/services/plot/statistical/violin/variant.rs +13 -0
  592. seraplot-2.8.2/services/plot/statistical/violin/with_box.rs +71 -0
  593. seraplot-2.8.2/services/plot/statistical/waterfall/arrowed.rs +85 -0
  594. seraplot-2.8.2/services/plot/statistical/waterfall/basic.rs +70 -0
  595. seraplot-2.8.2/services/plot/statistical/waterfall/common.rs +250 -0
  596. seraplot-2.8.2/services/plot/statistical/waterfall/delta.rs +90 -0
  597. seraplot-2.8.2/services/plot/statistical/waterfall/horizontal.rs +188 -0
  598. seraplot-2.8.2/services/plot/statistical/waterfall/lollipop.rs +70 -0
  599. seraplot-2.8.2/services/plot/statistical/waterfall/mod.rs +58 -0
  600. seraplot-2.8.2/services/plot/statistical/waterfall/trend.rs +104 -0
  601. seraplot-2.8.2/services/plot/statistical/waterfall/variant.rs +11 -0
  602. seraplot-2.8.2/services/plot/statistical/wordcloud/common.rs +961 -0
  603. seraplot-2.8.2/services/plot/statistical/wordcloud/cosmos.rs +294 -0
  604. seraplot-2.8.2/services/plot/statistical/wordcloud/mod.rs +96 -0
  605. seraplot-2.8.2/services/plot/statistical/wordcloud/neuron.rs +224 -0
  606. seraplot-2.8.2/services/plot/statistical/wordcloud/variant.rs +12 -0
  607. seraplot-2.8.2/services/plot/utils.rs +941 -0
  608. seraplot-2.8.2/viewer/chart.rs +2051 -0
  609. seraplot-2.8.2/viewer/mod.rs +13 -0
  610. seraplot-2.8.2/viewer/render/pipeline.rs +387 -0
  611. seraplot-2.8.2/viewer/utils/image_loader.rs +105 -0
  612. seraplot-2.8.2/webapp/components.rs +77 -0
  613. seraplot-2.8.2/webapp/http.rs +103 -0
  614. seraplot-2.8.2/webapp/mod.rs +18 -0
  615. seraplot-2.8.2/webapp/py.rs +125 -0
  616. seraplot-2.8.2/webapp/registry.rs +370 -0
  617. seraplot-2.8.2/webapp/server.rs +278 -0
  618. seraplot-2.8.2/webapp/sha1.rs +89 -0
  619. seraplot-2.8.2/webapp/ws.rs +119 -0
  620. seraplot-2.8.2/wiki/api.rs +146 -0
  621. seraplot-2.7.12/.continueignore +0 -31
  622. seraplot-2.7.12/.github/copilot-instructions.md +0 -18
  623. seraplot-2.7.12/.sera-ai/PROJECT_MEMORY.md +0 -75
  624. seraplot-2.7.12/.vscode/settings.json +0 -5
  625. seraplot-2.7.12/AGENTS.md +0 -47
  626. seraplot-2.7.12/Cargo.lock +0 -6460
  627. seraplot-2.7.12/Cargo.toml +0 -82
  628. seraplot-2.7.12/PKG-INFO +0 -91
  629. seraplot-2.7.12/README.md +0 -60
  630. seraplot-2.7.12/benches/dispatch_bench.rs +0 -29
  631. seraplot-2.7.12/build/bindings.rs +0 -620
  632. seraplot-2.7.12/build/common.rs +0 -563
  633. seraplot-2.7.12/build/ml/docs.rs +0 -531
  634. seraplot-2.7.12/build/ml/mod.rs +0 -1
  635. seraplot-2.7.12/build/plot/docs.rs +0 -379
  636. seraplot-2.7.12/build/plot/mod.rs +0 -1
  637. seraplot-2.7.12/build/registry.rs +0 -76
  638. seraplot-2.7.12/build.rs +0 -69
  639. seraplot-2.7.12/build_bindings.ps1 +0 -45
  640. seraplot-2.7.12/check_output.json +0 -0
  641. seraplot-2.7.12/main.py +0 -17
  642. seraplot-2.7.12/ollama-qwen3-8b-32k.Modelfile +0 -3
  643. seraplot-2.7.12/ollama-qwen3-8b-agent-12k.Modelfile +0 -12
  644. seraplot-2.7.12/ollama-qwen3-coder-64k.Modelfile +0 -3
  645. seraplot-2.7.12/ollama-qwen3-coder-8k.Modelfile +0 -3
  646. seraplot-2.7.12/ollama-sera-agent-qwen3-4b-64k.Modelfile +0 -11
  647. seraplot-2.7.12/ollama-sera-agent-qwen3-4b.Modelfile +0 -12
  648. seraplot-2.7.12/ollama-sera-deep-qwen3-4b-128k.Modelfile +0 -10
  649. seraplot-2.7.12/ollama-sera-deep-qwen3-4b.Modelfile +0 -10
  650. seraplot-2.7.12/pyproject.toml +0 -40
  651. seraplot-2.7.12/python/seraplot/__init__.py +0 -72
  652. seraplot-2.7.12/seraplot-macros/Cargo.lock +0 -47
  653. seraplot-2.7.12/seraplot-macros/src/class.rs +0 -206
  654. seraplot-2.7.12/seraplot-macros/src/doc.rs +0 -89
  655. seraplot-2.7.12/seraplot-macros/src/lib.rs +0 -78
  656. seraplot-2.7.12/seraplot-macros/src/util.rs +0 -185
  657. seraplot-2.7.12/src/.github/workflows/mdbook.yml +0 -112
  658. seraplot-2.7.12/src/.gitignore +0 -8
  659. seraplot-2.7.12/src/README.md +0 -0
  660. seraplot-2.7.12/src/_py.rs +0 -584
  661. seraplot-2.7.12/src/bindings/chart_types.rs +0 -73
  662. seraplot-2.7.12/src/bindings/commands/docs.rs +0 -2553
  663. seraplot-2.7.12/src/bindings/commands/mod.rs +0 -10
  664. seraplot-2.7.12/src/bindings/commands/registry.rs +0 -1
  665. seraplot-2.7.12/src/bindings/doc_registry.rs +0 -29
  666. seraplot-2.7.12/src/bindings/exports.rs +0 -28
  667. seraplot-2.7.12/src/bindings/fn_registry.rs +0 -25
  668. seraplot-2.7.12/src/bindings/mod.rs +0 -24
  669. seraplot-2.7.12/src/bindings/registry_macro.rs +0 -30
  670. seraplot-2.7.12/src/bindings/utils/compact_state.rs +0 -85
  671. seraplot-2.7.12/src/bindings/utils/data_processor.rs +0 -60
  672. seraplot-2.7.12/src/bindings/utils/image_processor.rs +0 -41
  673. seraplot-2.7.12/src/bindings/utils/lazy_builders.rs +0 -198
  674. seraplot-2.7.12/src/book.toml +0 -27
  675. seraplot-2.7.12/src/core/dispatch.rs +0 -184
  676. seraplot-2.7.12/src/core/mod.rs +0 -12
  677. seraplot-2.7.12/src/data/loader.rs +0 -123
  678. seraplot-2.7.12/src/data/mod.rs +0 -3
  679. seraplot-2.7.12/src/html/assets.rs +0 -272
  680. seraplot-2.7.12/src/html/hover.rs +0 -714
  681. seraplot-2.7.12/src/html/js_3d.rs +0 -1333
  682. seraplot-2.7.12/src/lib.rs +0 -3057
  683. seraplot-2.7.12/src/ml/bindings/anomaly.rs +0 -36
  684. seraplot-2.7.12/src/ml/bindings/clustering.rs +0 -73
  685. seraplot-2.7.12/src/ml/bindings/decomposition.rs +0 -50
  686. seraplot-2.7.12/src/ml/bindings/ensemble.rs +0 -139
  687. seraplot-2.7.12/src/ml/bindings/helpers.rs +0 -107
  688. seraplot-2.7.12/src/ml/bindings/importance.rs +0 -48
  689. seraplot-2.7.12/src/ml/bindings/linear.rs +0 -168
  690. seraplot-2.7.12/src/ml/bindings/metrics.rs +0 -155
  691. seraplot-2.7.12/src/ml/bindings/model_selection.rs +0 -104
  692. seraplot-2.7.12/src/ml/bindings/naive_bayes.rs +0 -51
  693. seraplot-2.7.12/src/ml/bindings/neighbors.rs +0 -50
  694. seraplot-2.7.12/src/ml/bindings/persistence.rs +0 -49
  695. seraplot-2.7.12/src/ml/bindings/preprocessing.rs +0 -188
  696. seraplot-2.7.12/src/ml/bindings/svm.rs +0 -40
  697. seraplot-2.7.12/src/ml/bindings/tree.rs +0 -64
  698. seraplot-2.7.12/src/ml/cache.rs +0 -548
  699. seraplot-2.7.12/src/ml/handle.rs +0 -240
  700. seraplot-2.7.12/src/ml/linear/ols.rs +0 -192
  701. seraplot-2.7.12/src/ml/linear/ridge.rs +0 -337
  702. seraplot-2.7.12/src/ml/mod.rs +0 -49
  703. seraplot-2.7.12/src/ml/model_selection/grid_search.rs +0 -2066
  704. seraplot-2.7.12/src/ml/registry/mod.rs +0 -171
  705. seraplot-2.7.12/src/ml/tree/decision_tree_backup.rs +0 -459
  706. seraplot-2.7.12/src/playground_server.py +0 -167
  707. seraplot-2.7.12/src/plot/canvas.rs +0 -149
  708. seraplot-2.7.12/src/plot/chart_input.rs +0 -501
  709. seraplot-2.7.12/src/plot/controller/chart_controller.rs +0 -328
  710. seraplot-2.7.12/src/plot/controller/plot_3d_controller.rs +0 -348
  711. seraplot-2.7.12/src/plot/default/_3d/bar_3d.rs +0 -180
  712. seraplot-2.7.12/src/plot/default/_3d/line_3d.rs +0 -157
  713. seraplot-2.7.12/src/plot/default/_3d/plot_3d_types.rs +0 -136
  714. seraplot-2.7.12/src/plot/default/_3d/scatter_3d.rs +0 -169
  715. seraplot-2.7.12/src/plot/default/bar.rs +0 -530
  716. seraplot-2.7.12/src/plot/default/chart.rs +0 -80
  717. seraplot-2.7.12/src/plot/default/kmeans.rs +0 -1676
  718. seraplot-2.7.12/src/plot/default/line.rs +0 -395
  719. seraplot-2.7.12/src/plot/default/scatter.rs +0 -2227
  720. seraplot-2.7.12/src/plot/family_macro.rs +0 -47
  721. seraplot-2.7.12/src/plot/generic.rs +0 -522
  722. seraplot-2.7.12/src/plot/layout.rs +0 -175
  723. seraplot-2.7.12/src/plot/map/_3d/globe.rs +0 -262
  724. seraplot-2.7.12/src/plot/map/_3d/globe_html.rs +0 -77
  725. seraplot-2.7.12/src/plot/map/_3d/globe_types.rs +0 -65
  726. seraplot-2.7.12/src/plot/map/chart.rs +0 -46
  727. seraplot-2.7.12/src/plot/map/world_data.rs +0 -202
  728. seraplot-2.7.12/src/plot/mod.rs +0 -36
  729. seraplot-2.7.12/src/plot/seaborn/_3d/bar_3d.rs +0 -27
  730. seraplot-2.7.12/src/plot/seaborn/_3d/line_3d.rs +0 -27
  731. seraplot-2.7.12/src/plot/seaborn/_3d/plot_3d_types.rs +0 -136
  732. seraplot-2.7.12/src/plot/seaborn/_3d/scatter_3d.rs +0 -33
  733. seraplot-2.7.12/src/plot/seaborn/chart.rs +0 -64
  734. seraplot-2.7.12/src/plot/statistical/_3d/candlestick3d.rs +0 -76
  735. seraplot-2.7.12/src/plot/statistical/_3d/dumbbell3d.rs +0 -74
  736. seraplot-2.7.12/src/plot/statistical/_3d/funnel3d.rs +0 -61
  737. seraplot-2.7.12/src/plot/statistical/_3d/heatmap3d.rs +0 -72
  738. seraplot-2.7.12/src/plot/statistical/_3d/kde3d.rs +0 -101
  739. seraplot-2.7.12/src/plot/statistical/_3d/lollipop3d.rs +0 -56
  740. seraplot-2.7.12/src/plot/statistical/_3d/mod.rs +0 -41
  741. seraplot-2.7.12/src/plot/statistical/_3d/pie3d.rs +0 -59
  742. seraplot-2.7.12/src/plot/statistical/_3d/plot_3d_types.rs +0 -105
  743. seraplot-2.7.12/src/plot/statistical/_3d/radar3d.rs +0 -79
  744. seraplot-2.7.12/src/plot/statistical/_3d/ridgeline3d.rs +0 -97
  745. seraplot-2.7.12/src/plot/statistical/_3d/stacked_bar3d.rs +0 -81
  746. seraplot-2.7.12/src/plot/statistical/_3d/sunburst3d.rs +0 -73
  747. seraplot-2.7.12/src/plot/statistical/_3d/violin3d.rs +0 -101
  748. seraplot-2.7.12/src/plot/statistical/area.rs +0 -255
  749. seraplot-2.7.12/src/plot/statistical/bar/basic.rs +0 -24
  750. seraplot-2.7.12/src/plot/statistical/bar/deluxe.rs +0 -228
  751. seraplot-2.7.12/src/plot/statistical/bar/grouped.rs +0 -26
  752. seraplot-2.7.12/src/plot/statistical/bar/grouped_stacked.rs +0 -109
  753. seraplot-2.7.12/src/plot/statistical/bar/marimekko.rs +0 -110
  754. seraplot-2.7.12/src/plot/statistical/bar/mod.rs +0 -143
  755. seraplot-2.7.12/src/plot/statistical/bar/multicategory.rs +0 -151
  756. seraplot-2.7.12/src/plot/statistical/bar/pictogram.rs +0 -111
  757. seraplot-2.7.12/src/plot/statistical/bar/prism.rs +0 -223
  758. seraplot-2.7.12/src/plot/statistical/bar/relative.rs +0 -115
  759. seraplot-2.7.12/src/plot/statistical/bar/variant.rs +0 -15
  760. seraplot-2.7.12/src/plot/statistical/boxplot/basic.rs +0 -107
  761. seraplot-2.7.12/src/plot/statistical/boxplot/common.rs +0 -404
  762. seraplot-2.7.12/src/plot/statistical/boxplot/config.rs +0 -32
  763. seraplot-2.7.12/src/plot/statistical/boxplot/horizontal.rs +0 -183
  764. seraplot-2.7.12/src/plot/statistical/boxplot/letter_value.rs +0 -121
  765. seraplot-2.7.12/src/plot/statistical/boxplot/mod.rs +0 -84
  766. seraplot-2.7.12/src/plot/statistical/boxplot/outliers.rs +0 -7
  767. seraplot-2.7.12/src/plot/statistical/boxplot/rainbow.rs +0 -100
  768. seraplot-2.7.12/src/plot/statistical/boxplot/strip.rs +0 -92
  769. seraplot-2.7.12/src/plot/statistical/boxplot/variant.rs +0 -14
  770. seraplot-2.7.12/src/plot/statistical/bubble/basic.rs +0 -60
  771. seraplot-2.7.12/src/plot/statistical/bubble/common.rs +0 -132
  772. seraplot-2.7.12/src/plot/statistical/bubble/config.rs +0 -38
  773. seraplot-2.7.12/src/plot/statistical/bubble/gradient.rs +0 -122
  774. seraplot-2.7.12/src/plot/statistical/bubble/labeled.rs +0 -101
  775. seraplot-2.7.12/src/plot/statistical/bubble/mod.rs +0 -97
  776. seraplot-2.7.12/src/plot/statistical/bubble/outlined.rs +0 -101
  777. seraplot-2.7.12/src/plot/statistical/bubble/variant.rs +0 -12
  778. seraplot-2.7.12/src/plot/statistical/bullet/basic.rs +0 -75
  779. seraplot-2.7.12/src/plot/statistical/bullet/common.rs +0 -177
  780. seraplot-2.7.12/src/plot/statistical/bullet/compare.rs +0 -81
  781. seraplot-2.7.12/src/plot/statistical/bullet/config.rs +0 -20
  782. seraplot-2.7.12/src/plot/statistical/bullet/dot.rs +0 -69
  783. seraplot-2.7.12/src/plot/statistical/bullet/minimal.rs +0 -63
  784. seraplot-2.7.12/src/plot/statistical/bullet/mod.rs +0 -62
  785. seraplot-2.7.12/src/plot/statistical/bullet/progress.rs +0 -74
  786. seraplot-2.7.12/src/plot/statistical/bullet/segmented.rs +0 -69
  787. seraplot-2.7.12/src/plot/statistical/bullet/stacked.rs +0 -69
  788. seraplot-2.7.12/src/plot/statistical/bullet/thermo.rs +0 -125
  789. seraplot-2.7.12/src/plot/statistical/bullet/variant.rs +0 -12
  790. seraplot-2.7.12/src/plot/statistical/candlestick/common.rs +0 -231
  791. seraplot-2.7.12/src/plot/statistical/candlestick/config.rs +0 -20
  792. seraplot-2.7.12/src/plot/statistical/candlestick/mod.rs +0 -74
  793. seraplot-2.7.12/src/plot/statistical/candlestick/variant.rs +0 -12
  794. seraplot-2.7.12/src/plot/statistical/common.rs +0 -679
  795. seraplot-2.7.12/src/plot/statistical/dumbbell/basic.rs +0 -37
  796. seraplot-2.7.12/src/plot/statistical/dumbbell/common.rs +0 -164
  797. seraplot-2.7.12/src/plot/statistical/dumbbell/config.rs +0 -18
  798. seraplot-2.7.12/src/plot/statistical/dumbbell/glow.rs +0 -50
  799. seraplot-2.7.12/src/plot/statistical/dumbbell/mod.rs +0 -74
  800. seraplot-2.7.12/src/plot/statistical/dumbbell/ranked.rs +0 -52
  801. seraplot-2.7.12/src/plot/statistical/dumbbell/variant.rs +0 -11
  802. seraplot-2.7.12/src/plot/statistical/funnel/common.rs +0 -141
  803. seraplot-2.7.12/src/plot/statistical/funnel/config.rs +0 -16
  804. seraplot-2.7.12/src/plot/statistical/funnel/conversion.rs +0 -83
  805. seraplot-2.7.12/src/plot/statistical/funnel/gradient.rs +0 -86
  806. seraplot-2.7.12/src/plot/statistical/funnel/mod.rs +0 -57
  807. seraplot-2.7.12/src/plot/statistical/funnel/variant.rs +0 -12
  808. seraplot-2.7.12/src/plot/statistical/gauge/arc270.rs +0 -70
  809. seraplot-2.7.12/src/plot/statistical/gauge/basic.rs +0 -93
  810. seraplot-2.7.12/src/plot/statistical/gauge/common.rs +0 -178
  811. seraplot-2.7.12/src/plot/statistical/gauge/concentric.rs +0 -97
  812. seraplot-2.7.12/src/plot/statistical/gauge/config.rs +0 -20
  813. seraplot-2.7.12/src/plot/statistical/gauge/glow.rs +0 -69
  814. seraplot-2.7.12/src/plot/statistical/gauge/mod.rs +0 -58
  815. seraplot-2.7.12/src/plot/statistical/gauge/radial.rs +0 -61
  816. seraplot-2.7.12/src/plot/statistical/gauge/segmented.rs +0 -57
  817. seraplot-2.7.12/src/plot/statistical/gauge/sleek.rs +0 -62
  818. seraplot-2.7.12/src/plot/statistical/gauge/tick.rs +0 -100
  819. seraplot-2.7.12/src/plot/statistical/gauge/variant.rs +0 -12
  820. seraplot-2.7.12/src/plot/statistical/grouped_bar.rs +0 -488
  821. seraplot-2.7.12/src/plot/statistical/heatmap/bubble.rs +0 -174
  822. seraplot-2.7.12/src/plot/statistical/heatmap/cluster.rs +0 -60
  823. seraplot-2.7.12/src/plot/statistical/heatmap/common.rs +0 -590
  824. seraplot-2.7.12/src/plot/statistical/heatmap/config.rs +0 -74
  825. seraplot-2.7.12/src/plot/statistical/heatmap/marginal.rs +0 -188
  826. seraplot-2.7.12/src/plot/statistical/heatmap/mod.rs +0 -91
  827. seraplot-2.7.12/src/plot/statistical/heatmap/pivot.rs +0 -230
  828. seraplot-2.7.12/src/plot/statistical/heatmap/variant.rs +0 -19
  829. seraplot-2.7.12/src/plot/statistical/histogram/basic.rs +0 -153
  830. seraplot-2.7.12/src/plot/statistical/histogram/config.rs +0 -38
  831. seraplot-2.7.12/src/plot/statistical/histogram/cumulative.rs +0 -128
  832. seraplot-2.7.12/src/plot/statistical/histogram/deluxe.rs +0 -150
  833. seraplot-2.7.12/src/plot/statistical/histogram/horizontal.rs +0 -105
  834. seraplot-2.7.12/src/plot/statistical/histogram/mod.rs +0 -158
  835. seraplot-2.7.12/src/plot/statistical/histogram/normalized.rs +0 -162
  836. seraplot-2.7.12/src/plot/statistical/histogram/overlay.rs +0 -165
  837. seraplot-2.7.12/src/plot/statistical/histogram/stacked.rs +0 -151
  838. seraplot-2.7.12/src/plot/statistical/histogram/step.rs +0 -120
  839. seraplot-2.7.12/src/plot/statistical/histogram/variant.rs +0 -12
  840. seraplot-2.7.12/src/plot/statistical/kde/basic.rs +0 -113
  841. seraplot-2.7.12/src/plot/statistical/kde/config.rs +0 -22
  842. seraplot-2.7.12/src/plot/statistical/kde/cumulative.rs +0 -97
  843. seraplot-2.7.12/src/plot/statistical/kde/gradient.rs +0 -128
  844. seraplot-2.7.12/src/plot/statistical/kde/histogram.rs +0 -123
  845. seraplot-2.7.12/src/plot/statistical/kde/mod.rs +0 -88
  846. seraplot-2.7.12/src/plot/statistical/kde/normalized.rs +0 -122
  847. seraplot-2.7.12/src/plot/statistical/kde/outline.rs +0 -78
  848. seraplot-2.7.12/src/plot/statistical/kde/rug.rs +0 -151
  849. seraplot-2.7.12/src/plot/statistical/kde/stepped.rs +0 -100
  850. seraplot-2.7.12/src/plot/statistical/kde/variant.rs +0 -12
  851. seraplot-2.7.12/src/plot/statistical/line/basic.rs +0 -27
  852. seraplot-2.7.12/src/plot/statistical/line/connected_scatter.rs +0 -141
  853. seraplot-2.7.12/src/plot/statistical/line/dashed.rs +0 -135
  854. seraplot-2.7.12/src/plot/statistical/line/filled.rs +0 -187
  855. seraplot-2.7.12/src/plot/statistical/line/gapped.rs +0 -181
  856. seraplot-2.7.12/src/plot/statistical/line/mod.rs +0 -121
  857. seraplot-2.7.12/src/plot/statistical/line/neon.rs +0 -212
  858. seraplot-2.7.12/src/plot/statistical/line/sparkline.rs +0 -148
  859. seraplot-2.7.12/src/plot/statistical/line/spline.rs +0 -134
  860. seraplot-2.7.12/src/plot/statistical/line/stepped.rs +0 -165
  861. seraplot-2.7.12/src/plot/statistical/line/variant.rs +0 -14
  862. seraplot-2.7.12/src/plot/statistical/lollipop/basic.rs +0 -71
  863. seraplot-2.7.12/src/plot/statistical/lollipop/circular.rs +0 -91
  864. seraplot-2.7.12/src/plot/statistical/lollipop/cleveland.rs +0 -93
  865. seraplot-2.7.12/src/plot/statistical/lollipop/common.rs +0 -127
  866. seraplot-2.7.12/src/plot/statistical/lollipop/config.rs +0 -22
  867. seraplot-2.7.12/src/plot/statistical/lollipop/diverging.rs +0 -93
  868. seraplot-2.7.12/src/plot/statistical/lollipop/highlight.rs +0 -97
  869. seraplot-2.7.12/src/plot/statistical/lollipop/mod.rs +0 -70
  870. seraplot-2.7.12/src/plot/statistical/lollipop/office.rs +0 -172
  871. seraplot-2.7.12/src/plot/statistical/lollipop/variant.rs +0 -10
  872. seraplot-2.7.12/src/plot/statistical/mod.rs +0 -136
  873. seraplot-2.7.12/src/plot/statistical/multiline.rs +0 -209
  874. seraplot-2.7.12/src/plot/statistical/parallel/arc.rs +0 -144
  875. seraplot-2.7.12/src/plot/statistical/parallel/common.rs +0 -218
  876. seraplot-2.7.12/src/plot/statistical/parallel/deluxe.rs +0 -151
  877. seraplot-2.7.12/src/plot/statistical/parallel/gradient.rs +0 -104
  878. seraplot-2.7.12/src/plot/statistical/parallel/mod.rs +0 -98
  879. seraplot-2.7.12/src/plot/statistical/parallel/variant.rs +0 -13
  880. seraplot-2.7.12/src/plot/statistical/pie/common.rs +0 -390
  881. seraplot-2.7.12/src/plot/statistical/pie/config.rs +0 -71
  882. seraplot-2.7.12/src/plot/statistical/pie/mod.rs +0 -158
  883. seraplot-2.7.12/src/plot/statistical/pie/nested.rs +0 -90
  884. seraplot-2.7.12/src/plot/statistical/pie/proportional.rs +0 -44
  885. seraplot-2.7.12/src/plot/statistical/pie/subplots.rs +0 -126
  886. seraplot-2.7.12/src/plot/statistical/pie/variant.rs +0 -13
  887. seraplot-2.7.12/src/plot/statistical/radar/basic.rs +0 -40
  888. seraplot-2.7.12/src/plot/statistical/radar/common.rs +0 -240
  889. seraplot-2.7.12/src/plot/statistical/radar/dashed.rs +0 -38
  890. seraplot-2.7.12/src/plot/statistical/radar/deluxe.rs +0 -190
  891. seraplot-2.7.12/src/plot/statistical/radar/filled.rs +0 -49
  892. seraplot-2.7.12/src/plot/statistical/radar/gradient.rs +0 -59
  893. seraplot-2.7.12/src/plot/statistical/radar/lines.rs +0 -38
  894. seraplot-2.7.12/src/plot/statistical/radar/markers.rs +0 -38
  895. seraplot-2.7.12/src/plot/statistical/radar/mod.rs +0 -64
  896. seraplot-2.7.12/src/plot/statistical/radar/polar_bar.rs +0 -77
  897. seraplot-2.7.12/src/plot/statistical/radar/stacked.rs +0 -67
  898. seraplot-2.7.12/src/plot/statistical/radar/variant.rs +0 -13
  899. seraplot-2.7.12/src/plot/statistical/ridgeline/basic.rs +0 -43
  900. seraplot-2.7.12/src/plot/statistical/ridgeline/common.rs +0 -345
  901. seraplot-2.7.12/src/plot/statistical/ridgeline/config.rs +0 -22
  902. seraplot-2.7.12/src/plot/statistical/ridgeline/deluxe.rs +0 -147
  903. seraplot-2.7.12/src/plot/statistical/ridgeline/gradient.rs +0 -58
  904. seraplot-2.7.12/src/plot/statistical/ridgeline/heatmap.rs +0 -71
  905. seraplot-2.7.12/src/plot/statistical/ridgeline/lines.rs +0 -32
  906. seraplot-2.7.12/src/plot/statistical/ridgeline/mean.rs +0 -74
  907. seraplot-2.7.12/src/plot/statistical/ridgeline/mod.rs +0 -70
  908. seraplot-2.7.12/src/plot/statistical/ridgeline/quartiles.rs +0 -77
  909. seraplot-2.7.12/src/plot/statistical/ridgeline/rug.rs +0 -71
  910. seraplot-2.7.12/src/plot/statistical/ridgeline/spaced.rs +0 -41
  911. seraplot-2.7.12/src/plot/statistical/ridgeline/variant.rs +0 -13
  912. seraplot-2.7.12/src/plot/statistical/scatter/basic.rs +0 -61
  913. seraplot-2.7.12/src/plot/statistical/scatter/common.rs +0 -306
  914. seraplot-2.7.12/src/plot/statistical/scatter/config.rs +0 -38
  915. seraplot-2.7.12/src/plot/statistical/scatter/deluxe.rs +0 -112
  916. seraplot-2.7.12/src/plot/statistical/scatter/galaxy.rs +0 -114
  917. seraplot-2.7.12/src/plot/statistical/scatter/gradient.rs +0 -123
  918. seraplot-2.7.12/src/plot/statistical/scatter/labeled.rs +0 -102
  919. seraplot-2.7.12/src/plot/statistical/scatter/mod.rs +0 -145
  920. seraplot-2.7.12/src/plot/statistical/scatter/nova.rs +0 -194
  921. seraplot-2.7.12/src/plot/statistical/scatter/regression.rs +0 -228
  922. seraplot-2.7.12/src/plot/statistical/scatter/symbols.rs +0 -119
  923. seraplot-2.7.12/src/plot/statistical/scatter/variant.rs +0 -13
  924. seraplot-2.7.12/src/plot/statistical/slope/common.rs +0 -185
  925. seraplot-2.7.12/src/plot/statistical/slope/diverging.rs +0 -125
  926. seraplot-2.7.12/src/plot/statistical/slope/highlighted.rs +0 -83
  927. seraplot-2.7.12/src/plot/statistical/slope/variant.rs +0 -12
  928. seraplot-2.7.12/src/plot/statistical/sunburst/basic.rs +0 -49
  929. seraplot-2.7.12/src/plot/statistical/sunburst/common.rs +0 -341
  930. seraplot-2.7.12/src/plot/statistical/sunburst/depth_fade.rs +0 -44
  931. seraplot-2.7.12/src/plot/statistical/sunburst/donut.rs +0 -74
  932. seraplot-2.7.12/src/plot/statistical/sunburst/flame.rs +0 -45
  933. seraplot-2.7.12/src/plot/statistical/sunburst/gapped.rs +0 -55
  934. seraplot-2.7.12/src/plot/statistical/sunburst/mod.rs +0 -63
  935. seraplot-2.7.12/src/plot/statistical/sunburst/mono.rs +0 -49
  936. seraplot-2.7.12/src/plot/statistical/sunburst/outlined.rs +0 -52
  937. seraplot-2.7.12/src/plot/statistical/sunburst/rainbow.rs +0 -50
  938. seraplot-2.7.12/src/plot/statistical/sunburst/variant.rs +0 -12
  939. seraplot-2.7.12/src/plot/statistical/theme.rs +0 -406
  940. seraplot-2.7.12/src/plot/statistical/treemap/basic.rs +0 -32
  941. seraplot-2.7.12/src/plot/statistical/treemap/common.rs +0 -485
  942. seraplot-2.7.12/src/plot/statistical/treemap/config.rs +0 -16
  943. seraplot-2.7.12/src/plot/statistical/treemap/flat.rs +0 -31
  944. seraplot-2.7.12/src/plot/statistical/treemap/gapped.rs +0 -46
  945. seraplot-2.7.12/src/plot/statistical/treemap/gradient.rs +0 -50
  946. seraplot-2.7.12/src/plot/statistical/treemap/heat.rs +0 -43
  947. seraplot-2.7.12/src/plot/statistical/treemap/mod.rs +0 -64
  948. seraplot-2.7.12/src/plot/statistical/treemap/mono.rs +0 -45
  949. seraplot-2.7.12/src/plot/statistical/treemap/nested.rs +0 -61
  950. seraplot-2.7.12/src/plot/statistical/treemap/outlined.rs +0 -35
  951. seraplot-2.7.12/src/plot/statistical/treemap/variant.rs +0 -12
  952. seraplot-2.7.12/src/plot/statistical/violin/aurora.rs +0 -131
  953. seraplot-2.7.12/src/plot/statistical/violin/basic.rs +0 -72
  954. seraplot-2.7.12/src/plot/statistical/violin/common.rs +0 -551
  955. seraplot-2.7.12/src/plot/statistical/violin/crystal.rs +0 -188
  956. seraplot-2.7.12/src/plot/statistical/violin/deluxe.rs +0 -132
  957. seraplot-2.7.12/src/plot/statistical/violin/half.rs +0 -99
  958. seraplot-2.7.12/src/plot/statistical/violin/horizontal.rs +0 -84
  959. seraplot-2.7.12/src/plot/statistical/violin/mean.rs +0 -73
  960. seraplot-2.7.12/src/plot/statistical/violin/mod.rs +0 -93
  961. seraplot-2.7.12/src/plot/statistical/violin/points.rs +0 -76
  962. seraplot-2.7.12/src/plot/statistical/violin/quartile.rs +0 -73
  963. seraplot-2.7.12/src/plot/statistical/violin/rainbow.rs +0 -78
  964. seraplot-2.7.12/src/plot/statistical/violin/split.rs +0 -118
  965. seraplot-2.7.12/src/plot/statistical/violin/strip.rs +0 -58
  966. seraplot-2.7.12/src/plot/statistical/violin/variant.rs +0 -17
  967. seraplot-2.7.12/src/plot/statistical/violin/with_box.rs +0 -73
  968. seraplot-2.7.12/src/plot/statistical/waterfall/arrowed.rs +0 -85
  969. seraplot-2.7.12/src/plot/statistical/waterfall/basic.rs +0 -70
  970. seraplot-2.7.12/src/plot/statistical/waterfall/common.rs +0 -248
  971. seraplot-2.7.12/src/plot/statistical/waterfall/delta.rs +0 -90
  972. seraplot-2.7.12/src/plot/statistical/waterfall/horizontal.rs +0 -193
  973. seraplot-2.7.12/src/plot/statistical/waterfall/lollipop.rs +0 -70
  974. seraplot-2.7.12/src/plot/statistical/waterfall/mod.rs +0 -56
  975. seraplot-2.7.12/src/plot/statistical/waterfall/variant.rs +0 -10
  976. seraplot-2.7.12/src/plot/statistical/wordcloud/common.rs +0 -957
  977. seraplot-2.7.12/src/plot/statistical/wordcloud/mod.rs +0 -94
  978. seraplot-2.7.12/src/plot/statistical/wordcloud/neuron.rs +0 -217
  979. seraplot-2.7.12/src/plot/statistical/wordcloud/variant.rs +0 -11
  980. seraplot-2.7.12/src/plot/utils.rs +0 -871
  981. seraplot-2.7.12/src/python/mod.rs +0 -1
  982. seraplot-2.7.12/src/python/registry.rs +0 -1
  983. seraplot-2.7.12/src/telemetry.rs +0 -640
  984. seraplot-2.7.12/src/viewer/chart.rs +0 -2031
  985. seraplot-2.7.12/src/viewer/hybrid.rs +0 -123
  986. seraplot-2.7.12/src/viewer/mod.rs +0 -15
  987. seraplot-2.7.12/src/viewer/render/pipeline.rs +0 -384
  988. seraplot-2.7.12/src/viewer/utils/image_loader.rs +0 -74
  989. seraplot-2.7.12/src/wiki/api.rs +0 -146
  990. seraplot-2.7.12/start-seraplot-copilot.cmd +0 -24
  991. {seraplot-2.7.12/src → seraplot-2.8.2}/.github/workflows/telemetry.yml +0 -0
  992. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/commands/charts/builders.rs +0 -0
  993. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/commands/charts/mod.rs +0 -0
  994. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/commands/ml/mod.rs +0 -0
  995. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/fast_export_c.rs +0 -0
  996. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/fast_render.rs +0 -0
  997. {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/Cargo.toml +0 -0
  998. {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/src/bind.rs +0 -0
  999. {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/src/model.rs +0 -0
  1000. {seraplot-2.7.12/seraplot-macros → seraplot-2.8.2/bindings/macros}/src/register.rs +0 -0
  1001. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/model_registry.rs +0 -0
  1002. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/unified_config.rs +0 -0
  1003. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/adaptive_buf.rs +0 -0
  1004. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/arena_alloc.rs +0 -0
  1005. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/bitset.rs +0 -0
  1006. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/memory_pool.rs +0 -0
  1007. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/mod.rs +0 -0
  1008. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/simd_ops.rs +0 -0
  1009. {seraplot-2.7.12/src → seraplot-2.8.2}/bindings/utils/state_export.rs +0 -0
  1010. {seraplot-2.7.12/src → seraplot-2.8.2}/core/adaptive_exec.rs +0 -0
  1011. {seraplot-2.7.12/src → seraplot-2.8.2}/core/hw_profile.rs +0 -0
  1012. {seraplot-2.7.12/src → seraplot-2.8.2}/core/math.rs +0 -0
  1013. {seraplot-2.7.12/src → seraplot-2.8.2}/playground-url.json +0 -0
  1014. {seraplot-2.7.12/src/data → seraplot-2.8.2/services/data/generic}/dataset.rs +0 -0
  1015. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/anomaly/isolation_forest.rs +0 -0
  1016. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/anomaly/mod.rs +0 -0
  1017. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/bindings/mod.rs +0 -0
  1018. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/bindings/state.rs +0 -0
  1019. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/decomposition/mod.rs +0 -0
  1020. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/decomposition/pca.rs +0 -0
  1021. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/distributed/mod.rs +0 -0
  1022. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/export/mod.rs +0 -0
  1023. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/export/powerbi.rs +0 -0
  1024. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/export/tableau.rs +0 -0
  1025. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/gpu/mod.rs +0 -0
  1026. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linalg.rs +0 -0
  1027. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/elastic_net.rs +0 -0
  1028. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/lasso.rs +0 -0
  1029. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/logistic.rs +0 -0
  1030. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/mod.rs +0 -0
  1031. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/linear/sgd.rs +0 -0
  1032. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/classification.rs +0 -0
  1033. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/clustering.rs +0 -0
  1034. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/mod.rs +0 -0
  1035. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/metrics/regression.rs +0 -0
  1036. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/cross_val.rs +0 -0
  1037. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/mod.rs +0 -0
  1038. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/permutation.rs +0 -0
  1039. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/model_selection/split.rs +0 -0
  1040. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/anomaly.rs +0 -0
  1041. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/decomposition.rs +0 -0
  1042. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/linear.rs +0 -0
  1043. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/mod.rs +0 -0
  1044. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/naive_bayes.rs +0 -0
  1045. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/neighbors.rs +0 -0
  1046. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/preprocessing.rs +0 -0
  1047. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/svm.rs +0 -0
  1048. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/models/tree.rs +0 -0
  1049. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/bernoulli.rs +0 -0
  1050. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/gaussian.rs +0 -0
  1051. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/mod.rs +0 -0
  1052. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/naive_bayes/multinomial.rs +0 -0
  1053. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/neighbors/knn.rs +0 -0
  1054. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/neighbors/mod.rs +0 -0
  1055. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/encoders.rs +0 -0
  1056. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/mod.rs +0 -0
  1057. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/scalers.rs +0 -0
  1058. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/preprocessing/transformers.rs +0 -0
  1059. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/svm/mod.rs +0 -0
  1060. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/svm/svm.rs +0 -0
  1061. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/adaboost.rs +0 -0
  1062. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/decision_tree.rs +0 -0
  1063. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/gradient_boosting.rs +0 -0
  1064. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/mod.rs +0 -0
  1065. {seraplot-2.7.12/src → seraplot-2.8.2/services}/ml/tree/random_forest.rs +0 -0
  1066. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/camera.rs +0 -0
  1067. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/chunker.rs +0 -0
  1068. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/mod.rs +0 -0
  1069. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/planner.rs +0 -0
  1070. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/cloud/profile.rs +0 -0
  1071. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/containers_3d.rs +0 -0
  1072. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/controller/mod.rs +0 -0
  1073. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/default/_3d/mod.rs +0 -0
  1074. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/default/mod.rs +0 -0
  1075. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/default/svg.rs +0 -0
  1076. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/fast_builders.rs +0 -0
  1077. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/fast_exporter.rs +0 -0
  1078. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/html_export.rs +0 -0
  1079. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/html_template.rs +0 -0
  1080. {seraplot-2.7.12/src → seraplot-2.8.2/services/plot}/html/mod.rs +0 -0
  1081. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/_3d/mod.rs +0 -0
  1082. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/bubble_map.rs +0 -0
  1083. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/choropleth.rs +0 -0
  1084. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/mod.rs +0 -0
  1085. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/map/svg_parser.rs +0 -0
  1086. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/models/config.rs +0 -0
  1087. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/models/mod.rs +0 -0
  1088. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/projection.rs +0 -0
  1089. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/renderers.rs +0 -0
  1090. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/scale_renderer.rs +0 -0
  1091. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/seaborn/_3d/mod.rs +0 -0
  1092. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/seaborn/mod.rs +0 -0
  1093. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bar/config.rs +0 -0
  1094. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/grouped.rs +0 -0
  1095. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/notched.rs +0 -0
  1096. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/points.rs +0 -0
  1097. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/boxplot/violin.rs +0 -0
  1098. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/categorical.rs +0 -0
  1099. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/deluxe.rs +0 -0
  1100. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/negative.rs +0 -0
  1101. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/bubble/plasma.rs +0 -0
  1102. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/basic.rs +0 -0
  1103. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/heikin.rs +0 -0
  1104. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/hollow.rs +0 -0
  1105. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/line.rs +0 -0
  1106. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/mountain.rs +0 -0
  1107. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/ohlc.rs +0 -0
  1108. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/outlined.rs +0 -0
  1109. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/candlestick/range.rs +0 -0
  1110. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/arrow.rs +0 -0
  1111. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/barbell.rs +0 -0
  1112. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/delta.rs +0 -0
  1113. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/dumbbell/dotted.rs +0 -0
  1114. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/basic.rs +0 -0
  1115. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/chevron.rs +0 -0
  1116. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/inverted.rs +0 -0
  1117. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/pyramid.rs +0 -0
  1118. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/rounded.rs +0 -0
  1119. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/funnel/stepped.rs +0 -0
  1120. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/annotated.rs +0 -0
  1121. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/basic.rs +0 -0
  1122. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/categorical.rs +0 -0
  1123. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/confusion.rs +0 -0
  1124. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/contour.rs +0 -0
  1125. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/correlation.rs +0 -0
  1126. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/density.rs +0 -0
  1127. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/discrete.rs +0 -0
  1128. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/log.rs +0 -0
  1129. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/temporal.rs +0 -0
  1130. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/heatmap/unequal.rs +0 -0
  1131. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/histogram/common.rs +0 -0
  1132. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/kde/common.rs +0 -0
  1133. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/line/config.rs +0 -0
  1134. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/line/multi.rs +0 -0
  1135. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/basic.rs +0 -0
  1136. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/categorical.rs +0 -0
  1137. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/config.rs +0 -0
  1138. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/density.rs +0 -0
  1139. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/highlight.rs +0 -0
  1140. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/ribbon.rs +0 -0
  1141. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/parallel/smooth.rs +0 -0
  1142. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/basic.rs +0 -0
  1143. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/donut.rs +0 -0
  1144. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/exploded.rs +0 -0
  1145. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/kpi.rs +0 -0
  1146. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/pattern.rs +0 -0
  1147. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/pie/semi.rs +0 -0
  1148. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/radar/config.rs +0 -0
  1149. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/scatter/categorical.rs +0 -0
  1150. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/basic.rs +0 -0
  1151. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/bumps.rs +0 -0
  1152. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/config.rs +0 -0
  1153. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/curved.rs +0 -0
  1154. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/mod.rs +0 -0
  1155. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/monochrome.rs +0 -0
  1156. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/stepped.rs +0 -0
  1157. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/slope/thick.rs +0 -0
  1158. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/sunburst/config.rs +0 -0
  1159. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/violin/config.rs +0 -0
  1160. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/waterfall/config.rs +0 -0
  1161. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/waterfall/stepped.rs +0 -0
  1162. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/basic.rs +0 -0
  1163. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/bubble.rs +0 -0
  1164. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/config.rs +0 -0
  1165. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/context.rs +0 -0
  1166. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/image.rs +0 -0
  1167. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/labelmap.rs +0 -0
  1168. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/network.rs +0 -0
  1169. {seraplot-2.7.12/src → seraplot-2.8.2/services}/plot/statistical/wordcloud/shape.rs +0 -0
  1170. {seraplot-2.7.12/src → seraplot-2.8.2}/telemetry/data.csv +0 -0
  1171. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/cache.rs +0 -0
  1172. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/gui.rs +0 -0
  1173. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/manager/button_manager.rs +0 -0
  1174. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/manager/mod.rs +0 -0
  1175. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/advanced_render.rs +0 -0
  1176. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/fast_render_gui.rs +0 -0
  1177. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/mod.rs +0 -0
  1178. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/viewer_3d.rs +0 -0
  1179. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/render/wiki_viewer.rs +0 -0
  1180. {seraplot-2.7.12/src → seraplot-2.8.2}/viewer/utils/mod.rs +0 -0
  1181. {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/extractor.rs +0 -0
  1182. {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/language.rs +0 -0
  1183. {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/macros.rs +0 -0
  1184. {seraplot-2.7.12/src → seraplot-2.8.2}/wiki/metadata.rs +0 -0
  1185. {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,10 @@
1
+ ---
2
+ name: Custom issue template
3
+ about: Describe this issue template's purpose here.
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+
@@ -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.