lets-plot 4.7.0rc3__cp313-cp313-win_amd64.whl → 4.7.1rc1__cp313-cp313-win_amd64.whl

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.

Potentially problematic release.


This version of lets-plot might be problematic. Click here for more details.

Files changed (61) hide show
  1. lets_plot/__init__.py +14 -14
  2. lets_plot/_global_settings.py +0 -4
  3. lets_plot/_kbridge.py +11 -3
  4. lets_plot/_version.py +1 -1
  5. lets_plot/bistro/corr.py +28 -27
  6. lets_plot/bistro/im.py +4 -4
  7. lets_plot/bistro/joint.py +7 -7
  8. lets_plot/bistro/qq.py +16 -16
  9. lets_plot/bistro/residual.py +10 -10
  10. lets_plot/bistro/waterfall.py +26 -27
  11. lets_plot/export/ggsave_.py +29 -17
  12. lets_plot/frontend_context/_configuration.py +2 -2
  13. lets_plot/frontend_context/_html_contexts.py +6 -6
  14. lets_plot/geo_data/core.py +26 -22
  15. lets_plot/geo_data/geocoder.py +67 -56
  16. lets_plot/mapping.py +3 -3
  17. lets_plot/package_data/lets-plot.min.js +1 -1
  18. lets_plot/plot/annotation.py +5 -5
  19. lets_plot/plot/coord.py +4 -4
  20. lets_plot/plot/core.py +77 -141
  21. lets_plot/plot/expand_limits_.py +2 -2
  22. lets_plot/plot/facet.py +21 -17
  23. lets_plot/plot/font_features.py +3 -3
  24. lets_plot/plot/geom.py +1129 -1103
  25. lets_plot/plot/geom_extras.py +1 -1
  26. lets_plot/plot/geom_function_.py +16 -13
  27. lets_plot/plot/geom_imshow_.py +8 -7
  28. lets_plot/plot/geom_livemap_.py +38 -13
  29. lets_plot/plot/ggbunch_.py +1 -1
  30. lets_plot/plot/gggrid_.py +3 -3
  31. lets_plot/plot/ggtb_.py +1 -1
  32. lets_plot/plot/guide.py +9 -7
  33. lets_plot/plot/label.py +9 -9
  34. lets_plot/plot/marginal_layer.py +4 -4
  35. lets_plot/plot/plot.py +17 -16
  36. lets_plot/plot/pos.py +15 -15
  37. lets_plot/plot/sampling.py +8 -8
  38. lets_plot/plot/scale.py +153 -150
  39. lets_plot/plot/scale_colormap_mpl.py +9 -6
  40. lets_plot/plot/scale_convenience.py +6 -6
  41. lets_plot/plot/scale_identity_.py +9 -9
  42. lets_plot/plot/scale_position.py +16 -16
  43. lets_plot/plot/series_meta.py +7 -1
  44. lets_plot/plot/stat.py +64 -60
  45. lets_plot/plot/subplots.py +31 -22
  46. lets_plot/plot/theme_.py +93 -92
  47. lets_plot/plot/theme_set.py +15 -14
  48. lets_plot/plot/tooltip.py +14 -14
  49. lets_plot/plot/util.py +33 -3
  50. lets_plot/settings_utils.py +12 -12
  51. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/METADATA +62 -43
  52. lets_plot-4.7.1rc1.dist-info/RECORD +95 -0
  53. lets_plot_kotlin_bridge.cp313-win_amd64.pyd +0 -0
  54. lets_plot-4.7.0rc3.dist-info/RECORD +0 -95
  55. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/WHEEL +0 -0
  56. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/LICENSE +0 -0
  57. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.FreeType +0 -0
  58. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.ImageMagick +0 -0
  59. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.expat +0 -0
  60. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.fontconfig +0 -0
  61. {lets_plot-4.7.0rc3.dist-info → lets_plot-4.7.1rc1.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ def sampling_random(n, seed=None):
27
27
 
28
28
  Returns
29
29
  -------
30
- `FeatureSpec`
30
+ ``FeatureSpec``
31
31
  Random sample specification.
32
32
 
33
33
  Examples
@@ -66,7 +66,7 @@ def sampling_random_stratified(n, seed=None, min_subsample=None):
66
66
 
67
67
  Returns
68
68
  -------
69
- `FeatureSpec`
69
+ ``FeatureSpec``
70
70
  Stratified random sample specification.
71
71
 
72
72
  Examples
@@ -101,7 +101,7 @@ def sampling_pick(n):
101
101
 
102
102
  Returns
103
103
  -------
104
- `FeatureSpec`
104
+ ``FeatureSpec``
105
105
  Sample specification.
106
106
 
107
107
  Examples
@@ -133,7 +133,7 @@ def sampling_systematic(n):
133
133
 
134
134
  Returns
135
135
  -------
136
- `FeatureSpec`
136
+ ``FeatureSpec``
137
137
  Systematic sample specification.
138
138
 
139
139
  Examples
@@ -168,7 +168,7 @@ def sampling_group_systematic(n):
168
168
 
169
169
  Returns
170
170
  -------
171
- `FeatureSpec`
171
+ ``FeatureSpec``
172
172
  Group systematic sample specification.
173
173
 
174
174
  Examples
@@ -207,7 +207,7 @@ def sampling_group_random(n, seed=None):
207
207
 
208
208
  Returns
209
209
  -------
210
- `FeatureSpec`
210
+ ``FeatureSpec``
211
211
  Group sample specification.
212
212
 
213
213
  Examples
@@ -248,7 +248,7 @@ def sampling_vertex_vw(n, polygon=None):
248
248
 
249
249
  Returns
250
250
  -------
251
- `FeatureSpec`
251
+ ``FeatureSpec``
252
252
  Vertices sample specification.
253
253
 
254
254
  Notes
@@ -299,7 +299,7 @@ def sampling_vertex_dp(n, polygon=None):
299
299
 
300
300
  Returns
301
301
  -------
302
- `FeatureSpec`
302
+ ``FeatureSpec``
303
303
  Vertices sample specification.
304
304
 
305
305
  Notes