seraplot 2.7.10__tar.gz → 2.7.12__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 (1082) hide show
  1. seraplot-2.7.12/.continueignore +31 -0
  2. seraplot-2.7.12/.github/copilot-instructions.md +18 -0
  3. seraplot-2.7.12/.sera-ai/PROJECT_MEMORY.md +75 -0
  4. seraplot-2.7.12/.vscode/settings.json +5 -0
  5. seraplot-2.7.12/AGENTS.md +47 -0
  6. seraplot-2.7.12/Cargo.lock +6460 -0
  7. seraplot-2.7.12/Cargo.toml +82 -0
  8. seraplot-2.7.12/PKG-INFO +91 -0
  9. seraplot-2.7.12/benches/dispatch_bench.rs +29 -0
  10. seraplot-2.7.12/build/bindings.rs +620 -0
  11. seraplot-2.7.12/build/common.rs +563 -0
  12. seraplot-2.7.12/build/ml/docs.rs +531 -0
  13. seraplot-2.7.12/build/ml/mod.rs +1 -0
  14. seraplot-2.7.12/build/plot/docs.rs +379 -0
  15. seraplot-2.7.12/build/plot/mod.rs +1 -0
  16. seraplot-2.7.12/build/registry.rs +76 -0
  17. seraplot-2.7.12/build.rs +69 -0
  18. seraplot-2.7.12/build_bindings.ps1 +45 -0
  19. seraplot-2.7.12/ollama-qwen3-8b-32k.Modelfile +3 -0
  20. seraplot-2.7.12/ollama-qwen3-8b-agent-12k.Modelfile +12 -0
  21. seraplot-2.7.12/ollama-qwen3-coder-64k.Modelfile +3 -0
  22. seraplot-2.7.12/ollama-qwen3-coder-8k.Modelfile +3 -0
  23. seraplot-2.7.12/ollama-sera-agent-qwen3-4b-64k.Modelfile +11 -0
  24. seraplot-2.7.12/ollama-sera-agent-qwen3-4b.Modelfile +12 -0
  25. seraplot-2.7.12/ollama-sera-deep-qwen3-4b-128k.Modelfile +10 -0
  26. seraplot-2.7.12/ollama-sera-deep-qwen3-4b.Modelfile +10 -0
  27. seraplot-2.7.12/pyproject.toml +40 -0
  28. seraplot-2.7.12/python/seraplot/__init__.py +72 -0
  29. seraplot-2.7.12/seraplot-macros/src/bind.rs +152 -0
  30. seraplot-2.7.12/seraplot-macros/src/class.rs +206 -0
  31. seraplot-2.7.12/seraplot-macros/src/doc.rs +89 -0
  32. seraplot-2.7.12/seraplot-macros/src/lib.rs +78 -0
  33. seraplot-2.7.12/seraplot-macros/src/model.rs +50 -0
  34. seraplot-2.7.12/seraplot-macros/src/util.rs +185 -0
  35. seraplot-2.7.12/src/.gitignore +8 -0
  36. seraplot-2.7.12/src/_py.rs +584 -0
  37. seraplot-2.7.12/src/bindings/chart_types.rs +73 -0
  38. seraplot-2.7.12/src/bindings/commands/charts/mod.rs +4 -0
  39. seraplot-2.7.12/src/bindings/commands/docs.rs +2553 -0
  40. seraplot-2.7.12/src/bindings/commands/ml/mod.rs +1 -0
  41. seraplot-2.7.12/src/bindings/commands/mod.rs +10 -0
  42. seraplot-2.7.12/src/bindings/fast_export_c.rs +68 -0
  43. seraplot-2.7.12/src/bindings/fast_render.rs +204 -0
  44. seraplot-2.7.12/src/bindings/mod.rs +24 -0
  45. seraplot-2.7.12/src/bindings/unified_config.rs +162 -0
  46. seraplot-2.7.12/src/bindings/utils/adaptive_buf.rs +106 -0
  47. seraplot-2.7.12/src/bindings/utils/arena_alloc.rs +96 -0
  48. seraplot-2.7.12/src/bindings/utils/bitset.rs +138 -0
  49. seraplot-2.7.12/src/bindings/utils/compact_state.rs +85 -0
  50. seraplot-2.7.12/src/bindings/utils/data_processor.rs +60 -0
  51. seraplot-2.7.12/src/bindings/utils/image_processor.rs +41 -0
  52. seraplot-2.7.12/src/bindings/utils/lazy_builders.rs +198 -0
  53. seraplot-2.7.12/src/bindings/utils/memory_pool.rs +169 -0
  54. seraplot-2.7.12/src/bindings/utils/mod.rs +21 -0
  55. seraplot-2.7.12/src/bindings/utils/simd_ops.rs +28 -0
  56. seraplot-2.7.12/src/bindings/utils/state_export.rs +306 -0
  57. seraplot-2.7.12/src/book.toml +27 -0
  58. seraplot-2.7.12/src/cloud/chunker.rs +86 -0
  59. seraplot-2.7.12/src/cloud/mod.rs +3 -0
  60. seraplot-2.7.12/src/cloud/planner.rs +64 -0
  61. seraplot-2.7.12/src/cloud/profile.rs +35 -0
  62. seraplot-2.7.12/src/core/adaptive_exec.rs +62 -0
  63. seraplot-2.7.12/src/core/dispatch.rs +184 -0
  64. seraplot-2.7.12/src/core/hw_profile.rs +50 -0
  65. seraplot-2.7.12/src/core/math.rs +406 -0
  66. seraplot-2.7.12/src/core/mod.rs +12 -0
  67. seraplot-2.7.12/src/data/dataset.rs +264 -0
  68. seraplot-2.7.12/src/data/loader.rs +123 -0
  69. seraplot-2.7.12/src/data/mod.rs +3 -0
  70. seraplot-2.7.12/src/html/assets.rs +272 -0
  71. seraplot-2.7.12/src/html/fast_builders.rs +153 -0
  72. seraplot-2.7.12/src/html/fast_exporter.rs +120 -0
  73. seraplot-2.7.12/src/html/hover.rs +714 -0
  74. seraplot-2.7.12/src/html/html_export.rs +427 -0
  75. seraplot-2.7.12/src/html/html_template.rs +246 -0
  76. seraplot-2.7.12/src/html/js_3d.rs +1333 -0
  77. seraplot-2.7.12/src/html/mod.rs +17 -0
  78. seraplot-2.7.12/src/lib.rs +3057 -0
  79. seraplot-2.7.12/src/ml/anomaly/isolation_forest.rs +234 -0
  80. seraplot-2.7.12/src/ml/anomaly/mod.rs +3 -0
  81. seraplot-2.7.12/src/ml/bindings/anomaly.rs +36 -0
  82. seraplot-2.7.12/src/ml/bindings/clustering.rs +73 -0
  83. seraplot-2.7.12/src/ml/bindings/decomposition.rs +50 -0
  84. seraplot-2.7.12/src/ml/bindings/ensemble.rs +139 -0
  85. seraplot-2.7.12/src/ml/bindings/helpers.rs +107 -0
  86. seraplot-2.7.12/src/ml/bindings/importance.rs +48 -0
  87. seraplot-2.7.12/src/ml/bindings/linear.rs +168 -0
  88. seraplot-2.7.12/src/ml/bindings/metrics.rs +155 -0
  89. seraplot-2.7.12/src/ml/bindings/mod.rs +32 -0
  90. seraplot-2.7.12/src/ml/bindings/model_selection.rs +104 -0
  91. seraplot-2.7.12/src/ml/bindings/naive_bayes.rs +51 -0
  92. seraplot-2.7.12/src/ml/bindings/neighbors.rs +50 -0
  93. seraplot-2.7.12/src/ml/bindings/persistence.rs +49 -0
  94. seraplot-2.7.12/src/ml/bindings/preprocessing.rs +188 -0
  95. seraplot-2.7.12/src/ml/bindings/state.rs +258 -0
  96. seraplot-2.7.12/src/ml/bindings/svm.rs +40 -0
  97. seraplot-2.7.12/src/ml/bindings/tree.rs +64 -0
  98. seraplot-2.7.12/src/ml/cache.rs +548 -0
  99. seraplot-2.7.12/src/ml/decomposition/mod.rs +3 -0
  100. seraplot-2.7.12/src/ml/decomposition/pca.rs +356 -0
  101. seraplot-2.7.12/src/ml/distributed/mod.rs +138 -0
  102. seraplot-2.7.12/src/ml/export/mod.rs +2 -0
  103. seraplot-2.7.12/src/ml/export/powerbi.rs +86 -0
  104. seraplot-2.7.12/src/ml/export/tableau.rs +125 -0
  105. seraplot-2.7.12/src/ml/gpu/mod.rs +171 -0
  106. seraplot-2.7.12/src/ml/handle.rs +240 -0
  107. seraplot-2.7.12/src/ml/linalg.rs +769 -0
  108. seraplot-2.7.12/src/ml/linear/elastic_net.rs +367 -0
  109. seraplot-2.7.12/src/ml/linear/lasso.rs +74 -0
  110. seraplot-2.7.12/src/ml/linear/logistic.rs +742 -0
  111. seraplot-2.7.12/src/ml/linear/mod.rs +13 -0
  112. seraplot-2.7.12/src/ml/linear/ols.rs +192 -0
  113. seraplot-2.7.12/src/ml/linear/ridge.rs +337 -0
  114. seraplot-2.7.12/src/ml/linear/sgd.rs +656 -0
  115. seraplot-2.7.12/src/ml/metrics/classification.rs +514 -0
  116. seraplot-2.7.12/src/ml/metrics/clustering.rs +390 -0
  117. seraplot-2.7.12/src/ml/metrics/mod.rs +7 -0
  118. seraplot-2.7.12/src/ml/metrics/regression.rs +166 -0
  119. seraplot-2.7.12/src/ml/mod.rs +49 -0
  120. seraplot-2.7.12/src/ml/model_selection/cross_val.rs +80 -0
  121. seraplot-2.7.12/src/ml/model_selection/grid_search.rs +2066 -0
  122. seraplot-2.7.12/src/ml/model_selection/mod.rs +9 -0
  123. seraplot-2.7.12/src/ml/model_selection/permutation.rs +88 -0
  124. seraplot-2.7.12/src/ml/model_selection/split.rs +207 -0
  125. seraplot-2.7.12/src/ml/models/decomposition.rs +1 -0
  126. seraplot-2.7.12/src/ml/models/linear.rs +4 -0
  127. seraplot-2.7.12/src/ml/models/mod.rs +17 -0
  128. seraplot-2.7.12/src/ml/models/naive_bayes.rs +1 -0
  129. seraplot-2.7.12/src/ml/models/preprocessing.rs +5 -0
  130. seraplot-2.7.12/src/ml/models/tree.rs +5 -0
  131. seraplot-2.7.12/src/ml/naive_bayes/bernoulli.rs +188 -0
  132. seraplot-2.7.12/src/ml/naive_bayes/gaussian.rs +217 -0
  133. seraplot-2.7.12/src/ml/naive_bayes/mod.rs +7 -0
  134. seraplot-2.7.12/src/ml/naive_bayes/multinomial.rs +159 -0
  135. seraplot-2.7.12/src/ml/neighbors/knn.rs +809 -0
  136. seraplot-2.7.12/src/ml/neighbors/mod.rs +3 -0
  137. seraplot-2.7.12/src/ml/preprocessing/encoders.rs +214 -0
  138. seraplot-2.7.12/src/ml/preprocessing/mod.rs +7 -0
  139. seraplot-2.7.12/src/ml/preprocessing/scalers.rs +750 -0
  140. seraplot-2.7.12/src/ml/preprocessing/transformers.rs +490 -0
  141. seraplot-2.7.12/src/ml/registry/mod.rs +171 -0
  142. seraplot-2.7.12/src/ml/svm/mod.rs +3 -0
  143. seraplot-2.7.12/src/ml/svm/svm.rs +503 -0
  144. seraplot-2.7.12/src/ml/tree/adaboost.rs +567 -0
  145. seraplot-2.7.12/src/ml/tree/decision_tree.rs +1076 -0
  146. seraplot-2.7.12/src/ml/tree/gradient_boosting.rs +258 -0
  147. seraplot-2.7.12/src/ml/tree/mod.rs +9 -0
  148. seraplot-2.7.12/src/ml/tree/random_forest.rs +319 -0
  149. seraplot-2.7.12/src/plot/camera.rs +43 -0
  150. seraplot-2.7.12/src/plot/canvas.rs +149 -0
  151. seraplot-2.7.12/src/plot/chart_input.rs +501 -0
  152. seraplot-2.7.12/src/plot/containers_3d.rs +322 -0
  153. seraplot-2.7.12/src/plot/controller/chart_controller.rs +328 -0
  154. seraplot-2.7.12/src/plot/controller/mod.rs +5 -0
  155. seraplot-2.7.12/src/plot/controller/plot_3d_controller.rs +348 -0
  156. seraplot-2.7.12/src/plot/default/_3d/bar_3d.rs +180 -0
  157. seraplot-2.7.12/src/plot/default/_3d/line_3d.rs +157 -0
  158. seraplot-2.7.12/src/plot/default/_3d/mod.rs +32 -0
  159. seraplot-2.7.12/src/plot/default/_3d/plot_3d_types.rs +136 -0
  160. seraplot-2.7.12/src/plot/default/_3d/scatter_3d.rs +169 -0
  161. seraplot-2.7.12/src/plot/default/bar.rs +530 -0
  162. seraplot-2.7.12/src/plot/default/chart.rs +80 -0
  163. seraplot-2.7.12/src/plot/default/kmeans.rs +1676 -0
  164. seraplot-2.7.12/src/plot/default/line.rs +395 -0
  165. seraplot-2.7.12/src/plot/default/mod.rs +76 -0
  166. seraplot-2.7.12/src/plot/default/scatter.rs +2227 -0
  167. seraplot-2.7.12/src/plot/default/svg.rs +84 -0
  168. seraplot-2.7.12/src/plot/family_macro.rs +47 -0
  169. seraplot-2.7.12/src/plot/generic.rs +522 -0
  170. seraplot-2.7.12/src/plot/layout.rs +175 -0
  171. seraplot-2.7.12/src/plot/map/_3d/globe.rs +262 -0
  172. seraplot-2.7.12/src/plot/map/_3d/globe_html.rs +77 -0
  173. seraplot-2.7.12/src/plot/map/_3d/globe_types.rs +65 -0
  174. seraplot-2.7.12/src/plot/map/_3d/mod.rs +7 -0
  175. seraplot-2.7.12/src/plot/map/bubble_map.rs +302 -0
  176. seraplot-2.7.12/src/plot/map/chart.rs +46 -0
  177. seraplot-2.7.12/src/plot/map/choropleth.rs +270 -0
  178. seraplot-2.7.12/src/plot/map/mod.rs +14 -0
  179. seraplot-2.7.12/src/plot/map/svg_parser.rs +228 -0
  180. seraplot-2.7.12/src/plot/map/world_data.rs +202 -0
  181. seraplot-2.7.12/src/plot/mod.rs +36 -0
  182. seraplot-2.7.12/src/plot/models/config.rs +1 -0
  183. seraplot-2.7.12/src/plot/projection.rs +247 -0
  184. seraplot-2.7.12/src/plot/renderers.rs +157 -0
  185. seraplot-2.7.12/src/plot/scale_renderer.rs +26 -0
  186. seraplot-2.7.12/src/plot/seaborn/_3d/bar_3d.rs +27 -0
  187. seraplot-2.7.12/src/plot/seaborn/_3d/line_3d.rs +27 -0
  188. seraplot-2.7.12/src/plot/seaborn/_3d/mod.rs +9 -0
  189. seraplot-2.7.12/src/plot/seaborn/_3d/plot_3d_types.rs +136 -0
  190. seraplot-2.7.12/src/plot/seaborn/_3d/scatter_3d.rs +33 -0
  191. seraplot-2.7.12/src/plot/seaborn/chart.rs +64 -0
  192. seraplot-2.7.12/src/plot/seaborn/mod.rs +8 -0
  193. seraplot-2.7.12/src/plot/statistical/_3d/candlestick3d.rs +76 -0
  194. seraplot-2.7.12/src/plot/statistical/_3d/dumbbell3d.rs +74 -0
  195. seraplot-2.7.12/src/plot/statistical/_3d/funnel3d.rs +61 -0
  196. seraplot-2.7.12/src/plot/statistical/_3d/heatmap3d.rs +72 -0
  197. seraplot-2.7.12/src/plot/statistical/_3d/kde3d.rs +101 -0
  198. seraplot-2.7.12/src/plot/statistical/_3d/lollipop3d.rs +56 -0
  199. seraplot-2.7.12/src/plot/statistical/_3d/mod.rs +41 -0
  200. seraplot-2.7.12/src/plot/statistical/_3d/pie3d.rs +59 -0
  201. seraplot-2.7.12/src/plot/statistical/_3d/plot_3d_types.rs +105 -0
  202. seraplot-2.7.12/src/plot/statistical/_3d/radar3d.rs +79 -0
  203. seraplot-2.7.12/src/plot/statistical/_3d/ridgeline3d.rs +97 -0
  204. seraplot-2.7.12/src/plot/statistical/_3d/stacked_bar3d.rs +81 -0
  205. seraplot-2.7.12/src/plot/statistical/_3d/sunburst3d.rs +73 -0
  206. seraplot-2.7.12/src/plot/statistical/_3d/violin3d.rs +101 -0
  207. seraplot-2.7.12/src/plot/statistical/area.rs +255 -0
  208. seraplot-2.7.12/src/plot/statistical/bar/basic.rs +24 -0
  209. seraplot-2.7.12/src/plot/statistical/bar/config.rs +77 -0
  210. seraplot-2.7.12/src/plot/statistical/bar/deluxe.rs +228 -0
  211. seraplot-2.7.12/src/plot/statistical/bar/grouped.rs +26 -0
  212. seraplot-2.7.12/src/plot/statistical/bar/grouped_stacked.rs +109 -0
  213. seraplot-2.7.12/src/plot/statistical/bar/marimekko.rs +110 -0
  214. seraplot-2.7.12/src/plot/statistical/bar/mod.rs +143 -0
  215. seraplot-2.7.12/src/plot/statistical/bar/multicategory.rs +151 -0
  216. seraplot-2.7.12/src/plot/statistical/bar/pictogram.rs +111 -0
  217. seraplot-2.7.12/src/plot/statistical/bar/prism.rs +223 -0
  218. seraplot-2.7.12/src/plot/statistical/bar/relative.rs +115 -0
  219. seraplot-2.7.12/src/plot/statistical/bar/variant.rs +15 -0
  220. seraplot-2.7.12/src/plot/statistical/boxplot/basic.rs +107 -0
  221. seraplot-2.7.12/src/plot/statistical/boxplot/common.rs +404 -0
  222. seraplot-2.7.12/src/plot/statistical/boxplot/config.rs +32 -0
  223. seraplot-2.7.12/src/plot/statistical/boxplot/grouped.rs +120 -0
  224. seraplot-2.7.12/src/plot/statistical/boxplot/horizontal.rs +183 -0
  225. seraplot-2.7.12/src/plot/statistical/boxplot/letter_value.rs +121 -0
  226. seraplot-2.7.12/src/plot/statistical/boxplot/mod.rs +84 -0
  227. seraplot-2.7.12/src/plot/statistical/boxplot/notched.rs +7 -0
  228. seraplot-2.7.12/src/plot/statistical/boxplot/outliers.rs +7 -0
  229. seraplot-2.7.12/src/plot/statistical/boxplot/points.rs +7 -0
  230. seraplot-2.7.12/src/plot/statistical/boxplot/rainbow.rs +100 -0
  231. seraplot-2.7.12/src/plot/statistical/boxplot/strip.rs +92 -0
  232. seraplot-2.7.12/src/plot/statistical/boxplot/variant.rs +14 -0
  233. seraplot-2.7.12/src/plot/statistical/boxplot/violin.rs +128 -0
  234. seraplot-2.7.12/src/plot/statistical/bubble/basic.rs +60 -0
  235. seraplot-2.7.12/src/plot/statistical/bubble/categorical.rs +98 -0
  236. seraplot-2.7.12/src/plot/statistical/bubble/common.rs +132 -0
  237. seraplot-2.7.12/src/plot/statistical/bubble/config.rs +38 -0
  238. seraplot-2.7.12/src/plot/statistical/bubble/deluxe.rs +145 -0
  239. seraplot-2.7.12/src/plot/statistical/bubble/gradient.rs +122 -0
  240. seraplot-2.7.12/src/plot/statistical/bubble/labeled.rs +101 -0
  241. seraplot-2.7.12/src/plot/statistical/bubble/mod.rs +97 -0
  242. seraplot-2.7.12/src/plot/statistical/bubble/negative.rs +115 -0
  243. seraplot-2.7.12/src/plot/statistical/bubble/outlined.rs +101 -0
  244. seraplot-2.7.12/src/plot/statistical/bubble/plasma.rs +137 -0
  245. seraplot-2.7.12/src/plot/statistical/bubble/variant.rs +12 -0
  246. seraplot-2.7.12/src/plot/statistical/bullet/basic.rs +75 -0
  247. seraplot-2.7.12/src/plot/statistical/bullet/common.rs +177 -0
  248. seraplot-2.7.12/src/plot/statistical/bullet/compare.rs +81 -0
  249. seraplot-2.7.12/src/plot/statistical/bullet/config.rs +20 -0
  250. seraplot-2.7.12/src/plot/statistical/bullet/dot.rs +69 -0
  251. seraplot-2.7.12/src/plot/statistical/bullet/minimal.rs +63 -0
  252. seraplot-2.7.12/src/plot/statistical/bullet/mod.rs +62 -0
  253. seraplot-2.7.12/src/plot/statistical/bullet/progress.rs +74 -0
  254. seraplot-2.7.12/src/plot/statistical/bullet/segmented.rs +69 -0
  255. seraplot-2.7.12/src/plot/statistical/bullet/stacked.rs +69 -0
  256. seraplot-2.7.12/src/plot/statistical/bullet/thermo.rs +125 -0
  257. seraplot-2.7.12/src/plot/statistical/bullet/variant.rs +12 -0
  258. seraplot-2.7.12/src/plot/statistical/candlestick/basic.rs +59 -0
  259. seraplot-2.7.12/src/plot/statistical/candlestick/common.rs +231 -0
  260. seraplot-2.7.12/src/plot/statistical/candlestick/config.rs +20 -0
  261. seraplot-2.7.12/src/plot/statistical/candlestick/heikin.rs +64 -0
  262. seraplot-2.7.12/src/plot/statistical/candlestick/hollow.rs +65 -0
  263. seraplot-2.7.12/src/plot/statistical/candlestick/line.rs +50 -0
  264. seraplot-2.7.12/src/plot/statistical/candlestick/mod.rs +74 -0
  265. seraplot-2.7.12/src/plot/statistical/candlestick/mountain.rs +77 -0
  266. seraplot-2.7.12/src/plot/statistical/candlestick/ohlc.rs +62 -0
  267. seraplot-2.7.12/src/plot/statistical/candlestick/outlined.rs +59 -0
  268. seraplot-2.7.12/src/plot/statistical/candlestick/range.rs +37 -0
  269. seraplot-2.7.12/src/plot/statistical/candlestick/variant.rs +12 -0
  270. seraplot-2.7.12/src/plot/statistical/common.rs +679 -0
  271. seraplot-2.7.12/src/plot/statistical/dumbbell/arrow.rs +46 -0
  272. seraplot-2.7.12/src/plot/statistical/dumbbell/barbell.rs +58 -0
  273. seraplot-2.7.12/src/plot/statistical/dumbbell/basic.rs +37 -0
  274. seraplot-2.7.12/src/plot/statistical/dumbbell/common.rs +164 -0
  275. seraplot-2.7.12/src/plot/statistical/dumbbell/config.rs +18 -0
  276. seraplot-2.7.12/src/plot/statistical/dumbbell/delta.rs +40 -0
  277. seraplot-2.7.12/src/plot/statistical/dumbbell/dotted.rs +53 -0
  278. seraplot-2.7.12/src/plot/statistical/dumbbell/glow.rs +50 -0
  279. seraplot-2.7.12/src/plot/statistical/dumbbell/mod.rs +74 -0
  280. seraplot-2.7.12/src/plot/statistical/dumbbell/ranked.rs +52 -0
  281. seraplot-2.7.12/src/plot/statistical/dumbbell/variant.rs +11 -0
  282. seraplot-2.7.12/src/plot/statistical/funnel/basic.rs +72 -0
  283. seraplot-2.7.12/src/plot/statistical/funnel/chevron.rs +66 -0
  284. seraplot-2.7.12/src/plot/statistical/funnel/common.rs +141 -0
  285. seraplot-2.7.12/src/plot/statistical/funnel/config.rs +16 -0
  286. seraplot-2.7.12/src/plot/statistical/funnel/conversion.rs +83 -0
  287. seraplot-2.7.12/src/plot/statistical/funnel/gradient.rs +86 -0
  288. seraplot-2.7.12/src/plot/statistical/funnel/inverted.rs +74 -0
  289. seraplot-2.7.12/src/plot/statistical/funnel/mod.rs +57 -0
  290. seraplot-2.7.12/src/plot/statistical/funnel/pyramid.rs +82 -0
  291. seraplot-2.7.12/src/plot/statistical/funnel/rounded.rs +99 -0
  292. seraplot-2.7.12/src/plot/statistical/funnel/stepped.rs +58 -0
  293. seraplot-2.7.12/src/plot/statistical/funnel/variant.rs +12 -0
  294. seraplot-2.7.12/src/plot/statistical/gauge/arc270.rs +70 -0
  295. seraplot-2.7.12/src/plot/statistical/gauge/basic.rs +93 -0
  296. seraplot-2.7.12/src/plot/statistical/gauge/common.rs +178 -0
  297. seraplot-2.7.12/src/plot/statistical/gauge/concentric.rs +97 -0
  298. seraplot-2.7.12/src/plot/statistical/gauge/config.rs +20 -0
  299. seraplot-2.7.12/src/plot/statistical/gauge/glow.rs +69 -0
  300. seraplot-2.7.12/src/plot/statistical/gauge/mod.rs +58 -0
  301. seraplot-2.7.12/src/plot/statistical/gauge/radial.rs +61 -0
  302. seraplot-2.7.12/src/plot/statistical/gauge/segmented.rs +57 -0
  303. seraplot-2.7.12/src/plot/statistical/gauge/sleek.rs +62 -0
  304. seraplot-2.7.12/src/plot/statistical/gauge/tick.rs +100 -0
  305. seraplot-2.7.12/src/plot/statistical/gauge/variant.rs +12 -0
  306. seraplot-2.7.12/src/plot/statistical/grouped_bar.rs +488 -0
  307. seraplot-2.7.12/src/plot/statistical/heatmap/annotated.rs +14 -0
  308. seraplot-2.7.12/src/plot/statistical/heatmap/basic.rs +8 -0
  309. seraplot-2.7.12/src/plot/statistical/heatmap/bubble.rs +174 -0
  310. seraplot-2.7.12/src/plot/statistical/heatmap/categorical.rs +20 -0
  311. seraplot-2.7.12/src/plot/statistical/heatmap/cluster.rs +60 -0
  312. seraplot-2.7.12/src/plot/statistical/heatmap/common.rs +590 -0
  313. seraplot-2.7.12/src/plot/statistical/heatmap/config.rs +74 -0
  314. seraplot-2.7.12/src/plot/statistical/heatmap/confusion.rs +20 -0
  315. seraplot-2.7.12/src/plot/statistical/heatmap/contour.rs +20 -0
  316. seraplot-2.7.12/src/plot/statistical/heatmap/correlation.rs +14 -0
  317. seraplot-2.7.12/src/plot/statistical/heatmap/density.rs +14 -0
  318. seraplot-2.7.12/src/plot/statistical/heatmap/discrete.rs +17 -0
  319. seraplot-2.7.12/src/plot/statistical/heatmap/log.rs +12 -0
  320. seraplot-2.7.12/src/plot/statistical/heatmap/marginal.rs +188 -0
  321. seraplot-2.7.12/src/plot/statistical/heatmap/mod.rs +91 -0
  322. seraplot-2.7.12/src/plot/statistical/heatmap/pivot.rs +230 -0
  323. seraplot-2.7.12/src/plot/statistical/heatmap/temporal.rs +15 -0
  324. seraplot-2.7.12/src/plot/statistical/heatmap/unequal.rs +43 -0
  325. seraplot-2.7.12/src/plot/statistical/heatmap/variant.rs +19 -0
  326. seraplot-2.7.12/src/plot/statistical/histogram/basic.rs +153 -0
  327. seraplot-2.7.12/src/plot/statistical/histogram/common.rs +72 -0
  328. seraplot-2.7.12/src/plot/statistical/histogram/config.rs +38 -0
  329. seraplot-2.7.12/src/plot/statistical/histogram/cumulative.rs +128 -0
  330. seraplot-2.7.12/src/plot/statistical/histogram/deluxe.rs +150 -0
  331. seraplot-2.7.12/src/plot/statistical/histogram/horizontal.rs +105 -0
  332. seraplot-2.7.12/src/plot/statistical/histogram/mod.rs +158 -0
  333. seraplot-2.7.12/src/plot/statistical/histogram/normalized.rs +162 -0
  334. seraplot-2.7.12/src/plot/statistical/histogram/overlay.rs +165 -0
  335. seraplot-2.7.12/src/plot/statistical/histogram/stacked.rs +151 -0
  336. seraplot-2.7.12/src/plot/statistical/histogram/step.rs +120 -0
  337. seraplot-2.7.12/src/plot/statistical/histogram/variant.rs +12 -0
  338. seraplot-2.7.12/src/plot/statistical/kde/basic.rs +113 -0
  339. seraplot-2.7.12/src/plot/statistical/kde/common.rs +144 -0
  340. seraplot-2.7.12/src/plot/statistical/kde/config.rs +22 -0
  341. seraplot-2.7.12/src/plot/statistical/kde/cumulative.rs +97 -0
  342. seraplot-2.7.12/src/plot/statistical/kde/gradient.rs +128 -0
  343. seraplot-2.7.12/src/plot/statistical/kde/histogram.rs +123 -0
  344. seraplot-2.7.12/src/plot/statistical/kde/mod.rs +88 -0
  345. seraplot-2.7.12/src/plot/statistical/kde/normalized.rs +122 -0
  346. seraplot-2.7.12/src/plot/statistical/kde/outline.rs +78 -0
  347. seraplot-2.7.12/src/plot/statistical/kde/rug.rs +151 -0
  348. seraplot-2.7.12/src/plot/statistical/kde/stepped.rs +100 -0
  349. seraplot-2.7.12/src/plot/statistical/kde/variant.rs +12 -0
  350. seraplot-2.7.12/src/plot/statistical/line/basic.rs +27 -0
  351. seraplot-2.7.12/src/plot/statistical/line/config.rs +73 -0
  352. seraplot-2.7.12/src/plot/statistical/line/connected_scatter.rs +141 -0
  353. seraplot-2.7.12/src/plot/statistical/line/dashed.rs +135 -0
  354. seraplot-2.7.12/src/plot/statistical/line/filled.rs +187 -0
  355. seraplot-2.7.12/src/plot/statistical/line/gapped.rs +181 -0
  356. seraplot-2.7.12/src/plot/statistical/line/mod.rs +121 -0
  357. seraplot-2.7.12/src/plot/statistical/line/multi.rs +23 -0
  358. seraplot-2.7.12/src/plot/statistical/line/neon.rs +212 -0
  359. seraplot-2.7.12/src/plot/statistical/line/sparkline.rs +148 -0
  360. seraplot-2.7.12/src/plot/statistical/line/spline.rs +134 -0
  361. seraplot-2.7.12/src/plot/statistical/line/stepped.rs +165 -0
  362. seraplot-2.7.12/src/plot/statistical/line/variant.rs +14 -0
  363. seraplot-2.7.12/src/plot/statistical/lollipop/basic.rs +71 -0
  364. seraplot-2.7.12/src/plot/statistical/lollipop/circular.rs +91 -0
  365. seraplot-2.7.12/src/plot/statistical/lollipop/cleveland.rs +93 -0
  366. seraplot-2.7.12/src/plot/statistical/lollipop/common.rs +127 -0
  367. seraplot-2.7.12/src/plot/statistical/lollipop/config.rs +22 -0
  368. seraplot-2.7.12/src/plot/statistical/lollipop/diverging.rs +93 -0
  369. seraplot-2.7.12/src/plot/statistical/lollipop/highlight.rs +97 -0
  370. seraplot-2.7.12/src/plot/statistical/lollipop/mod.rs +70 -0
  371. seraplot-2.7.12/src/plot/statistical/lollipop/office.rs +172 -0
  372. seraplot-2.7.12/src/plot/statistical/lollipop/variant.rs +10 -0
  373. seraplot-2.7.12/src/plot/statistical/mod.rs +136 -0
  374. seraplot-2.7.12/src/plot/statistical/multiline.rs +209 -0
  375. seraplot-2.7.12/src/plot/statistical/parallel/arc.rs +144 -0
  376. seraplot-2.7.12/src/plot/statistical/parallel/basic.rs +23 -0
  377. seraplot-2.7.12/src/plot/statistical/parallel/categorical.rs +66 -0
  378. seraplot-2.7.12/src/plot/statistical/parallel/common.rs +218 -0
  379. seraplot-2.7.12/src/plot/statistical/parallel/config.rs +24 -0
  380. seraplot-2.7.12/src/plot/statistical/parallel/deluxe.rs +151 -0
  381. seraplot-2.7.12/src/plot/statistical/parallel/density.rs +22 -0
  382. seraplot-2.7.12/src/plot/statistical/parallel/gradient.rs +104 -0
  383. seraplot-2.7.12/src/plot/statistical/parallel/highlight.rs +59 -0
  384. seraplot-2.7.12/src/plot/statistical/parallel/mod.rs +98 -0
  385. seraplot-2.7.12/src/plot/statistical/parallel/ribbon.rs +215 -0
  386. seraplot-2.7.12/src/plot/statistical/parallel/smooth.rs +84 -0
  387. seraplot-2.7.12/src/plot/statistical/parallel/variant.rs +13 -0
  388. seraplot-2.7.12/src/plot/statistical/pie/basic.rs +10 -0
  389. seraplot-2.7.12/src/plot/statistical/pie/common.rs +390 -0
  390. seraplot-2.7.12/src/plot/statistical/pie/config.rs +71 -0
  391. seraplot-2.7.12/src/plot/statistical/pie/donut.rs +14 -0
  392. seraplot-2.7.12/src/plot/statistical/pie/exploded.rs +28 -0
  393. seraplot-2.7.12/src/plot/statistical/pie/kpi.rs +46 -0
  394. seraplot-2.7.12/src/plot/statistical/pie/mod.rs +158 -0
  395. seraplot-2.7.12/src/plot/statistical/pie/nested.rs +90 -0
  396. seraplot-2.7.12/src/plot/statistical/pie/pattern.rs +14 -0
  397. seraplot-2.7.12/src/plot/statistical/pie/proportional.rs +44 -0
  398. seraplot-2.7.12/src/plot/statistical/pie/semi.rs +17 -0
  399. seraplot-2.7.12/src/plot/statistical/pie/subplots.rs +126 -0
  400. seraplot-2.7.12/src/plot/statistical/pie/variant.rs +13 -0
  401. seraplot-2.7.12/src/plot/statistical/radar/basic.rs +40 -0
  402. seraplot-2.7.12/src/plot/statistical/radar/common.rs +240 -0
  403. seraplot-2.7.12/src/plot/statistical/radar/config.rs +18 -0
  404. seraplot-2.7.12/src/plot/statistical/radar/dashed.rs +38 -0
  405. seraplot-2.7.12/src/plot/statistical/radar/deluxe.rs +190 -0
  406. seraplot-2.7.12/src/plot/statistical/radar/filled.rs +49 -0
  407. seraplot-2.7.12/src/plot/statistical/radar/gradient.rs +59 -0
  408. seraplot-2.7.12/src/plot/statistical/radar/lines.rs +38 -0
  409. seraplot-2.7.12/src/plot/statistical/radar/markers.rs +38 -0
  410. seraplot-2.7.12/src/plot/statistical/radar/mod.rs +64 -0
  411. seraplot-2.7.12/src/plot/statistical/radar/polar_bar.rs +77 -0
  412. seraplot-2.7.12/src/plot/statistical/radar/stacked.rs +67 -0
  413. seraplot-2.7.12/src/plot/statistical/radar/variant.rs +13 -0
  414. seraplot-2.7.12/src/plot/statistical/ridgeline/basic.rs +43 -0
  415. seraplot-2.7.12/src/plot/statistical/ridgeline/common.rs +345 -0
  416. seraplot-2.7.12/src/plot/statistical/ridgeline/config.rs +22 -0
  417. seraplot-2.7.12/src/plot/statistical/ridgeline/deluxe.rs +147 -0
  418. seraplot-2.7.12/src/plot/statistical/ridgeline/gradient.rs +58 -0
  419. seraplot-2.7.12/src/plot/statistical/ridgeline/heatmap.rs +71 -0
  420. seraplot-2.7.12/src/plot/statistical/ridgeline/lines.rs +32 -0
  421. seraplot-2.7.12/src/plot/statistical/ridgeline/mean.rs +74 -0
  422. seraplot-2.7.12/src/plot/statistical/ridgeline/mod.rs +70 -0
  423. seraplot-2.7.12/src/plot/statistical/ridgeline/quartiles.rs +77 -0
  424. seraplot-2.7.12/src/plot/statistical/ridgeline/rug.rs +71 -0
  425. seraplot-2.7.12/src/plot/statistical/ridgeline/spaced.rs +41 -0
  426. seraplot-2.7.12/src/plot/statistical/ridgeline/variant.rs +13 -0
  427. seraplot-2.7.12/src/plot/statistical/scatter/basic.rs +61 -0
  428. seraplot-2.7.12/src/plot/statistical/scatter/categorical.rs +99 -0
  429. seraplot-2.7.12/src/plot/statistical/scatter/common.rs +306 -0
  430. seraplot-2.7.12/src/plot/statistical/scatter/config.rs +38 -0
  431. seraplot-2.7.12/src/plot/statistical/scatter/deluxe.rs +112 -0
  432. seraplot-2.7.12/src/plot/statistical/scatter/galaxy.rs +114 -0
  433. seraplot-2.7.12/src/plot/statistical/scatter/gradient.rs +123 -0
  434. seraplot-2.7.12/src/plot/statistical/scatter/labeled.rs +102 -0
  435. seraplot-2.7.12/src/plot/statistical/scatter/mod.rs +145 -0
  436. seraplot-2.7.12/src/plot/statistical/scatter/nova.rs +194 -0
  437. seraplot-2.7.12/src/plot/statistical/scatter/regression.rs +228 -0
  438. seraplot-2.7.12/src/plot/statistical/scatter/symbols.rs +119 -0
  439. seraplot-2.7.12/src/plot/statistical/scatter/variant.rs +13 -0
  440. seraplot-2.7.12/src/plot/statistical/slope/basic.rs +51 -0
  441. seraplot-2.7.12/src/plot/statistical/slope/bumps.rs +89 -0
  442. seraplot-2.7.12/src/plot/statistical/slope/common.rs +185 -0
  443. seraplot-2.7.12/src/plot/statistical/slope/config.rs +22 -0
  444. seraplot-2.7.12/src/plot/statistical/slope/curved.rs +60 -0
  445. seraplot-2.7.12/src/plot/statistical/slope/diverging.rs +125 -0
  446. seraplot-2.7.12/src/plot/statistical/slope/highlighted.rs +83 -0
  447. seraplot-2.7.12/src/plot/statistical/slope/mod.rs +63 -0
  448. seraplot-2.7.12/src/plot/statistical/slope/monochrome.rs +54 -0
  449. seraplot-2.7.12/src/plot/statistical/slope/stepped.rs +57 -0
  450. seraplot-2.7.12/src/plot/statistical/slope/thick.rs +56 -0
  451. seraplot-2.7.12/src/plot/statistical/slope/variant.rs +12 -0
  452. seraplot-2.7.12/src/plot/statistical/sunburst/basic.rs +49 -0
  453. seraplot-2.7.12/src/plot/statistical/sunburst/common.rs +341 -0
  454. seraplot-2.7.12/src/plot/statistical/sunburst/config.rs +16 -0
  455. seraplot-2.7.12/src/plot/statistical/sunburst/depth_fade.rs +44 -0
  456. seraplot-2.7.12/src/plot/statistical/sunburst/donut.rs +74 -0
  457. seraplot-2.7.12/src/plot/statistical/sunburst/flame.rs +45 -0
  458. seraplot-2.7.12/src/plot/statistical/sunburst/gapped.rs +55 -0
  459. seraplot-2.7.12/src/plot/statistical/sunburst/mod.rs +63 -0
  460. seraplot-2.7.12/src/plot/statistical/sunburst/mono.rs +49 -0
  461. seraplot-2.7.12/src/plot/statistical/sunburst/outlined.rs +52 -0
  462. seraplot-2.7.12/src/plot/statistical/sunburst/rainbow.rs +50 -0
  463. seraplot-2.7.12/src/plot/statistical/sunburst/variant.rs +12 -0
  464. seraplot-2.7.12/src/plot/statistical/theme.rs +406 -0
  465. seraplot-2.7.12/src/plot/statistical/treemap/basic.rs +32 -0
  466. seraplot-2.7.12/src/plot/statistical/treemap/common.rs +485 -0
  467. seraplot-2.7.12/src/plot/statistical/treemap/config.rs +16 -0
  468. seraplot-2.7.12/src/plot/statistical/treemap/flat.rs +31 -0
  469. seraplot-2.7.12/src/plot/statistical/treemap/gapped.rs +46 -0
  470. seraplot-2.7.12/src/plot/statistical/treemap/gradient.rs +50 -0
  471. seraplot-2.7.12/src/plot/statistical/treemap/heat.rs +43 -0
  472. seraplot-2.7.12/src/plot/statistical/treemap/mod.rs +64 -0
  473. seraplot-2.7.12/src/plot/statistical/treemap/mono.rs +45 -0
  474. seraplot-2.7.12/src/plot/statistical/treemap/nested.rs +61 -0
  475. seraplot-2.7.12/src/plot/statistical/treemap/outlined.rs +35 -0
  476. seraplot-2.7.12/src/plot/statistical/treemap/variant.rs +12 -0
  477. seraplot-2.7.12/src/plot/statistical/violin/aurora.rs +131 -0
  478. seraplot-2.7.12/src/plot/statistical/violin/basic.rs +72 -0
  479. seraplot-2.7.12/src/plot/statistical/violin/common.rs +551 -0
  480. seraplot-2.7.12/src/plot/statistical/violin/config.rs +30 -0
  481. seraplot-2.7.12/src/plot/statistical/violin/crystal.rs +188 -0
  482. seraplot-2.7.12/src/plot/statistical/violin/deluxe.rs +132 -0
  483. seraplot-2.7.12/src/plot/statistical/violin/half.rs +99 -0
  484. seraplot-2.7.12/src/plot/statistical/violin/horizontal.rs +84 -0
  485. seraplot-2.7.12/src/plot/statistical/violin/mean.rs +73 -0
  486. seraplot-2.7.12/src/plot/statistical/violin/mod.rs +93 -0
  487. seraplot-2.7.12/src/plot/statistical/violin/points.rs +76 -0
  488. seraplot-2.7.12/src/plot/statistical/violin/quartile.rs +73 -0
  489. seraplot-2.7.12/src/plot/statistical/violin/rainbow.rs +78 -0
  490. seraplot-2.7.12/src/plot/statistical/violin/split.rs +118 -0
  491. seraplot-2.7.12/src/plot/statistical/violin/strip.rs +58 -0
  492. seraplot-2.7.12/src/plot/statistical/violin/variant.rs +17 -0
  493. seraplot-2.7.12/src/plot/statistical/violin/with_box.rs +73 -0
  494. seraplot-2.7.12/src/plot/statistical/waterfall/arrowed.rs +85 -0
  495. seraplot-2.7.12/src/plot/statistical/waterfall/basic.rs +70 -0
  496. seraplot-2.7.12/src/plot/statistical/waterfall/common.rs +248 -0
  497. seraplot-2.7.12/src/plot/statistical/waterfall/config.rs +16 -0
  498. seraplot-2.7.12/src/plot/statistical/waterfall/delta.rs +90 -0
  499. seraplot-2.7.12/src/plot/statistical/waterfall/horizontal.rs +193 -0
  500. seraplot-2.7.12/src/plot/statistical/waterfall/lollipop.rs +70 -0
  501. seraplot-2.7.12/src/plot/statistical/waterfall/mod.rs +56 -0
  502. seraplot-2.7.12/src/plot/statistical/waterfall/stepped.rs +53 -0
  503. seraplot-2.7.12/src/plot/statistical/waterfall/variant.rs +10 -0
  504. seraplot-2.7.12/src/plot/statistical/wordcloud/basic.rs +7 -0
  505. seraplot-2.7.12/src/plot/statistical/wordcloud/bubble.rs +7 -0
  506. seraplot-2.7.12/src/plot/statistical/wordcloud/common.rs +957 -0
  507. seraplot-2.7.12/src/plot/statistical/wordcloud/config.rs +42 -0
  508. seraplot-2.7.12/src/plot/statistical/wordcloud/context.rs +7 -0
  509. seraplot-2.7.12/src/plot/statistical/wordcloud/image.rs +7 -0
  510. seraplot-2.7.12/src/plot/statistical/wordcloud/labelmap.rs +7 -0
  511. seraplot-2.7.12/src/plot/statistical/wordcloud/mod.rs +94 -0
  512. seraplot-2.7.12/src/plot/statistical/wordcloud/network.rs +7 -0
  513. seraplot-2.7.12/src/plot/statistical/wordcloud/neuron.rs +217 -0
  514. seraplot-2.7.12/src/plot/statistical/wordcloud/shape.rs +11 -0
  515. seraplot-2.7.12/src/plot/statistical/wordcloud/variant.rs +11 -0
  516. seraplot-2.7.12/src/plot/utils.rs +871 -0
  517. seraplot-2.7.12/src/telemetry.rs +640 -0
  518. seraplot-2.7.12/src/viewer/cache.rs +240 -0
  519. seraplot-2.7.12/src/viewer/chart.rs +2031 -0
  520. seraplot-2.7.12/src/viewer/gui.rs +238 -0
  521. seraplot-2.7.12/src/viewer/hybrid.rs +123 -0
  522. seraplot-2.7.12/src/viewer/manager/button_manager.rs +186 -0
  523. seraplot-2.7.12/src/viewer/manager/mod.rs +3 -0
  524. seraplot-2.7.12/src/viewer/mod.rs +15 -0
  525. seraplot-2.7.12/src/viewer/render/advanced_render.rs +315 -0
  526. seraplot-2.7.12/src/viewer/render/fast_render_gui.rs +53 -0
  527. seraplot-2.7.12/src/viewer/render/mod.rs +11 -0
  528. seraplot-2.7.12/src/viewer/render/pipeline.rs +384 -0
  529. seraplot-2.7.12/src/viewer/render/viewer_3d.rs +125 -0
  530. seraplot-2.7.12/src/viewer/render/wiki_viewer.rs +233 -0
  531. seraplot-2.7.12/src/viewer/utils/image_loader.rs +74 -0
  532. seraplot-2.7.12/src/viewer/utils/mod.rs +1 -0
  533. seraplot-2.7.12/src/wiki/api.rs +146 -0
  534. seraplot-2.7.12/src/wiki/extractor.rs +123 -0
  535. seraplot-2.7.12/src/wiki/language.rs +61 -0
  536. seraplot-2.7.12/src/wiki/metadata.rs +254 -0
  537. seraplot-2.7.12/src/wiki/mod.rs +9 -0
  538. seraplot-2.7.12/start-seraplot-copilot.cmd +24 -0
  539. seraplot-2.7.10/Cargo.lock +0 -6460
  540. seraplot-2.7.10/Cargo.toml +0 -78
  541. seraplot-2.7.10/PKG-INFO +0 -91
  542. seraplot-2.7.10/build.rs +0 -963
  543. seraplot-2.7.10/build_bindings.ps1 +0 -45
  544. seraplot-2.7.10/pyproject.toml +0 -40
  545. seraplot-2.7.10/python/seraplot/__init__.py +0 -45
  546. seraplot-2.7.10/seraplot-macros/src/bind.rs +0 -137
  547. seraplot-2.7.10/seraplot-macros/src/class.rs +0 -184
  548. seraplot-2.7.10/seraplot-macros/src/doc.rs +0 -81
  549. seraplot-2.7.10/seraplot-macros/src/lib.rs +0 -66
  550. seraplot-2.7.10/seraplot-macros/src/model.rs +0 -46
  551. seraplot-2.7.10/seraplot-macros/src/util.rs +0 -166
  552. seraplot-2.7.10/src/.gitignore +0 -7
  553. seraplot-2.7.10/src/_py.rs +0 -360
  554. seraplot-2.7.10/src/bindings/chart_types.rs +0 -75
  555. seraplot-2.7.10/src/bindings/commands/charts/mod.rs +0 -4
  556. seraplot-2.7.10/src/bindings/commands/docs.rs +0 -2544
  557. seraplot-2.7.10/src/bindings/commands/ml/mod.rs +0 -1
  558. seraplot-2.7.10/src/bindings/commands/mod.rs +0 -10
  559. seraplot-2.7.10/src/bindings/cross_bindings.rs +0 -1
  560. seraplot-2.7.10/src/bindings/fast_export_c.rs +0 -70
  561. seraplot-2.7.10/src/bindings/fast_render.rs +0 -180
  562. seraplot-2.7.10/src/bindings/mod.rs +0 -26
  563. seraplot-2.7.10/src/bindings/unified_config.rs +0 -152
  564. seraplot-2.7.10/src/bindings/utils/adaptive_buf.rs +0 -87
  565. seraplot-2.7.10/src/bindings/utils/arena_alloc.rs +0 -94
  566. seraplot-2.7.10/src/bindings/utils/bitset.rs +0 -143
  567. seraplot-2.7.10/src/bindings/utils/compact_state.rs +0 -83
  568. seraplot-2.7.10/src/bindings/utils/data_processor.rs +0 -54
  569. seraplot-2.7.10/src/bindings/utils/image_processor.rs +0 -43
  570. seraplot-2.7.10/src/bindings/utils/lazy_builders.rs +0 -197
  571. seraplot-2.7.10/src/bindings/utils/memory_pool.rs +0 -155
  572. seraplot-2.7.10/src/bindings/utils/mod.rs +0 -22
  573. seraplot-2.7.10/src/bindings/utils/simd_ops.rs +0 -26
  574. seraplot-2.7.10/src/bindings/utils/state_export.rs +0 -288
  575. seraplot-2.7.10/src/book.toml +0 -27
  576. seraplot-2.7.10/src/cloud/chunker.rs +0 -50
  577. seraplot-2.7.10/src/cloud/mod.rs +0 -5
  578. seraplot-2.7.10/src/cloud/planner.rs +0 -46
  579. seraplot-2.7.10/src/cloud/profile.rs +0 -31
  580. seraplot-2.7.10/src/core/adaptive_exec.rs +0 -56
  581. seraplot-2.7.10/src/core/dispatch.rs +0 -158
  582. seraplot-2.7.10/src/core/hw_profile.rs +0 -45
  583. seraplot-2.7.10/src/core/math.rs +0 -380
  584. seraplot-2.7.10/src/core/mod.rs +0 -12
  585. seraplot-2.7.10/src/data/dataset.rs +0 -244
  586. seraplot-2.7.10/src/data/loader.rs +0 -112
  587. seraplot-2.7.10/src/data/mod.rs +0 -6
  588. seraplot-2.7.10/src/html/assets.rs +0 -274
  589. seraplot-2.7.10/src/html/fast_builders.rs +0 -155
  590. seraplot-2.7.10/src/html/fast_exporter.rs +0 -118
  591. seraplot-2.7.10/src/html/hover.rs +0 -619
  592. seraplot-2.7.10/src/html/html_export.rs +0 -312
  593. seraplot-2.7.10/src/html/html_template.rs +0 -241
  594. seraplot-2.7.10/src/html/js_3d.rs +0 -1289
  595. seraplot-2.7.10/src/html/mod.rs +0 -15
  596. seraplot-2.7.10/src/lib.rs +0 -1516
  597. seraplot-2.7.10/src/ml/anomaly/isolation_forest.rs +0 -157
  598. seraplot-2.7.10/src/ml/anomaly/mod.rs +0 -5
  599. seraplot-2.7.10/src/ml/bindings/anomaly.rs +0 -20
  600. seraplot-2.7.10/src/ml/bindings/clustering.rs +0 -38
  601. seraplot-2.7.10/src/ml/bindings/decomposition.rs +0 -28
  602. seraplot-2.7.10/src/ml/bindings/ensemble.rs +0 -92
  603. seraplot-2.7.10/src/ml/bindings/helpers.rs +0 -63
  604. seraplot-2.7.10/src/ml/bindings/importance.rs +0 -25
  605. seraplot-2.7.10/src/ml/bindings/linear.rs +0 -137
  606. seraplot-2.7.10/src/ml/bindings/metrics.rs +0 -129
  607. seraplot-2.7.10/src/ml/bindings/mod.rs +0 -33
  608. seraplot-2.7.10/src/ml/bindings/model_selection.rs +0 -66
  609. seraplot-2.7.10/src/ml/bindings/naive_bayes.rs +0 -37
  610. seraplot-2.7.10/src/ml/bindings/neighbors.rs +0 -36
  611. seraplot-2.7.10/src/ml/bindings/persistence.rs +0 -34
  612. seraplot-2.7.10/src/ml/bindings/preprocessing.rs +0 -136
  613. seraplot-2.7.10/src/ml/bindings/state.rs +0 -164
  614. seraplot-2.7.10/src/ml/bindings/svm.rs +0 -29
  615. seraplot-2.7.10/src/ml/bindings/tree.rs +0 -38
  616. seraplot-2.7.10/src/ml/cache.rs +0 -438
  617. seraplot-2.7.10/src/ml/decomposition/mod.rs +0 -5
  618. seraplot-2.7.10/src/ml/decomposition/pca.rs +0 -262
  619. seraplot-2.7.10/src/ml/distributed/mod.rs +0 -95
  620. seraplot-2.7.10/src/ml/export/mod.rs +0 -4
  621. seraplot-2.7.10/src/ml/export/powerbi.rs +0 -54
  622. seraplot-2.7.10/src/ml/export/tableau.rs +0 -79
  623. seraplot-2.7.10/src/ml/gpu/mod.rs +0 -125
  624. seraplot-2.7.10/src/ml/handle.rs +0 -209
  625. seraplot-2.7.10/src/ml/linalg.rs +0 -538
  626. seraplot-2.7.10/src/ml/linear/elastic_net.rs +0 -228
  627. seraplot-2.7.10/src/ml/linear/lasso.rs +0 -35
  628. seraplot-2.7.10/src/ml/linear/logistic.rs +0 -509
  629. seraplot-2.7.10/src/ml/linear/mod.rs +0 -15
  630. seraplot-2.7.10/src/ml/linear/ols.rs +0 -151
  631. seraplot-2.7.10/src/ml/linear/ridge.rs +0 -233
  632. seraplot-2.7.10/src/ml/linear/sgd.rs +0 -412
  633. seraplot-2.7.10/src/ml/metrics/classification.rs +0 -349
  634. seraplot-2.7.10/src/ml/metrics/clustering.rs +0 -275
  635. seraplot-2.7.10/src/ml/metrics/mod.rs +0 -9
  636. seraplot-2.7.10/src/ml/metrics/regression.rs +0 -105
  637. seraplot-2.7.10/src/ml/mod.rs +0 -51
  638. seraplot-2.7.10/src/ml/model_selection/cross_val.rs +0 -66
  639. seraplot-2.7.10/src/ml/model_selection/grid_search.rs +0 -1228
  640. seraplot-2.7.10/src/ml/model_selection/mod.rs +0 -11
  641. seraplot-2.7.10/src/ml/model_selection/permutation.rs +0 -70
  642. seraplot-2.7.10/src/ml/model_selection/split.rs +0 -157
  643. seraplot-2.7.10/src/ml/models/decomposition.rs +0 -1
  644. seraplot-2.7.10/src/ml/models/linear.rs +0 -4
  645. seraplot-2.7.10/src/ml/models/mod.rs +0 -17
  646. seraplot-2.7.10/src/ml/models/naive_bayes.rs +0 -1
  647. seraplot-2.7.10/src/ml/models/preprocessing.rs +0 -5
  648. seraplot-2.7.10/src/ml/models/tree.rs +0 -6
  649. seraplot-2.7.10/src/ml/naive_bayes/bernoulli.rs +0 -146
  650. seraplot-2.7.10/src/ml/naive_bayes/gaussian.rs +0 -163
  651. seraplot-2.7.10/src/ml/naive_bayes/mod.rs +0 -9
  652. seraplot-2.7.10/src/ml/naive_bayes/multinomial.rs +0 -122
  653. seraplot-2.7.10/src/ml/neighbors/knn.rs +0 -614
  654. seraplot-2.7.10/src/ml/neighbors/mod.rs +0 -5
  655. seraplot-2.7.10/src/ml/preprocessing/encoders.rs +0 -188
  656. seraplot-2.7.10/src/ml/preprocessing/mod.rs +0 -9
  657. seraplot-2.7.10/src/ml/preprocessing/scalers.rs +0 -560
  658. seraplot-2.7.10/src/ml/preprocessing/transformers.rs +0 -351
  659. seraplot-2.7.10/src/ml/registry/mod.rs +0 -148
  660. seraplot-2.7.10/src/ml/svm/mod.rs +0 -5
  661. seraplot-2.7.10/src/ml/svm/svm.rs +0 -315
  662. seraplot-2.7.10/src/ml/tree/adaboost.rs +0 -404
  663. seraplot-2.7.10/src/ml/tree/decision_tree.rs +0 -730
  664. seraplot-2.7.10/src/ml/tree/gradient_boosting.rs +0 -195
  665. seraplot-2.7.10/src/ml/tree/mod.rs +0 -11
  666. seraplot-2.7.10/src/ml/tree/random_forest.rs +0 -215
  667. seraplot-2.7.10/src/plot/camera.rs +0 -45
  668. seraplot-2.7.10/src/plot/canvas.rs +0 -105
  669. seraplot-2.7.10/src/plot/chart_input.rs +0 -408
  670. seraplot-2.7.10/src/plot/containers_3d.rs +0 -249
  671. seraplot-2.7.10/src/plot/controller/chart_controller.rs +0 -318
  672. seraplot-2.7.10/src/plot/controller/mod.rs +0 -6
  673. seraplot-2.7.10/src/plot/controller/plot_3d_controller.rs +0 -325
  674. seraplot-2.7.10/src/plot/default/_3d/bar_3d.rs +0 -163
  675. seraplot-2.7.10/src/plot/default/_3d/line_3d.rs +0 -143
  676. seraplot-2.7.10/src/plot/default/_3d/mod.rs +0 -29
  677. seraplot-2.7.10/src/plot/default/_3d/plot_3d_types.rs +0 -78
  678. seraplot-2.7.10/src/plot/default/_3d/scatter_3d.rs +0 -137
  679. seraplot-2.7.10/src/plot/default/bar.rs +0 -397
  680. seraplot-2.7.10/src/plot/default/chart.rs +0 -71
  681. seraplot-2.7.10/src/plot/default/kmeans.rs +0 -974
  682. seraplot-2.7.10/src/plot/default/line.rs +0 -302
  683. seraplot-2.7.10/src/plot/default/mod.rs +0 -62
  684. seraplot-2.7.10/src/plot/default/scatter.rs +0 -1442
  685. seraplot-2.7.10/src/plot/default/svg.rs +0 -59
  686. seraplot-2.7.10/src/plot/family_macro.rs +0 -49
  687. seraplot-2.7.10/src/plot/generic.rs +0 -430
  688. seraplot-2.7.10/src/plot/layout.rs +0 -160
  689. seraplot-2.7.10/src/plot/map/_3d/globe.rs +0 -219
  690. seraplot-2.7.10/src/plot/map/_3d/globe_html.rs +0 -50
  691. seraplot-2.7.10/src/plot/map/_3d/globe_types.rs +0 -51
  692. seraplot-2.7.10/src/plot/map/_3d/mod.rs +0 -9
  693. seraplot-2.7.10/src/plot/map/bubble_map.rs +0 -247
  694. seraplot-2.7.10/src/plot/map/chart.rs +0 -45
  695. seraplot-2.7.10/src/plot/map/choropleth.rs +0 -221
  696. seraplot-2.7.10/src/plot/map/mod.rs +0 -16
  697. seraplot-2.7.10/src/plot/map/svg_parser.rs +0 -203
  698. seraplot-2.7.10/src/plot/map/world_data.rs +0 -156
  699. seraplot-2.7.10/src/plot/mod.rs +0 -37
  700. seraplot-2.7.10/src/plot/models/config.rs +0 -1
  701. seraplot-2.7.10/src/plot/projection.rs +0 -244
  702. seraplot-2.7.10/src/plot/renderers.rs +0 -129
  703. seraplot-2.7.10/src/plot/scale_renderer.rs +0 -31
  704. seraplot-2.7.10/src/plot/seaborn/_3d/bar_3d.rs +0 -19
  705. seraplot-2.7.10/src/plot/seaborn/_3d/line_3d.rs +0 -19
  706. seraplot-2.7.10/src/plot/seaborn/_3d/mod.rs +0 -10
  707. seraplot-2.7.10/src/plot/seaborn/_3d/plot_3d_types.rs +0 -136
  708. seraplot-2.7.10/src/plot/seaborn/_3d/scatter_3d.rs +0 -19
  709. seraplot-2.7.10/src/plot/seaborn/chart.rs +0 -47
  710. seraplot-2.7.10/src/plot/seaborn/mod.rs +0 -10
  711. seraplot-2.7.10/src/plot/statistical/_3d/candlestick3d.rs +0 -43
  712. seraplot-2.7.10/src/plot/statistical/_3d/dumbbell3d.rs +0 -40
  713. seraplot-2.7.10/src/plot/statistical/_3d/funnel3d.rs +0 -37
  714. seraplot-2.7.10/src/plot/statistical/_3d/heatmap3d.rs +0 -42
  715. seraplot-2.7.10/src/plot/statistical/_3d/kde3d.rs +0 -59
  716. seraplot-2.7.10/src/plot/statistical/_3d/lollipop3d.rs +0 -32
  717. seraplot-2.7.10/src/plot/statistical/_3d/mod.rs +0 -43
  718. seraplot-2.7.10/src/plot/statistical/_3d/pie3d.rs +0 -38
  719. seraplot-2.7.10/src/plot/statistical/_3d/plot_3d_types.rs +0 -78
  720. seraplot-2.7.10/src/plot/statistical/_3d/radar3d.rs +0 -44
  721. seraplot-2.7.10/src/plot/statistical/_3d/ridgeline3d.rs +0 -55
  722. seraplot-2.7.10/src/plot/statistical/_3d/stacked_bar3d.rs +0 -46
  723. seraplot-2.7.10/src/plot/statistical/_3d/sunburst3d.rs +0 -43
  724. seraplot-2.7.10/src/plot/statistical/_3d/violin3d.rs +0 -59
  725. seraplot-2.7.10/src/plot/statistical/area.rs +0 -164
  726. seraplot-2.7.10/src/plot/statistical/bar/basic.rs +0 -13
  727. seraplot-2.7.10/src/plot/statistical/bar/config.rs +0 -63
  728. seraplot-2.7.10/src/plot/statistical/bar/deluxe.rs +0 -136
  729. seraplot-2.7.10/src/plot/statistical/bar/grouped.rs +0 -19
  730. seraplot-2.7.10/src/plot/statistical/bar/grouped_stacked.rs +0 -79
  731. seraplot-2.7.10/src/plot/statistical/bar/marimekko.rs +0 -81
  732. seraplot-2.7.10/src/plot/statistical/bar/mod.rs +0 -112
  733. seraplot-2.7.10/src/plot/statistical/bar/multicategory.rs +0 -102
  734. seraplot-2.7.10/src/plot/statistical/bar/pictogram.rs +0 -83
  735. seraplot-2.7.10/src/plot/statistical/bar/prism.rs +0 -131
  736. seraplot-2.7.10/src/plot/statistical/bar/relative.rs +0 -85
  737. seraplot-2.7.10/src/plot/statistical/bar/variant.rs +0 -17
  738. seraplot-2.7.10/src/plot/statistical/boxplot/basic.rs +0 -81
  739. seraplot-2.7.10/src/plot/statistical/boxplot/common.rs +0 -298
  740. seraplot-2.7.10/src/plot/statistical/boxplot/config.rs +0 -34
  741. seraplot-2.7.10/src/plot/statistical/boxplot/grouped.rs +0 -87
  742. seraplot-2.7.10/src/plot/statistical/boxplot/horizontal.rs +0 -119
  743. seraplot-2.7.10/src/plot/statistical/boxplot/letter_value.rs +0 -90
  744. seraplot-2.7.10/src/plot/statistical/boxplot/mod.rs +0 -79
  745. seraplot-2.7.10/src/plot/statistical/boxplot/notched.rs +0 -8
  746. seraplot-2.7.10/src/plot/statistical/boxplot/outliers.rs +0 -8
  747. seraplot-2.7.10/src/plot/statistical/boxplot/points.rs +0 -8
  748. seraplot-2.7.10/src/plot/statistical/boxplot/rainbow.rs +0 -74
  749. seraplot-2.7.10/src/plot/statistical/boxplot/strip.rs +0 -70
  750. seraplot-2.7.10/src/plot/statistical/boxplot/variant.rs +0 -16
  751. seraplot-2.7.10/src/plot/statistical/boxplot/violin.rs +0 -105
  752. seraplot-2.7.10/src/plot/statistical/bubble/basic.rs +0 -40
  753. seraplot-2.7.10/src/plot/statistical/bubble/categorical.rs +0 -60
  754. seraplot-2.7.10/src/plot/statistical/bubble/common.rs +0 -86
  755. seraplot-2.7.10/src/plot/statistical/bubble/config.rs +0 -40
  756. seraplot-2.7.10/src/plot/statistical/bubble/deluxe.rs +0 -89
  757. seraplot-2.7.10/src/plot/statistical/bubble/gradient.rs +0 -82
  758. seraplot-2.7.10/src/plot/statistical/bubble/labeled.rs +0 -62
  759. seraplot-2.7.10/src/plot/statistical/bubble/mod.rs +0 -81
  760. seraplot-2.7.10/src/plot/statistical/bubble/negative.rs +0 -71
  761. seraplot-2.7.10/src/plot/statistical/bubble/outlined.rs +0 -61
  762. seraplot-2.7.10/src/plot/statistical/bubble/plasma.rs +0 -81
  763. seraplot-2.7.10/src/plot/statistical/bubble/variant.rs +0 -14
  764. seraplot-2.7.10/src/plot/statistical/bullet/basic.rs +0 -48
  765. seraplot-2.7.10/src/plot/statistical/bullet/common.rs +0 -99
  766. seraplot-2.7.10/src/plot/statistical/bullet/compare.rs +0 -50
  767. seraplot-2.7.10/src/plot/statistical/bullet/config.rs +0 -22
  768. seraplot-2.7.10/src/plot/statistical/bullet/dot.rs +0 -47
  769. seraplot-2.7.10/src/plot/statistical/bullet/minimal.rs +0 -35
  770. seraplot-2.7.10/src/plot/statistical/bullet/mod.rs +0 -55
  771. seraplot-2.7.10/src/plot/statistical/bullet/progress.rs +0 -52
  772. seraplot-2.7.10/src/plot/statistical/bullet/segmented.rs +0 -45
  773. seraplot-2.7.10/src/plot/statistical/bullet/stacked.rs +0 -45
  774. seraplot-2.7.10/src/plot/statistical/bullet/thermo.rs +0 -83
  775. seraplot-2.7.10/src/plot/statistical/bullet/variant.rs +0 -14
  776. seraplot-2.7.10/src/plot/statistical/candlestick/basic.rs +0 -41
  777. seraplot-2.7.10/src/plot/statistical/candlestick/common.rs +0 -149
  778. seraplot-2.7.10/src/plot/statistical/candlestick/config.rs +0 -22
  779. seraplot-2.7.10/src/plot/statistical/candlestick/heikin.rs +0 -43
  780. seraplot-2.7.10/src/plot/statistical/candlestick/hollow.rs +0 -46
  781. seraplot-2.7.10/src/plot/statistical/candlestick/line.rs +0 -35
  782. seraplot-2.7.10/src/plot/statistical/candlestick/mod.rs +0 -54
  783. seraplot-2.7.10/src/plot/statistical/candlestick/mountain.rs +0 -46
  784. seraplot-2.7.10/src/plot/statistical/candlestick/ohlc.rs +0 -44
  785. seraplot-2.7.10/src/plot/statistical/candlestick/outlined.rs +0 -41
  786. seraplot-2.7.10/src/plot/statistical/candlestick/range.rs +0 -29
  787. seraplot-2.7.10/src/plot/statistical/candlestick/variant.rs +0 -14
  788. seraplot-2.7.10/src/plot/statistical/common.rs +0 -440
  789. seraplot-2.7.10/src/plot/statistical/dumbbell/arrow.rs +0 -32
  790. seraplot-2.7.10/src/plot/statistical/dumbbell/barbell.rs +0 -37
  791. seraplot-2.7.10/src/plot/statistical/dumbbell/basic.rs +0 -26
  792. seraplot-2.7.10/src/plot/statistical/dumbbell/common.rs +0 -82
  793. seraplot-2.7.10/src/plot/statistical/dumbbell/config.rs +0 -20
  794. seraplot-2.7.10/src/plot/statistical/dumbbell/delta.rs +0 -32
  795. seraplot-2.7.10/src/plot/statistical/dumbbell/dotted.rs +0 -36
  796. seraplot-2.7.10/src/plot/statistical/dumbbell/glow.rs +0 -36
  797. seraplot-2.7.10/src/plot/statistical/dumbbell/mod.rs +0 -52
  798. seraplot-2.7.10/src/plot/statistical/dumbbell/ranked.rs +0 -37
  799. seraplot-2.7.10/src/plot/statistical/dumbbell/variant.rs +0 -13
  800. seraplot-2.7.10/src/plot/statistical/funnel/basic.rs +0 -38
  801. seraplot-2.7.10/src/plot/statistical/funnel/chevron.rs +0 -39
  802. seraplot-2.7.10/src/plot/statistical/funnel/common.rs +0 -106
  803. seraplot-2.7.10/src/plot/statistical/funnel/config.rs +0 -18
  804. seraplot-2.7.10/src/plot/statistical/funnel/conversion.rs +0 -47
  805. seraplot-2.7.10/src/plot/statistical/funnel/gradient.rs +0 -49
  806. seraplot-2.7.10/src/plot/statistical/funnel/inverted.rs +0 -40
  807. seraplot-2.7.10/src/plot/statistical/funnel/mod.rs +0 -50
  808. seraplot-2.7.10/src/plot/statistical/funnel/pyramid.rs +0 -48
  809. seraplot-2.7.10/src/plot/statistical/funnel/rounded.rs +0 -49
  810. seraplot-2.7.10/src/plot/statistical/funnel/stepped.rs +0 -34
  811. seraplot-2.7.10/src/plot/statistical/funnel/variant.rs +0 -14
  812. seraplot-2.7.10/src/plot/statistical/gauge/arc270.rs +0 -39
  813. seraplot-2.7.10/src/plot/statistical/gauge/basic.rs +0 -52
  814. seraplot-2.7.10/src/plot/statistical/gauge/common.rs +0 -120
  815. seraplot-2.7.10/src/plot/statistical/gauge/concentric.rs +0 -42
  816. seraplot-2.7.10/src/plot/statistical/gauge/config.rs +0 -22
  817. seraplot-2.7.10/src/plot/statistical/gauge/glow.rs +0 -41
  818. seraplot-2.7.10/src/plot/statistical/gauge/mod.rs +0 -51
  819. seraplot-2.7.10/src/plot/statistical/gauge/radial.rs +0 -45
  820. seraplot-2.7.10/src/plot/statistical/gauge/segmented.rs +0 -43
  821. seraplot-2.7.10/src/plot/statistical/gauge/sleek.rs +0 -40
  822. seraplot-2.7.10/src/plot/statistical/gauge/tick.rs +0 -65
  823. seraplot-2.7.10/src/plot/statistical/gauge/variant.rs +0 -14
  824. seraplot-2.7.10/src/plot/statistical/grouped_bar.rs +0 -306
  825. seraplot-2.7.10/src/plot/statistical/heatmap/annotated.rs +0 -15
  826. seraplot-2.7.10/src/plot/statistical/heatmap/basic.rs +0 -9
  827. seraplot-2.7.10/src/plot/statistical/heatmap/bubble.rs +0 -151
  828. seraplot-2.7.10/src/plot/statistical/heatmap/categorical.rs +0 -17
  829. seraplot-2.7.10/src/plot/statistical/heatmap/cluster.rs +0 -51
  830. seraplot-2.7.10/src/plot/statistical/heatmap/common.rs +0 -480
  831. seraplot-2.7.10/src/plot/statistical/heatmap/config.rs +0 -76
  832. seraplot-2.7.10/src/plot/statistical/heatmap/confusion.rs +0 -17
  833. seraplot-2.7.10/src/plot/statistical/heatmap/contour.rs +0 -17
  834. seraplot-2.7.10/src/plot/statistical/heatmap/correlation.rs +0 -15
  835. seraplot-2.7.10/src/plot/statistical/heatmap/density.rs +0 -15
  836. seraplot-2.7.10/src/plot/statistical/heatmap/discrete.rs +0 -14
  837. seraplot-2.7.10/src/plot/statistical/heatmap/log.rs +0 -13
  838. seraplot-2.7.10/src/plot/statistical/heatmap/marginal.rs +0 -157
  839. seraplot-2.7.10/src/plot/statistical/heatmap/mod.rs +0 -83
  840. seraplot-2.7.10/src/plot/statistical/heatmap/pivot.rs +0 -188
  841. seraplot-2.7.10/src/plot/statistical/heatmap/temporal.rs +0 -16
  842. seraplot-2.7.10/src/plot/statistical/heatmap/unequal.rs +0 -24
  843. seraplot-2.7.10/src/plot/statistical/heatmap/variant.rs +0 -21
  844. seraplot-2.7.10/src/plot/statistical/histogram/basic.rs +0 -104
  845. seraplot-2.7.10/src/plot/statistical/histogram/common.rs +0 -52
  846. seraplot-2.7.10/src/plot/statistical/histogram/config.rs +0 -40
  847. seraplot-2.7.10/src/plot/statistical/histogram/cumulative.rs +0 -88
  848. seraplot-2.7.10/src/plot/statistical/histogram/deluxe.rs +0 -97
  849. seraplot-2.7.10/src/plot/statistical/histogram/horizontal.rs +0 -66
  850. seraplot-2.7.10/src/plot/statistical/histogram/mod.rs +0 -114
  851. seraplot-2.7.10/src/plot/statistical/histogram/normalized.rs +0 -100
  852. seraplot-2.7.10/src/plot/statistical/histogram/overlay.rs +0 -105
  853. seraplot-2.7.10/src/plot/statistical/histogram/stacked.rs +0 -95
  854. seraplot-2.7.10/src/plot/statistical/histogram/step.rs +0 -74
  855. seraplot-2.7.10/src/plot/statistical/histogram/variant.rs +0 -14
  856. seraplot-2.7.10/src/plot/statistical/kde/basic.rs +0 -65
  857. seraplot-2.7.10/src/plot/statistical/kde/common.rs +0 -113
  858. seraplot-2.7.10/src/plot/statistical/kde/config.rs +0 -24
  859. seraplot-2.7.10/src/plot/statistical/kde/cumulative.rs +0 -62
  860. seraplot-2.7.10/src/plot/statistical/kde/gradient.rs +0 -78
  861. seraplot-2.7.10/src/plot/statistical/kde/histogram.rs +0 -81
  862. seraplot-2.7.10/src/plot/statistical/kde/mod.rs +0 -66
  863. seraplot-2.7.10/src/plot/statistical/kde/normalized.rs +0 -70
  864. seraplot-2.7.10/src/plot/statistical/kde/outline.rs +0 -48
  865. seraplot-2.7.10/src/plot/statistical/kde/rug.rs +0 -89
  866. seraplot-2.7.10/src/plot/statistical/kde/stepped.rs +0 -59
  867. seraplot-2.7.10/src/plot/statistical/kde/variant.rs +0 -14
  868. seraplot-2.7.10/src/plot/statistical/line/basic.rs +0 -13
  869. seraplot-2.7.10/src/plot/statistical/line/config.rs +0 -59
  870. seraplot-2.7.10/src/plot/statistical/line/connected_scatter.rs +0 -83
  871. seraplot-2.7.10/src/plot/statistical/line/dashed.rs +0 -76
  872. seraplot-2.7.10/src/plot/statistical/line/filled.rs +0 -104
  873. seraplot-2.7.10/src/plot/statistical/line/gapped.rs +0 -107
  874. seraplot-2.7.10/src/plot/statistical/line/mod.rs +0 -91
  875. seraplot-2.7.10/src/plot/statistical/line/multi.rs +0 -18
  876. seraplot-2.7.10/src/plot/statistical/line/neon.rs +0 -123
  877. seraplot-2.7.10/src/plot/statistical/line/sparkline.rs +0 -98
  878. seraplot-2.7.10/src/plot/statistical/line/spline.rs +0 -79
  879. seraplot-2.7.10/src/plot/statistical/line/stepped.rs +0 -98
  880. seraplot-2.7.10/src/plot/statistical/line/variant.rs +0 -16
  881. seraplot-2.7.10/src/plot/statistical/lollipop/basic.rs +0 -58
  882. seraplot-2.7.10/src/plot/statistical/lollipop/circular.rs +0 -62
  883. seraplot-2.7.10/src/plot/statistical/lollipop/cleveland.rs +0 -70
  884. seraplot-2.7.10/src/plot/statistical/lollipop/common.rs +0 -95
  885. seraplot-2.7.10/src/plot/statistical/lollipop/config.rs +0 -24
  886. seraplot-2.7.10/src/plot/statistical/lollipop/diverging.rs +0 -65
  887. seraplot-2.7.10/src/plot/statistical/lollipop/highlight.rs +0 -73
  888. seraplot-2.7.10/src/plot/statistical/lollipop/mod.rs +0 -53
  889. seraplot-2.7.10/src/plot/statistical/lollipop/office.rs +0 -122
  890. seraplot-2.7.10/src/plot/statistical/lollipop/variant.rs +0 -12
  891. seraplot-2.7.10/src/plot/statistical/mod.rs +0 -129
  892. seraplot-2.7.10/src/plot/statistical/multiline.rs +0 -129
  893. seraplot-2.7.10/src/plot/statistical/parallel/arc.rs +0 -102
  894. seraplot-2.7.10/src/plot/statistical/parallel/basic.rs +0 -21
  895. seraplot-2.7.10/src/plot/statistical/parallel/categorical.rs +0 -40
  896. seraplot-2.7.10/src/plot/statistical/parallel/common.rs +0 -141
  897. seraplot-2.7.10/src/plot/statistical/parallel/config.rs +0 -26
  898. seraplot-2.7.10/src/plot/statistical/parallel/deluxe.rs +0 -102
  899. seraplot-2.7.10/src/plot/statistical/parallel/density.rs +0 -20
  900. seraplot-2.7.10/src/plot/statistical/parallel/gradient.rs +0 -84
  901. seraplot-2.7.10/src/plot/statistical/parallel/highlight.rs +0 -27
  902. seraplot-2.7.10/src/plot/statistical/parallel/mod.rs +0 -73
  903. seraplot-2.7.10/src/plot/statistical/parallel/ribbon.rs +0 -136
  904. seraplot-2.7.10/src/plot/statistical/parallel/smooth.rs +0 -49
  905. seraplot-2.7.10/src/plot/statistical/parallel/variant.rs +0 -15
  906. seraplot-2.7.10/src/plot/statistical/pie/basic.rs +0 -9
  907. seraplot-2.7.10/src/plot/statistical/pie/common.rs +0 -278
  908. seraplot-2.7.10/src/plot/statistical/pie/config.rs +0 -73
  909. seraplot-2.7.10/src/plot/statistical/pie/donut.rs +0 -11
  910. seraplot-2.7.10/src/plot/statistical/pie/exploded.rs +0 -25
  911. seraplot-2.7.10/src/plot/statistical/pie/kpi.rs +0 -25
  912. seraplot-2.7.10/src/plot/statistical/pie/mod.rs +0 -129
  913. seraplot-2.7.10/src/plot/statistical/pie/nested.rs +0 -75
  914. seraplot-2.7.10/src/plot/statistical/pie/pattern.rs +0 -11
  915. seraplot-2.7.10/src/plot/statistical/pie/proportional.rs +0 -40
  916. seraplot-2.7.10/src/plot/statistical/pie/semi.rs +0 -14
  917. seraplot-2.7.10/src/plot/statistical/pie/subplots.rs +0 -103
  918. seraplot-2.7.10/src/plot/statistical/pie/variant.rs +0 -15
  919. seraplot-2.7.10/src/plot/statistical/radar/basic.rs +0 -31
  920. seraplot-2.7.10/src/plot/statistical/radar/common.rs +0 -163
  921. seraplot-2.7.10/src/plot/statistical/radar/config.rs +0 -20
  922. seraplot-2.7.10/src/plot/statistical/radar/dashed.rs +0 -28
  923. seraplot-2.7.10/src/plot/statistical/radar/deluxe.rs +0 -109
  924. seraplot-2.7.10/src/plot/statistical/radar/filled.rs +0 -33
  925. seraplot-2.7.10/src/plot/statistical/radar/gradient.rs +0 -45
  926. seraplot-2.7.10/src/plot/statistical/radar/lines.rs +0 -28
  927. seraplot-2.7.10/src/plot/statistical/radar/markers.rs +0 -28
  928. seraplot-2.7.10/src/plot/statistical/radar/mod.rs +0 -54
  929. seraplot-2.7.10/src/plot/statistical/radar/polar_bar.rs +0 -57
  930. seraplot-2.7.10/src/plot/statistical/radar/stacked.rs +0 -53
  931. seraplot-2.7.10/src/plot/statistical/radar/variant.rs +0 -15
  932. seraplot-2.7.10/src/plot/statistical/ridgeline/basic.rs +0 -34
  933. seraplot-2.7.10/src/plot/statistical/ridgeline/common.rs +0 -213
  934. seraplot-2.7.10/src/plot/statistical/ridgeline/config.rs +0 -24
  935. seraplot-2.7.10/src/plot/statistical/ridgeline/deluxe.rs +0 -100
  936. seraplot-2.7.10/src/plot/statistical/ridgeline/gradient.rs +0 -47
  937. seraplot-2.7.10/src/plot/statistical/ridgeline/heatmap.rs +0 -56
  938. seraplot-2.7.10/src/plot/statistical/ridgeline/lines.rs +0 -28
  939. seraplot-2.7.10/src/plot/statistical/ridgeline/mean.rs +0 -52
  940. seraplot-2.7.10/src/plot/statistical/ridgeline/mod.rs +0 -53
  941. seraplot-2.7.10/src/plot/statistical/ridgeline/quartiles.rs +0 -59
  942. seraplot-2.7.10/src/plot/statistical/ridgeline/rug.rs +0 -51
  943. seraplot-2.7.10/src/plot/statistical/ridgeline/spaced.rs +0 -32
  944. seraplot-2.7.10/src/plot/statistical/ridgeline/variant.rs +0 -15
  945. seraplot-2.7.10/src/plot/statistical/scatter/basic.rs +0 -36
  946. seraplot-2.7.10/src/plot/statistical/scatter/categorical.rs +0 -56
  947. seraplot-2.7.10/src/plot/statistical/scatter/common.rs +0 -179
  948. seraplot-2.7.10/src/plot/statistical/scatter/config.rs +0 -40
  949. seraplot-2.7.10/src/plot/statistical/scatter/deluxe.rs +0 -76
  950. seraplot-2.7.10/src/plot/statistical/scatter/galaxy.rs +0 -81
  951. seraplot-2.7.10/src/plot/statistical/scatter/gradient.rs +0 -78
  952. seraplot-2.7.10/src/plot/statistical/scatter/labeled.rs +0 -57
  953. seraplot-2.7.10/src/plot/statistical/scatter/mod.rs +0 -98
  954. seraplot-2.7.10/src/plot/statistical/scatter/nova.rs +0 -120
  955. seraplot-2.7.10/src/plot/statistical/scatter/regression.rs +0 -142
  956. seraplot-2.7.10/src/plot/statistical/scatter/symbols.rs +0 -74
  957. seraplot-2.7.10/src/plot/statistical/scatter/variant.rs +0 -15
  958. seraplot-2.7.10/src/plot/statistical/slope/basic.rs +0 -35
  959. seraplot-2.7.10/src/plot/statistical/slope/bumps.rs +0 -63
  960. seraplot-2.7.10/src/plot/statistical/slope/common.rs +0 -129
  961. seraplot-2.7.10/src/plot/statistical/slope/config.rs +0 -24
  962. seraplot-2.7.10/src/plot/statistical/slope/curved.rs +0 -40
  963. seraplot-2.7.10/src/plot/statistical/slope/diverging.rs +0 -73
  964. seraplot-2.7.10/src/plot/statistical/slope/highlighted.rs +0 -55
  965. seraplot-2.7.10/src/plot/statistical/slope/mod.rs +0 -54
  966. seraplot-2.7.10/src/plot/statistical/slope/monochrome.rs +0 -38
  967. seraplot-2.7.10/src/plot/statistical/slope/stepped.rs +0 -40
  968. seraplot-2.7.10/src/plot/statistical/slope/thick.rs +0 -40
  969. seraplot-2.7.10/src/plot/statistical/slope/variant.rs +0 -14
  970. seraplot-2.7.10/src/plot/statistical/sunburst/basic.rs +0 -33
  971. seraplot-2.7.10/src/plot/statistical/sunburst/common.rs +0 -235
  972. seraplot-2.7.10/src/plot/statistical/sunburst/config.rs +0 -18
  973. seraplot-2.7.10/src/plot/statistical/sunburst/depth_fade.rs +0 -33
  974. seraplot-2.7.10/src/plot/statistical/sunburst/donut.rs +0 -44
  975. seraplot-2.7.10/src/plot/statistical/sunburst/flame.rs +0 -32
  976. seraplot-2.7.10/src/plot/statistical/sunburst/gapped.rs +0 -39
  977. seraplot-2.7.10/src/plot/statistical/sunburst/mod.rs +0 -50
  978. seraplot-2.7.10/src/plot/statistical/sunburst/mono.rs +0 -34
  979. seraplot-2.7.10/src/plot/statistical/sunburst/outlined.rs +0 -33
  980. seraplot-2.7.10/src/plot/statistical/sunburst/rainbow.rs +0 -37
  981. seraplot-2.7.10/src/plot/statistical/sunburst/variant.rs +0 -14
  982. seraplot-2.7.10/src/plot/statistical/theme.rs +0 -398
  983. seraplot-2.7.10/src/plot/statistical/treemap/basic.rs +0 -24
  984. seraplot-2.7.10/src/plot/statistical/treemap/common.rs +0 -294
  985. seraplot-2.7.10/src/plot/statistical/treemap/config.rs +0 -18
  986. seraplot-2.7.10/src/plot/statistical/treemap/flat.rs +0 -23
  987. seraplot-2.7.10/src/plot/statistical/treemap/gapped.rs +0 -32
  988. seraplot-2.7.10/src/plot/statistical/treemap/gradient.rs +0 -33
  989. seraplot-2.7.10/src/plot/statistical/treemap/heat.rs +0 -31
  990. seraplot-2.7.10/src/plot/statistical/treemap/mod.rs +0 -51
  991. seraplot-2.7.10/src/plot/statistical/treemap/mono.rs +0 -29
  992. seraplot-2.7.10/src/plot/statistical/treemap/nested.rs +0 -44
  993. seraplot-2.7.10/src/plot/statistical/treemap/outlined.rs +0 -25
  994. seraplot-2.7.10/src/plot/statistical/treemap/variant.rs +0 -14
  995. seraplot-2.7.10/src/plot/statistical/violin/aurora.rs +0 -106
  996. seraplot-2.7.10/src/plot/statistical/violin/basic.rs +0 -44
  997. seraplot-2.7.10/src/plot/statistical/violin/common.rs +0 -380
  998. seraplot-2.7.10/src/plot/statistical/violin/config.rs +0 -32
  999. seraplot-2.7.10/src/plot/statistical/violin/crystal.rs +0 -141
  1000. seraplot-2.7.10/src/plot/statistical/violin/deluxe.rs +0 -107
  1001. seraplot-2.7.10/src/plot/statistical/violin/half.rs +0 -59
  1002. seraplot-2.7.10/src/plot/statistical/violin/horizontal.rs +0 -56
  1003. seraplot-2.7.10/src/plot/statistical/violin/mean.rs +0 -45
  1004. seraplot-2.7.10/src/plot/statistical/violin/mod.rs +0 -73
  1005. seraplot-2.7.10/src/plot/statistical/violin/points.rs +0 -46
  1006. seraplot-2.7.10/src/plot/statistical/violin/quartile.rs +0 -45
  1007. seraplot-2.7.10/src/plot/statistical/violin/rainbow.rs +0 -48
  1008. seraplot-2.7.10/src/plot/statistical/violin/split.rs +0 -69
  1009. seraplot-2.7.10/src/plot/statistical/violin/strip.rs +0 -40
  1010. seraplot-2.7.10/src/plot/statistical/violin/variant.rs +0 -19
  1011. seraplot-2.7.10/src/plot/statistical/violin/with_box.rs +0 -45
  1012. seraplot-2.7.10/src/plot/statistical/waterfall/arrowed.rs +0 -58
  1013. seraplot-2.7.10/src/plot/statistical/waterfall/basic.rs +0 -45
  1014. seraplot-2.7.10/src/plot/statistical/waterfall/common.rs +0 -166
  1015. seraplot-2.7.10/src/plot/statistical/waterfall/config.rs +0 -18
  1016. seraplot-2.7.10/src/plot/statistical/waterfall/delta.rs +0 -58
  1017. seraplot-2.7.10/src/plot/statistical/waterfall/horizontal.rs +0 -122
  1018. seraplot-2.7.10/src/plot/statistical/waterfall/lollipop.rs +0 -47
  1019. seraplot-2.7.10/src/plot/statistical/waterfall/mod.rs +0 -47
  1020. seraplot-2.7.10/src/plot/statistical/waterfall/stepped.rs +0 -37
  1021. seraplot-2.7.10/src/plot/statistical/waterfall/variant.rs +0 -12
  1022. seraplot-2.7.10/src/plot/statistical/wordcloud/basic.rs +0 -8
  1023. seraplot-2.7.10/src/plot/statistical/wordcloud/bubble.rs +0 -8
  1024. seraplot-2.7.10/src/plot/statistical/wordcloud/common.rs +0 -712
  1025. seraplot-2.7.10/src/plot/statistical/wordcloud/config.rs +0 -44
  1026. seraplot-2.7.10/src/plot/statistical/wordcloud/context.rs +0 -8
  1027. seraplot-2.7.10/src/plot/statistical/wordcloud/image.rs +0 -8
  1028. seraplot-2.7.10/src/plot/statistical/wordcloud/labelmap.rs +0 -8
  1029. seraplot-2.7.10/src/plot/statistical/wordcloud/mod.rs +0 -67
  1030. seraplot-2.7.10/src/plot/statistical/wordcloud/network.rs +0 -8
  1031. seraplot-2.7.10/src/plot/statistical/wordcloud/neuron.rs +0 -156
  1032. seraplot-2.7.10/src/plot/statistical/wordcloud/shape.rs +0 -14
  1033. seraplot-2.7.10/src/plot/statistical/wordcloud/variant.rs +0 -13
  1034. seraplot-2.7.10/src/plot/utils.rs +0 -613
  1035. seraplot-2.7.10/src/telemetry.rs +0 -419
  1036. seraplot-2.7.10/src/viewer/cache.rs +0 -194
  1037. seraplot-2.7.10/src/viewer/chart.rs +0 -1795
  1038. seraplot-2.7.10/src/viewer/gui.rs +0 -210
  1039. seraplot-2.7.10/src/viewer/hybrid.rs +0 -115
  1040. seraplot-2.7.10/src/viewer/manager/button_manager.rs +0 -181
  1041. seraplot-2.7.10/src/viewer/manager/mod.rs +0 -5
  1042. seraplot-2.7.10/src/viewer/mod.rs +0 -17
  1043. seraplot-2.7.10/src/viewer/render/advanced_render.rs +0 -318
  1044. seraplot-2.7.10/src/viewer/render/fast_render_gui.rs +0 -61
  1045. seraplot-2.7.10/src/viewer/render/mod.rs +0 -12
  1046. seraplot-2.7.10/src/viewer/render/pipeline.rs +0 -384
  1047. seraplot-2.7.10/src/viewer/render/viewer_3d.rs +0 -123
  1048. seraplot-2.7.10/src/viewer/render/wiki_viewer.rs +0 -182
  1049. seraplot-2.7.10/src/viewer/utils/image_loader.rs +0 -83
  1050. seraplot-2.7.10/src/viewer/utils/mod.rs +0 -2
  1051. seraplot-2.7.10/src/wiki/api.rs +0 -147
  1052. seraplot-2.7.10/src/wiki/extractor.rs +0 -110
  1053. seraplot-2.7.10/src/wiki/language.rs +0 -63
  1054. seraplot-2.7.10/src/wiki/metadata.rs +0 -215
  1055. seraplot-2.7.10/src/wiki/mod.rs +0 -11
  1056. {seraplot-2.7.10 → seraplot-2.7.12}/README.md +0 -0
  1057. {seraplot-2.7.10 → seraplot-2.7.12}/check_output.json +0 -0
  1058. {seraplot-2.7.10 → seraplot-2.7.12}/main.py +0 -0
  1059. {seraplot-2.7.10 → seraplot-2.7.12}/seraplot-macros/Cargo.lock +0 -0
  1060. {seraplot-2.7.10 → seraplot-2.7.12}/seraplot-macros/Cargo.toml +0 -0
  1061. {seraplot-2.7.10 → seraplot-2.7.12}/seraplot-macros/src/register.rs +0 -0
  1062. {seraplot-2.7.10 → seraplot-2.7.12}/src/.github/workflows/mdbook.yml +0 -0
  1063. {seraplot-2.7.10 → seraplot-2.7.12}/src/.github/workflows/telemetry.yml +0 -0
  1064. {seraplot-2.7.10 → seraplot-2.7.12}/src/README.md +0 -0
  1065. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/commands/charts/builders.rs +0 -0
  1066. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/commands/registry.rs +0 -0
  1067. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/doc_registry.rs +0 -0
  1068. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/exports.rs +0 -0
  1069. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/fn_registry.rs +0 -0
  1070. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/model_registry.rs +0 -0
  1071. {seraplot-2.7.10 → seraplot-2.7.12}/src/bindings/registry_macro.rs +0 -0
  1072. {seraplot-2.7.10 → seraplot-2.7.12}/src/ml/models/anomaly.rs +0 -0
  1073. {seraplot-2.7.10 → seraplot-2.7.12}/src/ml/models/neighbors.rs +0 -0
  1074. {seraplot-2.7.10 → seraplot-2.7.12}/src/ml/models/svm.rs +0 -0
  1075. {seraplot-2.7.10 → seraplot-2.7.12}/src/ml/tree/decision_tree_backup.rs +0 -0
  1076. {seraplot-2.7.10 → seraplot-2.7.12}/src/playground-url.json +0 -0
  1077. {seraplot-2.7.10 → seraplot-2.7.12}/src/playground_server.py +0 -0
  1078. {seraplot-2.7.10 → seraplot-2.7.12}/src/plot/models/mod.rs +0 -0
  1079. {seraplot-2.7.10 → seraplot-2.7.12}/src/python/mod.rs +0 -0
  1080. {seraplot-2.7.10 → seraplot-2.7.12}/src/python/registry.rs +0 -0
  1081. {seraplot-2.7.10 → seraplot-2.7.12}/src/telemetry/data.csv +0 -0
  1082. {seraplot-2.7.10 → seraplot-2.7.12}/src/wiki/macros.rs +0 -0
@@ -0,0 +1,31 @@
1
+ target/**
2
+ book/**
3
+ pkg/**
4
+ pkg_nm/**
5
+ dist/**
6
+ node_modules/**
7
+ .git/**
8
+
9
+ # Generated or heavy documentation outputs. Keep markdown docs indexable, skip rendered pages.
10
+ src/docs/previews/**
11
+ src/docs/theme/*.wasm
12
+ src/docs/theme/seraplot-web*
13
+ src/docs/theme/seraplot_bg.wasm
14
+ *.html
15
+ *.wasm
16
+
17
+ # Binary/static assets are usually noise for coding context.
18
+ src/asset/**
19
+ *.png
20
+ *.jpg
21
+ *.jpeg
22
+ *.gif
23
+ *.ico
24
+
25
+ # Python and build caches.
26
+ __pycache__/**
27
+ *.pyc
28
+ .pytest_cache/**
29
+
30
+ # Local AI/generated scratch files.
31
+ .sera-ai/file_index.json
@@ -0,0 +1,18 @@
1
+ # SeraPlot Coding Instructions
2
+
3
+ SeraPlot is a Rust workspace with the main crate at the repository root and proc macros in `seraplot-macros`.
4
+
5
+ Focus context on `src/**/*.rs`, `seraplot-macros/src/**/*.rs`, `Cargo.toml`, and markdown docs when relevant. Avoid loading generated preview HTML, `target`, `book`, wasm artifacts, and binary assets unless specifically requested.
6
+
7
+ When changing code, inspect the local pattern first with `rg`, patch narrowly, and verify with `cargo fmt`, `cargo test`, or `cargo build` depending on the change. For macro changes, also inspect generated call sites and run `cargo test -p seraplot-macros`.
8
+
9
+ Important module areas:
10
+
11
+ - `src/plot`: chart families, controllers, renderers, layouts, chart input.
12
+ - `src/html`: HTML export and fast builders.
13
+ - `src/bindings`: command registries, chart types, exports, docs/model registries.
14
+ - `src/ml`: ML models, metrics, preprocessing, model selection, bindings.
15
+ - `src/core`: math, dispatch, hardware profile, adaptive execution.
16
+ - `seraplot-macros`: proc macros for model/bind/class/doc/register behavior.
17
+
18
+ Prefer existing serde, thiserror, registry, and macro patterns over new architecture.
@@ -0,0 +1,75 @@
1
+ # SeraPlot Project Memory
2
+
3
+ Use this as the compact memory file for local coding agents. It is meant to replace sending hundreds of files at once.
4
+
5
+ ## Goal
6
+
7
+ SeraPlot is a Rust plotting, visualization, documentation, and ML-oriented crate. The local agent should behave like a practical Rust maintainer: inspect the relevant files, patch code, run checks, and iterate on failures.
8
+
9
+ ## Workspace
10
+
11
+ - Root crate: `seraplot`
12
+ - Proc macro crate: `seraplot-macros`
13
+ - Workspace members: root crate and `seraplot-macros`
14
+ - Rust edition: 2021
15
+ - Core dependencies include `serde`, `serde_json`, `thiserror`, `parking_lot`, `rayon`, `image`, optional `egui/eframe`, optional `reqwest/tokio`, optional `wasm-bindgen`, optional `pyo3`, and optional `candle-core`.
16
+
17
+ ## High-Signal Paths
18
+
19
+ - `src/lib.rs`: public module layout.
20
+ - `src/core/`: math helpers, hardware profile, dispatch, adaptive execution.
21
+ - `src/plot/`: chart system.
22
+ - `src/plot/default/`: default charts and 3D default variants.
23
+ - `src/plot/statistical/`: large chart family area. Most chart variants follow a local pattern with `config.rs`, `common.rs`, `variant.rs`, `basic.rs`, and family-specific variant modules.
24
+ - `src/plot/map/`: maps, SVG parsing, choropleth, bubble map, globe.
25
+ - `src/plot/controller/`: chart controllers.
26
+ - `src/html/`: HTML export, templates, hover, 3D JavaScript glue, fast exporters/builders.
27
+ - `src/bindings/`: public bindings, command registries, chart types, model/doc registries, utility modules.
28
+ - `src/ml/`: ML implementation and public ML bindings.
29
+ - `src/viewer/`: GUI/viewer/rendering pipeline.
30
+ - `src/wiki/`: docs metadata/extraction/API helpers.
31
+ - `src/docs/**/*.md`: source docs.
32
+ - `seraplot-macros/src/`: proc macro implementation split by concern.
33
+
34
+ ## Low-Signal Paths
35
+
36
+ Skip these by default for coding context:
37
+
38
+ - `target/**`
39
+ - `book/**`
40
+ - `src/docs/previews/**`
41
+ - `src/docs/theme/*.wasm`
42
+ - generated `*.html`
43
+ - binary image assets
44
+ - `.git/**`
45
+
46
+ ## Agent Strategy
47
+
48
+ 1. Restate the concrete target internally.
49
+ 2. Use `rg` to find the symbol, chart family, registry entry, or macro involved.
50
+ 3. Read only the relevant implementation, config/common/variant files, and call sites.
51
+ 4. Patch the smallest coherent set of files.
52
+ 5. Run the narrowest useful check, then broaden if the change touches shared behavior.
53
+ 6. If tests or builds fail, inspect the error, patch, and rerun.
54
+
55
+ ## Rust Style
56
+
57
+ - Preserve existing module boundaries.
58
+ - Prefer existing serde models, `thiserror` errors, registry macros, and chart-family conventions.
59
+ - Avoid broad rewrites inside chart families; they are intentionally repetitive.
60
+ - Keep public bindings and docs registry updates in sync with new public behavior.
61
+ - For performance-sensitive paths, check existing SIMD, memory pool, adaptive buffer, and rayon patterns before inventing new utilities.
62
+
63
+ ## Useful Commands
64
+
65
+ ```powershell
66
+ rg "SymbolOrFunction" src seraplot-macros
67
+ cargo fmt
68
+ cargo test
69
+ cargo test -p seraplot-macros
70
+ cargo build
71
+ ```
72
+
73
+ ## Local Model Guidance
74
+
75
+ Use `Sera Agent Qwen3 4B Think 64K` for normal agent work. Use `Sera Deep Qwen3 4B Think 128K` only for broad architectural/debug sessions. The 128K model can read more, but it is slower on an RTX 4060 Laptop GPU; better retrieval beats dumping the whole repository into context.
@@ -0,0 +1,5 @@
1
+ {
2
+ "seraCodeAssistant.model": "gemma3:4b",
3
+ "seraCodeAssistant.defaultAgent": "code",
4
+ "git.ignoreLimitWarning": true
5
+ }
@@ -0,0 +1,47 @@
1
+ # SeraPlot v2 — Contexte permanent Hermes
2
+
3
+ Tu es le copilote spécialisé du projet SeraPlot v2.
4
+
5
+ ## Initialisation obligatoire
6
+
7
+ Au début de chaque session concernant SeraPlot :
8
+
9
+ 1. charger la skill `seraplot-copilot` ;
10
+ 2. utiliser la collection QMD `seraplot-v2` ;
11
+ 3. travailler depuis `C:\Users\Quentin\Desktop\SeraPlot\v2` ;
12
+ 4. lire les fichiers source avant toute affirmation ;
13
+ 5. valider les modifications avec Cargo.
14
+
15
+ ## Recherche
16
+
17
+ Pour une recherche exacte :
18
+
19
+ `qmd search "SYMBOL" -c seraplot-v2`
20
+
21
+ `rg -n "SYMBOL" src seraplot-macros`
22
+
23
+ Pour une recherche conceptuelle :
24
+
25
+ `qmd query "QUESTION" -c seraplot-v2`
26
+
27
+ QMD sert uniquement à retrouver les passages pertinents. Le code source réel reste la source de vérité.
28
+
29
+ ## Modification
30
+
31
+ Avant de modifier :
32
+
33
+ * présenter un plan ;
34
+ * donner les fichiers concernés ;
35
+ * éviter les changements larges ;
36
+ * demander confirmation pour les changements importants.
37
+
38
+ Après modification :
39
+
40
+ * exécuter `cargo fmt --check` ;
41
+ * exécuter `cargo check` ;
42
+ * exécuter les tests concernés ;
43
+ * mettre à jour QMD.
44
+
45
+ ## Sécurité
46
+
47
+ Ne jamais supprimer de fichiers, modifier `.git`, nettoyer le dépôt ou lancer une commande destructive sans autorisation explicite.