lets-plot 4.7.0rc2__cp39-cp39-win_amd64.whl → 4.7.1rc1__cp39-cp39-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.
- lets_plot/__init__.py +14 -14
- lets_plot/_global_settings.py +0 -4
- lets_plot/_kbridge.py +11 -3
- lets_plot/_version.py +1 -1
- lets_plot/bistro/corr.py +28 -27
- lets_plot/bistro/im.py +4 -4
- lets_plot/bistro/joint.py +7 -7
- lets_plot/bistro/qq.py +16 -16
- lets_plot/bistro/residual.py +10 -10
- lets_plot/bistro/waterfall.py +26 -27
- lets_plot/export/ggsave_.py +29 -17
- lets_plot/frontend_context/_configuration.py +2 -2
- lets_plot/frontend_context/_html_contexts.py +6 -6
- lets_plot/geo_data/core.py +26 -22
- lets_plot/geo_data/geocoder.py +67 -56
- lets_plot/mapping.py +3 -3
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/annotation.py +5 -5
- lets_plot/plot/coord.py +4 -4
- lets_plot/plot/core.py +77 -141
- lets_plot/plot/expand_limits_.py +2 -2
- lets_plot/plot/facet.py +21 -17
- lets_plot/plot/font_features.py +3 -3
- lets_plot/plot/geom.py +1129 -1103
- lets_plot/plot/geom_extras.py +1 -1
- lets_plot/plot/geom_function_.py +16 -13
- lets_plot/plot/geom_imshow_.py +8 -7
- lets_plot/plot/geom_livemap_.py +38 -13
- lets_plot/plot/ggbunch_.py +1 -1
- lets_plot/plot/gggrid_.py +3 -3
- lets_plot/plot/ggtb_.py +1 -1
- lets_plot/plot/guide.py +9 -7
- lets_plot/plot/label.py +9 -9
- lets_plot/plot/marginal_layer.py +4 -4
- lets_plot/plot/plot.py +17 -16
- lets_plot/plot/pos.py +15 -15
- lets_plot/plot/sampling.py +8 -8
- lets_plot/plot/scale.py +153 -150
- lets_plot/plot/scale_colormap_mpl.py +9 -6
- lets_plot/plot/scale_convenience.py +6 -6
- lets_plot/plot/scale_identity_.py +9 -9
- lets_plot/plot/scale_position.py +16 -16
- lets_plot/plot/series_meta.py +7 -1
- lets_plot/plot/stat.py +64 -60
- lets_plot/plot/subplots.py +31 -22
- lets_plot/plot/theme_.py +93 -92
- lets_plot/plot/theme_set.py +15 -14
- lets_plot/plot/tooltip.py +14 -14
- lets_plot/plot/util.py +33 -3
- lets_plot/settings_utils.py +12 -12
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/METADATA +63 -43
- lets_plot-4.7.1rc1.dist-info/RECORD +95 -0
- lets_plot_kotlin_bridge.cp39-win_amd64.pyd +0 -0
- lets_plot-4.7.0rc2.dist-info/RECORD +0 -95
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/WHEEL +0 -0
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/LICENSE +0 -0
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.FreeType +0 -0
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.ImageMagick +0 -0
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.expat +0 -0
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/licenses/licenses/LICENSE.fontconfig +0 -0
- {lets_plot-4.7.0rc2.dist-info → lets_plot-4.7.1rc1.dist-info}/top_level.txt +0 -0
lets_plot/plot/sampling.py
CHANGED
|
@@ -27,7 +27,7 @@ def sampling_random(n, seed=None):
|
|
|
27
27
|
|
|
28
28
|
Returns
|
|
29
29
|
-------
|
|
30
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
302
|
+
``FeatureSpec``
|
|
303
303
|
Vertices sample specification.
|
|
304
304
|
|
|
305
305
|
Notes
|