seraplot 2.3.68__tar.gz → 2.3.70__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 (597) hide show
  1. {seraplot-2.3.68 → seraplot-2.3.70}/Cargo.lock +1 -1
  2. {seraplot-2.3.68 → seraplot-2.3.70}/Cargo.toml +1 -1
  3. {seraplot-2.3.68 → seraplot-2.3.70}/PKG-INFO +3 -1
  4. {seraplot-2.3.68 → seraplot-2.3.70}/README.md +2 -0
  5. {seraplot-2.3.68 → seraplot-2.3.70}/pyproject.toml +2 -2
  6. seraplot-2.3.68/src/bindings/python/python.rs → seraplot-2.3.70/src/bindings/commands/charts.rs +113 -105
  7. seraplot-2.3.70/src/bindings/commands/core.rs +1386 -0
  8. seraplot-2.3.70/src/bindings/commands/docs.rs +2481 -0
  9. seraplot-2.3.68/src/bindings/python/python_ml.rs → seraplot-2.3.70/src/bindings/commands/ml.rs +37 -2
  10. seraplot-2.3.70/src/bindings/commands/mod.rs +18 -0
  11. seraplot-2.3.70/src/bindings/commands/registry.rs +45 -0
  12. seraplot-2.3.70/src/bindings/commands/wasm.rs +66 -0
  13. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/mod.rs +4 -4
  14. seraplot-2.3.70/src/bindings/registry_macro.rs +141 -0
  15. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/SUMMARY.md +10 -10
  16. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/api/index.md +5 -7
  17. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/area.md +0 -3
  18. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/bar.md +0 -11
  19. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/boxplot.md +0 -9
  20. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/bubble.md +0 -6
  21. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/bullet.md +1 -5
  22. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/candlestick.md +0 -3
  23. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/donut.md +0 -3
  24. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/dumbbell.md +0 -3
  25. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/funnel.md +0 -3
  26. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/gauge.md +0 -3
  27. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/grid.md +0 -6
  28. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/grouped-bar.md +7 -9
  29. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/hbar.md +0 -3
  30. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/heatmap.md +22 -24
  31. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/histogram-overlay.md +21 -24
  32. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/histogram.md +16 -20
  33. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/kde.md +0 -6
  34. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/line.md +0 -9
  35. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/lollipop.md +0 -3
  36. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/multiline.md +0 -6
  37. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/parallel.md +0 -9
  38. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/pie.md +0 -3
  39. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/radar.md +0 -3
  40. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/ridgeline.md +0 -11
  41. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/scatter.md +32 -32
  42. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/slideshow.md +0 -6
  43. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/slope.md +0 -3
  44. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/stacked-bar.md +0 -6
  45. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/sunburst.md +0 -6
  46. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/treemap.md +0 -6
  47. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/violin.md +0 -6
  48. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/waterfall.md +0 -3
  49. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/wordcloud.md +0 -6
  50. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/bar3d.md +0 -3
  51. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/bubble3d.md +0 -3
  52. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/candlestick3d.md +0 -3
  53. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/dumbbell3d.md +0 -3
  54. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/funnel3d.md +0 -3
  55. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/globe3d.md +1 -5
  56. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/heatmap3d.md +0 -6
  57. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/index.md +0 -2
  58. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/kde3d.md +0 -6
  59. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/line3d.md +0 -6
  60. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/lollipop3d.md +0 -3
  61. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/pie3d.md +1 -5
  62. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/radar3d.md +0 -3
  63. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/ridgeline3d.md +0 -6
  64. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/scatter3d.md +0 -6
  65. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/stacked-bar3d.md +0 -6
  66. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/sunburst3d.md +0 -6
  67. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/3d/violin3d.md +0 -6
  68. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/map/bubble-map.md +0 -3
  69. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/map/choropleth.md +0 -3
  70. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/map/index.md +1 -3
  71. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/config/background.md +0 -9
  72. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/config/hover.md +100 -143
  73. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/config/palette.md +123 -202
  74. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/getting-started/chart-methods.md +1 -76
  75. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/getting-started/chart-object.md +138 -214
  76. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/getting-started/installation.md +187 -289
  77. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/getting-started/quickstart.md +0 -4
  78. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/adaboost.md +4 -111
  79. seraplot-2.3.70/src/docs/ml/bayes-index.md +43 -0
  80. seraplot-2.3.70/src/docs/ml/clustering-index.md +39 -0
  81. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/dbscan-class.md +0 -12
  82. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/dbscan.md +0 -9
  83. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/dbscan3d.md +0 -9
  84. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/decision-tree.md +3 -146
  85. seraplot-2.3.70/src/docs/ml/decomposition-index.md +69 -0
  86. seraplot-2.3.70/src/docs/ml/decomposition.md +239 -0
  87. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/elastic-net.md +4 -4
  88. seraplot-2.3.70/src/docs/ml/evaluation-index.md +79 -0
  89. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/gradient-boosting.md +3 -144
  90. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/grid-search.md +3 -3
  91. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/knn.md +3 -146
  92. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/lasso.md +3 -3
  93. seraplot-2.3.70/src/docs/ml/linear-index.md +53 -0
  94. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/linear-regression.md +3 -3
  95. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/logistic-regression.md +3 -3
  96. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/metrics.md +5 -146
  97. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/naive-bayes.md +3 -155
  98. seraplot-2.3.70/src/docs/ml/neighbors-index.md +35 -0
  99. seraplot-2.3.70/src/docs/ml/preprocessing-index.md +69 -0
  100. seraplot-2.3.70/src/docs/ml/preprocessing.md +281 -0
  101. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/random-forest.md +3 -149
  102. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/ridge.md +3 -3
  103. seraplot-2.3.70/src/docs/ml/selection-index.md +89 -0
  104. seraplot-2.3.70/src/docs/ml/sgd.md +229 -0
  105. seraplot-2.3.70/src/docs/ml/svm-index.md +51 -0
  106. seraplot-2.3.70/src/docs/ml/svm.md +209 -0
  107. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/train-test-split.md +3 -113
  108. seraplot-2.3.70/src/docs/ml/tree-index.md +57 -0
  109. {seraplot-2.3.68 → seraplot-2.3.70}/src/lib.rs +42 -49
  110. seraplot-2.3.68/src/bindings/js/js_bindings.rs +0 -1118
  111. seraplot-2.3.68/src/bindings/js/mod.rs +0 -2
  112. seraplot-2.3.68/src/bindings/python/mod.rs +0 -7
  113. seraplot-2.3.68/src/bindings/python/python_registry.rs +0 -175
  114. seraplot-2.3.68/src/book/.nojekyll +0 -1
  115. seraplot-2.3.68/src/book/404.html +0 -232
  116. seraplot-2.3.68/src/book/api/index.html +0 -484
  117. seraplot-2.3.68/src/book/ayu-highlight-3fdfc3ac.css +0 -77
  118. seraplot-2.3.68/src/book/book-a0b12cfe.js +0 -843
  119. seraplot-2.3.68/src/book/charts/2d/area.html +0 -447
  120. seraplot-2.3.68/src/book/charts/2d/bar.html +0 -527
  121. seraplot-2.3.68/src/book/charts/2d/boxplot.html +0 -467
  122. seraplot-2.3.68/src/book/charts/2d/bubble.html +0 -463
  123. seraplot-2.3.68/src/book/charts/2d/bullet.html +0 -424
  124. seraplot-2.3.68/src/book/charts/2d/candlestick.html +0 -442
  125. seraplot-2.3.68/src/book/charts/2d/donut.html +0 -423
  126. seraplot-2.3.68/src/book/charts/2d/dumbbell.html +0 -428
  127. seraplot-2.3.68/src/book/charts/2d/funnel.html +0 -414
  128. seraplot-2.3.68/src/book/charts/2d/gauge.html +0 -423
  129. seraplot-2.3.68/src/book/charts/2d/grid.html +0 -436
  130. seraplot-2.3.68/src/book/charts/2d/grouped-bar.html +0 -505
  131. seraplot-2.3.68/src/book/charts/2d/hbar.html +0 -444
  132. seraplot-2.3.68/src/book/charts/2d/heatmap.html +0 -453
  133. seraplot-2.3.68/src/book/charts/2d/histogram-overlay.html +0 -464
  134. seraplot-2.3.68/src/book/charts/2d/histogram.html +0 -446
  135. seraplot-2.3.68/src/book/charts/2d/index.html +0 -337
  136. seraplot-2.3.68/src/book/charts/2d/kde.html +0 -443
  137. seraplot-2.3.68/src/book/charts/2d/line.html +0 -482
  138. seraplot-2.3.68/src/book/charts/2d/lollipop.html +0 -446
  139. seraplot-2.3.68/src/book/charts/2d/multiline.html +0 -456
  140. seraplot-2.3.68/src/book/charts/2d/parallel.html +0 -445
  141. seraplot-2.3.68/src/book/charts/2d/pie.html +0 -420
  142. seraplot-2.3.68/src/book/charts/2d/radar.html +0 -418
  143. seraplot-2.3.68/src/book/charts/2d/ridgeline.html +0 -447
  144. seraplot-2.3.68/src/book/charts/2d/scatter.html +0 -493
  145. seraplot-2.3.68/src/book/charts/2d/slideshow.html +0 -427
  146. seraplot-2.3.68/src/book/charts/2d/slope.html +0 -434
  147. seraplot-2.3.68/src/book/charts/2d/stacked-bar.html +0 -451
  148. seraplot-2.3.68/src/book/charts/2d/sunburst.html +0 -428
  149. seraplot-2.3.68/src/book/charts/2d/treemap.html +0 -427
  150. seraplot-2.3.68/src/book/charts/2d/violin.html +0 -454
  151. seraplot-2.3.68/src/book/charts/2d/waterfall.html +0 -432
  152. seraplot-2.3.68/src/book/charts/2d/wordcloud.html +0 -418
  153. seraplot-2.3.68/src/book/charts/3d/bar3d.html +0 -432
  154. seraplot-2.3.68/src/book/charts/3d/bubble3d.html +0 -442
  155. seraplot-2.3.68/src/book/charts/3d/candlestick3d.html +0 -430
  156. seraplot-2.3.68/src/book/charts/3d/dumbbell3d.html +0 -418
  157. seraplot-2.3.68/src/book/charts/3d/funnel3d.html +0 -402
  158. seraplot-2.3.68/src/book/charts/3d/globe3d.html +0 -431
  159. seraplot-2.3.68/src/book/charts/3d/heatmap3d.html +0 -433
  160. seraplot-2.3.68/src/book/charts/3d/index.html +0 -306
  161. seraplot-2.3.68/src/book/charts/3d/kde3d.html +0 -442
  162. seraplot-2.3.68/src/book/charts/3d/line3d.html +0 -455
  163. seraplot-2.3.68/src/book/charts/3d/lollipop3d.html +0 -414
  164. seraplot-2.3.68/src/book/charts/3d/pie3d.html +0 -409
  165. seraplot-2.3.68/src/book/charts/3d/radar3d.html +0 -416
  166. seraplot-2.3.68/src/book/charts/3d/ridgeline3d.html +0 -425
  167. seraplot-2.3.68/src/book/charts/3d/scatter3d.html +0 -475
  168. seraplot-2.3.68/src/book/charts/3d/stacked-bar3d.html +0 -441
  169. seraplot-2.3.68/src/book/charts/3d/sunburst3d.html +0 -421
  170. seraplot-2.3.68/src/book/charts/3d/violin3d.html +0 -423
  171. seraplot-2.3.68/src/book/charts/map/bubble-map.html +0 -449
  172. seraplot-2.3.68/src/book/charts/map/choropleth.html +0 -418
  173. seraplot-2.3.68/src/book/charts/map/index.html +0 -276
  174. seraplot-2.3.68/src/book/clipboard-1626706a.min.js +0 -7
  175. seraplot-2.3.68/src/book/config/auto-display.html +0 -328
  176. seraplot-2.3.68/src/book/config/background.html +0 -437
  177. seraplot-2.3.68/src/book/config/hover.html +0 -363
  178. seraplot-2.3.68/src/book/config/palette.html +0 -439
  179. seraplot-2.3.68/src/book/css/chrome-ae938929.css +0 -756
  180. seraplot-2.3.68/src/book/css/general-2459343d.css +0 -408
  181. seraplot-2.3.68/src/book/css/print-9e4910d8.css +0 -50
  182. seraplot-2.3.68/src/book/css/variables-8adf115d.css +0 -383
  183. seraplot-2.3.68/src/book/docs/theme/custom-2c6d06e4.css +0 -82
  184. seraplot-2.3.68/src/book/docs/theme/lang-switcher-7ca53ac0.js +0 -141
  185. seraplot-2.3.68/src/book/elasticlunr-ef4e11c1.min.js +0 -10
  186. seraplot-2.3.68/src/book/favicon-8114d1fc.png +0 -0
  187. seraplot-2.3.68/src/book/favicon-de23e50b.svg +0 -22
  188. seraplot-2.3.68/src/book/fonts/OPEN-SANS-LICENSE.txt +0 -202
  189. seraplot-2.3.68/src/book/fonts/SOURCE-CODE-PRO-LICENSE.txt +0 -93
  190. seraplot-2.3.68/src/book/fonts/fonts-9644e21d.css +0 -100
  191. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-300-7736aa35.woff2 +0 -0
  192. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-300italic-2c7b95c0.woff2 +0 -0
  193. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-600-486c6759.woff2 +0 -0
  194. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-600italic-1a3e8659.woff2 +0 -0
  195. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-700-c22fe8c7.woff2 +0 -0
  196. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-700italic-238ae959.woff2 +0 -0
  197. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-800-3d2c812a.woff2 +0 -0
  198. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-800italic-ba1521ec.woff2 +0 -0
  199. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-italic-6c9463f7.woff2 +0 -0
  200. seraplot-2.3.68/src/book/fonts/open-sans-v17-all-charsets-regular-2e3b1d34.woff2 +0 -0
  201. seraplot-2.3.68/src/book/fonts/source-code-pro-v11-all-charsets-500-2bdd9410.woff2 +0 -0
  202. seraplot-2.3.68/src/book/getting-started/chart-methods.html +0 -709
  203. seraplot-2.3.68/src/book/getting-started/chart-object.html +0 -398
  204. seraplot-2.3.68/src/book/getting-started/installation.html +0 -415
  205. seraplot-2.3.68/src/book/getting-started/quickstart.html +0 -556
  206. seraplot-2.3.68/src/book/highlight-493f70e1.css +0 -83
  207. seraplot-2.3.68/src/book/highlight-abc7f01d.js +0 -54
  208. seraplot-2.3.68/src/book/index.html +0 -1039
  209. seraplot-2.3.68/src/book/introduction.html +0 -1039
  210. seraplot-2.3.68/src/book/mark-09e88c2c.min.js +0 -7
  211. seraplot-2.3.68/src/book/ml/adaboost.html +0 -500
  212. seraplot-2.3.68/src/book/ml/dbscan-class.html +0 -443
  213. seraplot-2.3.68/src/book/ml/dbscan.html +0 -446
  214. seraplot-2.3.68/src/book/ml/dbscan3d.html +0 -405
  215. seraplot-2.3.68/src/book/ml/decision-tree.html +0 -542
  216. seraplot-2.3.68/src/book/ml/decomposition.html +0 -689
  217. seraplot-2.3.68/src/book/ml/elastic-net.html +0 -414
  218. seraplot-2.3.68/src/book/ml/gradient-boosting.html +0 -538
  219. seraplot-2.3.68/src/book/ml/index.html +0 -475
  220. seraplot-2.3.68/src/book/ml/kmeans-class.html +0 -466
  221. seraplot-2.3.68/src/book/ml/kmeans.html +0 -415
  222. seraplot-2.3.68/src/book/ml/knn.html +0 -523
  223. seraplot-2.3.68/src/book/ml/lasso.html +0 -382
  224. seraplot-2.3.68/src/book/ml/linear-regression.html +0 -372
  225. seraplot-2.3.68/src/book/ml/logistic-regression.html +0 -394
  226. seraplot-2.3.68/src/book/ml/metrics.html +0 -505
  227. seraplot-2.3.68/src/book/ml/naive-bayes.html +0 -622
  228. seraplot-2.3.68/src/book/ml/preprocessing.html +0 -821
  229. seraplot-2.3.68/src/book/ml/random-forest.html +0 -539
  230. seraplot-2.3.68/src/book/ml/ridge.html +0 -408
  231. seraplot-2.3.68/src/book/ml/sgd.html +0 -790
  232. seraplot-2.3.68/src/book/ml/svm.html +0 -727
  233. seraplot-2.3.68/src/book/ml/train-test-split.html +0 -545
  234. seraplot-2.3.68/src/book/print.html +0 -19815
  235. seraplot-2.3.68/src/book/searcher-c2a407aa.js +0 -555
  236. seraplot-2.3.68/src/book/searchindex-f4e084c2.js +0 -1
  237. seraplot-2.3.68/src/book/toc-eef86151.js +0 -454
  238. seraplot-2.3.68/src/book/toc.html +0 -32
  239. seraplot-2.3.68/src/book/tomorrow-night-4c0ae647.css +0 -104
  240. seraplot-2.3.68/src/docs/ml/decomposition.md +0 -516
  241. seraplot-2.3.68/src/docs/ml/preprocessing.md +0 -626
  242. seraplot-2.3.68/src/docs/ml/sgd.md +0 -560
  243. seraplot-2.3.68/src/docs/ml/svm.md +0 -525
  244. seraplot-2.3.68/src/docs/previews/area.html +0 -220
  245. seraplot-2.3.68/src/docs/previews/bar.html +0 -220
  246. seraplot-2.3.68/src/docs/previews/bar3d.html +0 -1102
  247. seraplot-2.3.68/src/docs/previews/bench-matplotlib.html +0 -1
  248. seraplot-2.3.68/src/docs/previews/bench-plotly.html +0 -1
  249. seraplot-2.3.68/src/docs/previews/bench-seraplot.html +0 -1
  250. seraplot-2.3.68/src/docs/previews/boxplot.html +0 -220
  251. seraplot-2.3.68/src/docs/previews/bubble-map.html +0 -220
  252. seraplot-2.3.68/src/docs/previews/bubble.html +0 -220
  253. seraplot-2.3.68/src/docs/previews/bubble3d.html +0 -1102
  254. seraplot-2.3.68/src/docs/previews/bullet.html +0 -220
  255. seraplot-2.3.68/src/docs/previews/candlestick.html +0 -220
  256. seraplot-2.3.68/src/docs/previews/candlestick3d.html +0 -1102
  257. seraplot-2.3.68/src/docs/previews/choropleth.html +0 -220
  258. seraplot-2.3.68/src/docs/previews/dbscan-class.html +0 -220
  259. seraplot-2.3.68/src/docs/previews/dbscan.html +0 -220
  260. seraplot-2.3.68/src/docs/previews/dbscan3d.html +0 -1102
  261. seraplot-2.3.68/src/docs/previews/donut.html +0 -220
  262. seraplot-2.3.68/src/docs/previews/dumbbell.html +0 -220
  263. seraplot-2.3.68/src/docs/previews/dumbbell3d.html +0 -1102
  264. seraplot-2.3.68/src/docs/previews/funnel.html +0 -220
  265. seraplot-2.3.68/src/docs/previews/funnel3d.html +0 -1102
  266. seraplot-2.3.68/src/docs/previews/gauge.html +0 -220
  267. seraplot-2.3.68/src/docs/previews/globe3d.html +0 -1103
  268. seraplot-2.3.68/src/docs/previews/grid.html +0 -877
  269. seraplot-2.3.68/src/docs/previews/grouped-bar.html +0 -220
  270. seraplot-2.3.68/src/docs/previews/hbar.html +0 -220
  271. seraplot-2.3.68/src/docs/previews/heatmap.html +0 -220
  272. seraplot-2.3.68/src/docs/previews/heatmap3d.html +0 -1102
  273. seraplot-2.3.68/src/docs/previews/histogram-overlay.html +0 -220
  274. seraplot-2.3.68/src/docs/previews/histogram.html +0 -220
  275. seraplot-2.3.68/src/docs/previews/kde.html +0 -220
  276. seraplot-2.3.68/src/docs/previews/kde3d.html +0 -1102
  277. seraplot-2.3.68/src/docs/previews/line.html +0 -220
  278. seraplot-2.3.68/src/docs/previews/line3d.html +0 -1102
  279. seraplot-2.3.68/src/docs/previews/lollipop.html +0 -220
  280. seraplot-2.3.68/src/docs/previews/lollipop3d.html +0 -1102
  281. seraplot-2.3.68/src/docs/previews/multiline.html +0 -220
  282. seraplot-2.3.68/src/docs/previews/parallel.html +0 -220
  283. seraplot-2.3.68/src/docs/previews/pie.html +0 -220
  284. seraplot-2.3.68/src/docs/previews/pie3d.html +0 -1102
  285. seraplot-2.3.68/src/docs/previews/radar.html +0 -220
  286. seraplot-2.3.68/src/docs/previews/radar3d.html +0 -1102
  287. seraplot-2.3.68/src/docs/previews/ridgeline.html +0 -220
  288. seraplot-2.3.68/src/docs/previews/ridgeline3d.html +0 -1102
  289. seraplot-2.3.68/src/docs/previews/scatter.html +0 -220
  290. seraplot-2.3.68/src/docs/previews/scatter3d.html +0 -1102
  291. seraplot-2.3.68/src/docs/previews/slideshow.html +0 -1
  292. seraplot-2.3.68/src/docs/previews/slope.html +0 -220
  293. seraplot-2.3.68/src/docs/previews/stacked-bar.html +0 -220
  294. seraplot-2.3.68/src/docs/previews/stacked-bar3d.html +0 -1102
  295. seraplot-2.3.68/src/docs/previews/sunburst.html +0 -220
  296. seraplot-2.3.68/src/docs/previews/sunburst3d.html +0 -1102
  297. seraplot-2.3.68/src/docs/previews/treemap.html +0 -220
  298. seraplot-2.3.68/src/docs/previews/violin.html +0 -220
  299. seraplot-2.3.68/src/docs/previews/violin3d.html +0 -1102
  300. seraplot-2.3.68/src/docs/previews/waterfall.html +0 -220
  301. seraplot-2.3.68/src/docs/previews/wordcloud.html +0 -220
  302. seraplot-2.3.68/src/docs/theme/custom.css +0 -82
  303. seraplot-2.3.68/src/docs/theme/lang-switcher.js +0 -141
  304. {seraplot-2.3.68 → seraplot-2.3.70}/.gitignore +0 -0
  305. {seraplot-2.3.68 → seraplot-2.3.70}/05--Diabetes_SeraPlot.ipynb +0 -0
  306. {seraplot-2.3.68 → seraplot-2.3.70}/07--OpenFoodFacts_SeraPlot_Benchmark.ipynb +0 -0
  307. {seraplot-2.3.68 → seraplot-2.3.70}/TEST_1M_Battle.ipynb +0 -0
  308. {seraplot-2.3.68 → seraplot-2.3.70}/bench_all.py +0 -0
  309. {seraplot-2.3.68 → seraplot-2.3.70}/bench_bigdata.py +0 -0
  310. {seraplot-2.3.68 → seraplot-2.3.70}/bench_full.py +0 -0
  311. {seraplot-2.3.68 → seraplot-2.3.70}/bench_issues.json +0 -0
  312. {seraplot-2.3.68 → seraplot-2.3.70}/bench_knn_sgd.py +0 -0
  313. {seraplot-2.3.68 → seraplot-2.3.70}/bench_perf.py +0 -0
  314. {seraplot-2.3.68 → seraplot-2.3.70}/bench_quick.py +0 -0
  315. {seraplot-2.3.68 → seraplot-2.3.70}/bench_quick2.py +0 -0
  316. {seraplot-2.3.68 → seraplot-2.3.70}/bench_scale.py +0 -0
  317. {seraplot-2.3.68 → seraplot-2.3.70}/bench_seraplot.py +0 -0
  318. {seraplot-2.3.68 → seraplot-2.3.70}/bench_sklearn.py +0 -0
  319. {seraplot-2.3.68 → seraplot-2.3.70}/bench_svc.py +0 -0
  320. {seraplot-2.3.68 → seraplot-2.3.70}/bench_svc2.py +0 -0
  321. {seraplot-2.3.68 → seraplot-2.3.70}/bench_test.py +0 -0
  322. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_gridsearch.py +0 -0
  323. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_gridsearch2.py +0 -0
  324. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_kmeans_heavy.ipynb +0 -0
  325. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_kmeans_openfoodfacts.ipynb +0 -0
  326. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_ml.ipynb +0 -0
  327. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_ml_openfoodfacts.ipynb +0 -0
  328. {seraplot-2.3.68 → seraplot-2.3.70}/benchmark_ml_out.ipynb +0 -0
  329. {seraplot-2.3.68 → seraplot-2.3.70}/gen_bench_slides.py +0 -0
  330. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/1.png +0 -0
  331. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/2.png +0 -0
  332. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/3.png +0 -0
  333. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/4.png +0 -0
  334. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/5.png +0 -0
  335. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/6.png +0 -0
  336. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/7.png +0 -0
  337. {seraplot-2.3.68 → seraplot-2.3.70}/images/2d/8.png +0 -0
  338. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/1.png +0 -0
  339. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/2.png +0 -0
  340. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/3.png +0 -0
  341. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/4.png +0 -0
  342. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/5.png +0 -0
  343. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/6.png +0 -0
  344. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/7.png +0 -0
  345. {seraplot-2.3.68 → seraplot-2.3.70}/images/3d/8.png +0 -0
  346. {seraplot-2.3.68 → seraplot-2.3.70}/images/README.md +0 -0
  347. {seraplot-2.3.68 → seraplot-2.3.70}/images/benchmark/1.png +0 -0
  348. {seraplot-2.3.68 → seraplot-2.3.70}/images/benchmark/2.png +0 -0
  349. {seraplot-2.3.68 → seraplot-2.3.70}/images/benchmark/3.png +0 -0
  350. {seraplot-2.3.68 → seraplot-2.3.70}/images/logo.png +0 -0
  351. {seraplot-2.3.68 → seraplot-2.3.70}/kmeans_test.html +0 -0
  352. {seraplot-2.3.68 → seraplot-2.3.70}/python/seraplot/__init__.py +0 -0
  353. {seraplot-2.3.68 → seraplot-2.3.70}/python/seraplot/matplotlib.py +0 -0
  354. {seraplot-2.3.68 → seraplot-2.3.70}/python/seraplot/seraplot.cp311-win_amd64.pyd.old +0 -0
  355. {seraplot-2.3.68 → seraplot-2.3.70}/results_seraplot.json +0 -0
  356. {seraplot-2.3.68 → seraplot-2.3.70}/results_sklearn.json +0 -0
  357. {seraplot-2.3.68 → seraplot-2.3.70}/src/.github/workflows/mdbook.yml +0 -0
  358. {seraplot-2.3.68 → seraplot-2.3.70}/src/README.md +0 -0
  359. {seraplot-2.3.68 → seraplot-2.3.70}/src/asset/SVG World Map with labels.svg +0 -0
  360. {seraplot-2.3.68 → seraplot-2.3.70}/src/asset/logo.png +0 -0
  361. {seraplot-2.3.68 → seraplot-2.3.70}/src/asset/world.svg +0 -0
  362. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/builder_template.rs +0 -0
  363. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/chart_types.rs +0 -0
  364. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/export_builder.rs +0 -0
  365. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/fast_export_c.rs +0 -0
  366. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/fast_render.rs +0 -0
  367. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/memory_pool.rs +0 -0
  368. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/unified_builder.rs +0 -0
  369. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/unified_config.rs +0 -0
  370. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/arena_alloc.rs +0 -0
  371. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/bitset.rs +0 -0
  372. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/compact_state.rs +0 -0
  373. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/data_processor.rs +0 -0
  374. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/image_processor.rs +0 -0
  375. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/lazy_builders.rs +0 -0
  376. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/memory_pool.rs +0 -0
  377. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/mod.rs +0 -0
  378. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/simd_ops.rs +0 -0
  379. {seraplot-2.3.68 → seraplot-2.3.70}/src/bindings/utils/state_export.rs +0 -0
  380. {seraplot-2.3.68 → seraplot-2.3.70}/src/book.toml +0 -0
  381. {seraplot-2.3.68 → seraplot-2.3.70}/src/core/builders.rs +0 -0
  382. {seraplot-2.3.68 → seraplot-2.3.70}/src/core/math.rs +0 -0
  383. {seraplot-2.3.68 → seraplot-2.3.70}/src/core/mod.rs +0 -0
  384. {seraplot-2.3.68 → seraplot-2.3.70}/src/data/conversion.rs +0 -0
  385. {seraplot-2.3.68 → seraplot-2.3.70}/src/data/index.rs +0 -0
  386. {seraplot-2.3.68 → seraplot-2.3.70}/src/data/loader.rs +0 -0
  387. {seraplot-2.3.68 → seraplot-2.3.70}/src/data/mod.rs +0 -0
  388. {seraplot-2.3.68 → seraplot-2.3.70}/src/data/processor.rs +0 -0
  389. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/charts/2d/index.md +0 -0
  390. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/config/auto-display.md +0 -0
  391. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/introduction.md +0 -0
  392. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/index.md +0 -0
  393. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/kmeans-class.md +0 -0
  394. {seraplot-2.3.68 → seraplot-2.3.70}/src/docs/ml/kmeans.md +0 -0
  395. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/area.html +0 -0
  396. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bar.html +0 -0
  397. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bar3d.html +0 -0
  398. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bench-matplotlib.html +0 -0
  399. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bench-plotly.html +0 -0
  400. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bench-seraplot.html +0 -0
  401. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/boxplot.html +0 -0
  402. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bubble-map.html +0 -0
  403. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bubble.html +0 -0
  404. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bubble3d.html +0 -0
  405. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/bullet.html +0 -0
  406. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/candlestick.html +0 -0
  407. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/candlestick3d.html +0 -0
  408. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/choropleth.html +0 -0
  409. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/dbscan-class.html +0 -0
  410. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/dbscan.html +0 -0
  411. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/dbscan3d.html +0 -0
  412. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/donut.html +0 -0
  413. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/dumbbell.html +0 -0
  414. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/dumbbell3d.html +0 -0
  415. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/funnel.html +0 -0
  416. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/funnel3d.html +0 -0
  417. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/gauge.html +0 -0
  418. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/globe3d.html +0 -0
  419. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/grid.html +0 -0
  420. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/grouped-bar.html +0 -0
  421. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/hbar.html +0 -0
  422. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/heatmap.html +0 -0
  423. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/heatmap3d.html +0 -0
  424. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/histogram-overlay.html +0 -0
  425. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/histogram.html +0 -0
  426. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/kde.html +0 -0
  427. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/kde3d.html +0 -0
  428. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/line.html +0 -0
  429. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/line3d.html +0 -0
  430. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/lollipop.html +0 -0
  431. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/lollipop3d.html +0 -0
  432. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/multiline.html +0 -0
  433. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/parallel.html +0 -0
  434. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/pie.html +0 -0
  435. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/pie3d.html +0 -0
  436. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/radar.html +0 -0
  437. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/radar3d.html +0 -0
  438. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/ridgeline.html +0 -0
  439. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/ridgeline3d.html +0 -0
  440. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/scatter.html +0 -0
  441. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/scatter3d.html +0 -0
  442. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/slideshow.html +0 -0
  443. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/slope.html +0 -0
  444. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/stacked-bar.html +0 -0
  445. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/stacked-bar3d.html +0 -0
  446. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/sunburst.html +0 -0
  447. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/sunburst3d.html +0 -0
  448. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/treemap.html +0 -0
  449. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/violin.html +0 -0
  450. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/violin3d.html +0 -0
  451. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/waterfall.html +0 -0
  452. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/previews/wordcloud.html +0 -0
  453. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/theme/custom.css +0 -0
  454. {seraplot-2.3.68/src/book → seraplot-2.3.70/src/docs}/theme/lang-switcher.js +0 -0
  455. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/assets.rs +0 -0
  456. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/fast_builders.rs +0 -0
  457. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/fast_exporter.rs +0 -0
  458. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/hover.rs +0 -0
  459. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/html_export.rs +0 -0
  460. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/html_template.rs +0 -0
  461. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/js_3d.rs +0 -0
  462. {seraplot-2.3.68 → seraplot-2.3.70}/src/html/mod.rs +0 -0
  463. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/cache.rs +0 -0
  464. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/decomposition/mod.rs +0 -0
  465. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/decomposition/pca.rs +0 -0
  466. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linalg.rs +0 -0
  467. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/elastic_net.rs +0 -0
  468. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/lasso.rs +0 -0
  469. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/logistic.rs +0 -0
  470. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/mod.rs +0 -0
  471. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/ols.rs +0 -0
  472. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/ridge.rs +0 -0
  473. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/linear/sgd.rs +0 -0
  474. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/metrics/classification.rs +0 -0
  475. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/metrics/mod.rs +0 -0
  476. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/metrics/regression.rs +0 -0
  477. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/mod.rs +0 -0
  478. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/model_selection/cross_val.rs +0 -0
  479. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/model_selection/grid_search.rs +0 -0
  480. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/model_selection/mod.rs +0 -0
  481. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/model_selection/split.rs +0 -0
  482. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/naive_bayes/bernoulli.rs +0 -0
  483. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/naive_bayes/gaussian.rs +0 -0
  484. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/naive_bayes/mod.rs +0 -0
  485. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/naive_bayes/multinomial.rs +0 -0
  486. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/neighbors/knn.rs +0 -0
  487. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/neighbors/mod.rs +0 -0
  488. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/preprocessing/encoders.rs +0 -0
  489. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/preprocessing/mod.rs +0 -0
  490. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/preprocessing/scalers.rs +0 -0
  491. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/svm/mod.rs +0 -0
  492. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/svm/svm.rs +0 -0
  493. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/tree/adaboost.rs +0 -0
  494. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/tree/decision_tree.rs +0 -0
  495. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/tree/decision_tree_backup.rs +0 -0
  496. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/tree/gradient_boosting.rs +0 -0
  497. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/tree/mod.rs +0 -0
  498. {seraplot-2.3.68 → seraplot-2.3.70}/src/ml/tree/random_forest.rs +0 -0
  499. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/camera.rs +0 -0
  500. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/canvas.rs +0 -0
  501. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/containers_3d.rs +0 -0
  502. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/controller/chart_controller.rs +0 -0
  503. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/controller/mod.rs +0 -0
  504. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/controller/plot_3d_controller.rs +0 -0
  505. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/_3d/bar_3d.rs +0 -0
  506. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/_3d/line_3d.rs +0 -0
  507. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/_3d/mod.rs +0 -0
  508. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/_3d/plot_3d_types.rs +0 -0
  509. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/_3d/scatter_3d.rs +0 -0
  510. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/bar.rs +0 -0
  511. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/chart.rs +0 -0
  512. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/kmeans.rs +0 -0
  513. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/line.rs +0 -0
  514. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/mod.rs +0 -0
  515. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/scatter.rs +0 -0
  516. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/default/svg.rs +0 -0
  517. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/generic.rs +0 -0
  518. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/_3d/globe.rs +0 -0
  519. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/_3d/globe_html.rs +0 -0
  520. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/_3d/globe_types.rs +0 -0
  521. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/_3d/mod.rs +0 -0
  522. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/bubble_map.rs +0 -0
  523. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/chart.rs +0 -0
  524. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/choropleth.rs +0 -0
  525. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/mod.rs +0 -0
  526. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/svg_parser.rs +0 -0
  527. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/map/world_data.rs +0 -0
  528. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/mod.rs +0 -0
  529. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/projection.rs +0 -0
  530. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/renderers.rs +0 -0
  531. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/scale_renderer.rs +0 -0
  532. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/seaborn/_3d/mod.rs +0 -0
  533. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/seaborn/_3d/plot_3d_types.rs +0 -0
  534. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/seaborn/chart.rs +0 -0
  535. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/seaborn/mod.rs +0 -0
  536. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/candlestick3d.rs +0 -0
  537. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/dumbbell3d.rs +0 -0
  538. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/funnel3d.rs +0 -0
  539. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/heatmap3d.rs +0 -0
  540. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/kde3d.rs +0 -0
  541. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/lollipop3d.rs +0 -0
  542. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/mod.rs +0 -0
  543. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/pie3d.rs +0 -0
  544. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/plot_3d_types.rs +0 -0
  545. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/radar3d.rs +0 -0
  546. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/ridgeline3d.rs +0 -0
  547. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/stacked_bar3d.rs +0 -0
  548. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/sunburst3d.rs +0 -0
  549. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/_3d/violin3d.rs +0 -0
  550. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/area.rs +0 -0
  551. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/boxplot.rs +0 -0
  552. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/bubble.rs +0 -0
  553. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/bullet.rs +0 -0
  554. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/candlestick.rs +0 -0
  555. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/common.rs +0 -0
  556. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/dumbbell.rs +0 -0
  557. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/funnel.rs +0 -0
  558. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/gauge.rs +0 -0
  559. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/grouped_bar.rs +0 -0
  560. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/heatmap.rs +0 -0
  561. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/histogram.rs +0 -0
  562. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/kde.rs +0 -0
  563. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/lollipop.rs +0 -0
  564. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/mod.rs +0 -0
  565. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/multiline.rs +0 -0
  566. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/parallel.rs +0 -0
  567. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/pie.rs +0 -0
  568. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/radar.rs +0 -0
  569. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/ridgeline.rs +0 -0
  570. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/slope.rs +0 -0
  571. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/sunburst.rs +0 -0
  572. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/treemap.rs +0 -0
  573. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/violin.rs +0 -0
  574. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/waterfall.rs +0 -0
  575. {seraplot-2.3.68 → seraplot-2.3.70}/src/plot/statistical/wordcloud.rs +0 -0
  576. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/cache.rs +0 -0
  577. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/chart.rs +0 -0
  578. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/gui.rs +0 -0
  579. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/hybrid.rs +0 -0
  580. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/manager/button_manager.rs +0 -0
  581. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/manager/mod.rs +0 -0
  582. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/mod.rs +0 -0
  583. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/render/advanced_render.rs +0 -0
  584. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/render/fast_render_gui.rs +0 -0
  585. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/render/mod.rs +0 -0
  586. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/render/pipeline.rs +0 -0
  587. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/render/viewer_3d.rs +0 -0
  588. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/render/wiki_viewer.rs +0 -0
  589. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/utils/image_loader.rs +0 -0
  590. {seraplot-2.3.68 → seraplot-2.3.70}/src/viewer/utils/mod.rs +0 -0
  591. {seraplot-2.3.68 → seraplot-2.3.70}/src/wiki/api.rs +0 -0
  592. {seraplot-2.3.68 → seraplot-2.3.70}/src/wiki/extractor.rs +0 -0
  593. {seraplot-2.3.68 → seraplot-2.3.70}/src/wiki/language.rs +0 -0
  594. {seraplot-2.3.68 → seraplot-2.3.70}/src/wiki/macros.rs +0 -0
  595. {seraplot-2.3.68 → seraplot-2.3.70}/src/wiki/metadata.rs +0 -0
  596. {seraplot-2.3.68 → seraplot-2.3.70}/src/wiki/mod.rs +0 -0
  597. {seraplot-2.3.68 → seraplot-2.3.70}/test_accuracy.py +0 -0
@@ -3471,7 +3471,7 @@ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3471
3471
 
3472
3472
  [[package]]
3473
3473
  name = "seraplot"
3474
- version = "2.3.68"
3474
+ version = "2.3.70"
3475
3475
  dependencies = [
3476
3476
  "base64 0.22.1",
3477
3477
  "criterion",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "seraplot"
3
- version = "2.3.68"
3
+ version = "2.3.70"
4
4
  edition = "2021"
5
5
  authors = ["feur25"]
6
6
  description = "Rust data visualization framework - The modern Plotly alternative"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seraplot
3
- Version: 2.3.68
3
+ Version: 2.3.70
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Win32 (MS Windows)
6
6
  Classifier: Intended Audience :: Developers
@@ -37,6 +37,8 @@ alternative to Plotly, designed specifically for data visualization. This librar
37
37
  across multiple programming languages (Python, C#, C++, JavaScript), regularly maintained and
38
38
  updated, offering superior speed and significantly lower memory consumption compared to competitors.
39
39
 
40
+ documentation : https://feur25.github.io/seraplot/introduction.html
41
+
40
42
  ---
41
43
 
42
44
  ### Why Choose SeraPlot
@@ -5,6 +5,8 @@ alternative to Plotly, designed specifically for data visualization. This librar
5
5
  across multiple programming languages (Python, C#, C++, JavaScript), regularly maintained and
6
6
  updated, offering superior speed and significantly lower memory consumption compared to competitors.
7
7
 
8
+ documentation : https://feur25.github.io/seraplot/introduction.html
9
+
8
10
  ---
9
11
 
10
12
  ### Why Choose SeraPlot
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "seraplot"
7
- version = "2.3.68"
7
+ version = "2.3.70"
8
8
  description = "Rust data visualization framework - The modern Plotly alternative"
9
9
  readme = "README.md"
10
10
  readme-content-type = "text/markdown"
@@ -39,4 +39,4 @@ classifiers = [
39
39
 
40
40
  [tool.maturin]
41
41
  features = ["python"]
42
- python-source = "python"
42
+ python-source = "python"