lets-plot 4.5.3a1__cp310-cp310-win_amd64.whl → 4.6.0a1__cp310-cp310-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/_kbridge.py +71 -0
- lets_plot/_version.py +1 -1
- lets_plot/bistro/_plot2d_common.py +7 -0
- lets_plot/bistro/im.py +38 -7
- lets_plot/bistro/joint.py +3 -3
- lets_plot/bistro/residual.py +3 -3
- lets_plot/package_data/lets-plot.min.js +2 -2
- lets_plot/plot/__init__.py +2 -0
- lets_plot/plot/core.py +1 -1
- lets_plot/plot/geom.py +248 -61
- lets_plot/plot/ggbunch_.py +96 -0
- lets_plot/plot/gggrid_.py +3 -18
- lets_plot/plot/plot.py +7 -0
- lets_plot/plot/scale.py +45 -20
- lets_plot/plot/subplots.py +1 -1
- lets_plot/plot/subplots_util.py +24 -0
- lets_plot/plot/theme_.py +12 -12
- {lets_plot-4.5.3a1.dist-info → lets_plot-4.6.0a1.dist-info}/METADATA +16 -3
- {lets_plot-4.5.3a1.dist-info → lets_plot-4.6.0a1.dist-info}/RECORD +23 -21
- {lets_plot-4.5.3a1.dist-info → lets_plot-4.6.0a1.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cp310-win_amd64.pyd +0 -0
- {lets_plot-4.5.3a1.dist-info → lets_plot-4.6.0a1.dist-info}/LICENSE +0 -0
- {lets_plot-4.5.3a1.dist-info → lets_plot-4.6.0a1.dist-info}/top_level.txt +0 -0
lets_plot/plot/scale.py
CHANGED
|
@@ -90,10 +90,8 @@ def scale_shape(solid=True, name=None, breaks=None, labels=None, lablim=None, li
|
|
|
90
90
|
labels=labels,
|
|
91
91
|
lablim=lablim,
|
|
92
92
|
limits=limits,
|
|
93
|
-
expand=None,
|
|
94
93
|
na_value=na_value,
|
|
95
94
|
guide=guide,
|
|
96
|
-
trans=None,
|
|
97
95
|
format=format,
|
|
98
96
|
#
|
|
99
97
|
solid=solid)
|
|
@@ -192,10 +190,8 @@ def scale_manual(aesthetic, values, *,
|
|
|
192
190
|
labels=labels,
|
|
193
191
|
lablim=lablim,
|
|
194
192
|
limits=limits,
|
|
195
|
-
expand=None,
|
|
196
193
|
na_value=na_value,
|
|
197
194
|
guide=guide,
|
|
198
|
-
trans=None,
|
|
199
195
|
format=format,
|
|
200
196
|
#
|
|
201
197
|
values=values)
|
|
@@ -668,7 +664,7 @@ def _is_color_scale(aesthetic):
|
|
|
668
664
|
|
|
669
665
|
def scale_continuous(aesthetic, *,
|
|
670
666
|
name=None, breaks=None, labels=None, lablim=None,
|
|
671
|
-
limits=None, na_value=None, guide=None, trans=None, format=None,
|
|
667
|
+
limits=None, expand=None, na_value=None, guide=None, trans=None, format=None,
|
|
672
668
|
scale_mapper_kind=None,
|
|
673
669
|
**kwargs):
|
|
674
670
|
"""
|
|
@@ -691,6 +687,10 @@ def scale_continuous(aesthetic, *,
|
|
|
691
687
|
The maximum label length (in characters) before trimming is applied.
|
|
692
688
|
limits : list
|
|
693
689
|
A numeric vector of length two providing limits of the scale.
|
|
690
|
+
expand : list
|
|
691
|
+
A numeric vector of length two giving multiplicative and additive expansion constants.
|
|
692
|
+
The vector size == 1 => only multiplicative expand (and additive expand by default).
|
|
693
|
+
Defaults: multiplicative = 0.05, additive = 0.
|
|
694
694
|
na_value
|
|
695
695
|
Missing values will be replaced with this value.
|
|
696
696
|
guide
|
|
@@ -737,6 +737,22 @@ def scale_continuous(aesthetic, *,
|
|
|
737
737
|
coord_cartesian() + \\
|
|
738
738
|
ggsize(600, 200)
|
|
739
739
|
|
|
740
|
+
|
|
|
741
|
+
|
|
742
|
+
.. jupyter-execute::
|
|
743
|
+
:linenos:
|
|
744
|
+
:emphasize-lines: 10
|
|
745
|
+
|
|
746
|
+
from lets_plot import *
|
|
747
|
+
LetsPlot.setup_html()
|
|
748
|
+
|
|
749
|
+
d = {
|
|
750
|
+
'x': [0, 1, 2],
|
|
751
|
+
'y': [0, 1, 2]
|
|
752
|
+
}
|
|
753
|
+
ggplot(d) + \\
|
|
754
|
+
geom_point(aes(x='x', y='y'), size=15) + \\
|
|
755
|
+
scale_continuous(['x','y'], expand=[0, 0]) # no expansion - points right on the edges
|
|
740
756
|
"""
|
|
741
757
|
if _is_color_scale(aesthetic):
|
|
742
758
|
scale_mapper_kind = 'color_gradient' if scale_mapper_kind is None else scale_mapper_kind
|
|
@@ -747,7 +763,7 @@ def scale_continuous(aesthetic, *,
|
|
|
747
763
|
labels=labels,
|
|
748
764
|
lablim=lablim,
|
|
749
765
|
limits=limits,
|
|
750
|
-
expand=
|
|
766
|
+
expand=expand,
|
|
751
767
|
na_value=na_value,
|
|
752
768
|
guide=guide,
|
|
753
769
|
trans=trans,
|
|
@@ -992,7 +1008,6 @@ def scale_gradient(aesthetic, *,
|
|
|
992
1008
|
labels=labels,
|
|
993
1009
|
lablim=lablim,
|
|
994
1010
|
limits=limits,
|
|
995
|
-
expand=None,
|
|
996
1011
|
na_value=na_value,
|
|
997
1012
|
guide=guide,
|
|
998
1013
|
trans=trans,
|
|
@@ -1242,7 +1257,6 @@ def scale_gradient2(aesthetic, *,
|
|
|
1242
1257
|
labels=labels,
|
|
1243
1258
|
lablim=lablim,
|
|
1244
1259
|
limits=limits,
|
|
1245
|
-
expand=None,
|
|
1246
1260
|
na_value=na_value,
|
|
1247
1261
|
guide=guide,
|
|
1248
1262
|
trans=trans,
|
|
@@ -1498,7 +1512,6 @@ def scale_gradientn(aesthetic, *,
|
|
|
1498
1512
|
labels=labels,
|
|
1499
1513
|
lablim=lablim,
|
|
1500
1514
|
limits=limits,
|
|
1501
|
-
expand=None,
|
|
1502
1515
|
na_value=na_value,
|
|
1503
1516
|
guide=guide,
|
|
1504
1517
|
trans=trans,
|
|
@@ -1746,7 +1759,6 @@ def scale_hue(aesthetic, *,
|
|
|
1746
1759
|
labels=labels,
|
|
1747
1760
|
lablim=lablim,
|
|
1748
1761
|
limits=limits,
|
|
1749
|
-
expand=None,
|
|
1750
1762
|
na_value=na_value,
|
|
1751
1763
|
guide=guide,
|
|
1752
1764
|
trans=trans,
|
|
@@ -1933,7 +1945,8 @@ def scale_color_hue(h=None, c=None, l=None, h_start=None, direction=None, name=N
|
|
|
1933
1945
|
|
|
1934
1946
|
def scale_discrete(aesthetic, *,
|
|
1935
1947
|
direction=None,
|
|
1936
|
-
name=None, breaks=None, labels=None, lablim=None,
|
|
1948
|
+
name=None, breaks=None, labels=None, lablim=None,
|
|
1949
|
+
limits=None, expand=None, na_value=None, guide=None, format=None,
|
|
1937
1950
|
scale_mapper_kind=None,
|
|
1938
1951
|
**kwargs):
|
|
1939
1952
|
"""
|
|
@@ -1960,6 +1973,10 @@ def scale_discrete(aesthetic, *,
|
|
|
1960
1973
|
limits : list
|
|
1961
1974
|
A vector specifying the data range for the scale
|
|
1962
1975
|
and the default order of their display in guides.
|
|
1976
|
+
expand : list
|
|
1977
|
+
A numeric vector of length two giving multiplicative and additive expansion constants.
|
|
1978
|
+
The vector size == 1 => only multiplicative expand (and additive expand by default).
|
|
1979
|
+
Defaults: multiplicative = 0.05, additive = 0.
|
|
1963
1980
|
na_value
|
|
1964
1981
|
Missing values will be replaced with this value.
|
|
1965
1982
|
guide
|
|
@@ -2006,6 +2023,22 @@ def scale_discrete(aesthetic, *,
|
|
|
2006
2023
|
ggplot() + geom_point(aes(x, y, color=z, fill=z), shape=21, size=4) + \\
|
|
2007
2024
|
scale_discrete(aesthetic=['color', 'fill'], guide='none')
|
|
2008
2025
|
|
|
2026
|
+
|
|
|
2027
|
+
|
|
2028
|
+
.. jupyter-execute::
|
|
2029
|
+
:linenos:
|
|
2030
|
+
:emphasize-lines: 10
|
|
2031
|
+
|
|
2032
|
+
from lets_plot import *
|
|
2033
|
+
LetsPlot.setup_html()
|
|
2034
|
+
|
|
2035
|
+
d = {
|
|
2036
|
+
'x': [0, 1, 2],
|
|
2037
|
+
'y': [0, 1, 2]
|
|
2038
|
+
}
|
|
2039
|
+
ggplot(d) + \\
|
|
2040
|
+
geom_point(aes(x='x', y='y'), size=15) + \\
|
|
2041
|
+
scale_discrete(['x','y'], expand=[0, 0]) # no expansion - points right on the edges
|
|
2009
2042
|
"""
|
|
2010
2043
|
return _scale(aesthetic=aesthetic,
|
|
2011
2044
|
name=name,
|
|
@@ -2013,7 +2046,7 @@ def scale_discrete(aesthetic, *,
|
|
|
2013
2046
|
labels=labels,
|
|
2014
2047
|
lablim=lablim,
|
|
2015
2048
|
limits=limits,
|
|
2016
|
-
expand=
|
|
2049
|
+
expand=expand,
|
|
2017
2050
|
na_value=na_value,
|
|
2018
2051
|
guide=guide,
|
|
2019
2052
|
format=format,
|
|
@@ -2266,7 +2299,6 @@ def scale_grey(aesthetic, *,
|
|
|
2266
2299
|
labels=labels,
|
|
2267
2300
|
lablim=lablim,
|
|
2268
2301
|
limits=limits,
|
|
2269
|
-
expand=None,
|
|
2270
2302
|
na_value=na_value,
|
|
2271
2303
|
guide=guide,
|
|
2272
2304
|
trans=trans,
|
|
@@ -2550,7 +2582,6 @@ def scale_brewer(aesthetic, *,
|
|
|
2550
2582
|
labels=labels,
|
|
2551
2583
|
lablim=lablim,
|
|
2552
2584
|
limits=limits,
|
|
2553
|
-
expand=None,
|
|
2554
2585
|
na_value=na_value,
|
|
2555
2586
|
guide=guide,
|
|
2556
2587
|
trans=trans,
|
|
@@ -2858,7 +2889,6 @@ def scale_viridis(aesthetic, *,
|
|
|
2858
2889
|
labels=labels,
|
|
2859
2890
|
lablim=lablim,
|
|
2860
2891
|
limits=limits,
|
|
2861
|
-
expand=None,
|
|
2862
2892
|
na_value=na_value,
|
|
2863
2893
|
guide=guide,
|
|
2864
2894
|
trans=trans,
|
|
@@ -3146,7 +3176,6 @@ def scale_alpha(range=None, name=None, breaks=None, labels=None, lablim=None, li
|
|
|
3146
3176
|
labels=labels,
|
|
3147
3177
|
lablim=lablim,
|
|
3148
3178
|
limits=limits,
|
|
3149
|
-
expand=None,
|
|
3150
3179
|
na_value=na_value,
|
|
3151
3180
|
guide=guide,
|
|
3152
3181
|
trans=trans,
|
|
@@ -3221,7 +3250,6 @@ def scale_size(range=None, name=None, breaks=None, labels=None, lablim=None, lim
|
|
|
3221
3250
|
labels=labels,
|
|
3222
3251
|
lablim=lablim,
|
|
3223
3252
|
limits=limits,
|
|
3224
|
-
expand=None,
|
|
3225
3253
|
na_value=na_value,
|
|
3226
3254
|
guide=guide,
|
|
3227
3255
|
trans=trans,
|
|
@@ -3300,7 +3328,6 @@ def scale_size_area(max_size=None, name=None, breaks=None, labels=None, lablim=N
|
|
|
3300
3328
|
labels=labels,
|
|
3301
3329
|
lablim=lablim,
|
|
3302
3330
|
limits=limits,
|
|
3303
|
-
expand=None,
|
|
3304
3331
|
na_value=na_value,
|
|
3305
3332
|
guide=guide,
|
|
3306
3333
|
trans=trans,
|
|
@@ -3375,7 +3402,6 @@ def scale_linewidth(range=None, name=None, breaks=None, labels=None, lablim=None
|
|
|
3375
3402
|
labels=labels,
|
|
3376
3403
|
lablim=lablim,
|
|
3377
3404
|
limits=limits,
|
|
3378
|
-
expand=None,
|
|
3379
3405
|
na_value=na_value,
|
|
3380
3406
|
guide=guide,
|
|
3381
3407
|
trans=trans,
|
|
@@ -3449,7 +3475,6 @@ def scale_stroke(range=None, name=None, breaks=None, labels=None, lablim=None, l
|
|
|
3449
3475
|
labels=labels,
|
|
3450
3476
|
lablim=lablim,
|
|
3451
3477
|
limits=limits,
|
|
3452
|
-
expand=None,
|
|
3453
3478
|
na_value=na_value,
|
|
3454
3479
|
guide=guide,
|
|
3455
3480
|
trans=trans,
|
lets_plot/plot/subplots.py
CHANGED
|
@@ -67,7 +67,7 @@ class SupPlotsSpec(FeatureSpec):
|
|
|
67
67
|
supplots = supplots.__add__(spec)
|
|
68
68
|
return supplots
|
|
69
69
|
|
|
70
|
-
elif isinstance(other, FeatureSpec) and other.kind in ["ggsize", "theme", "ggtoolbar"]:
|
|
70
|
+
elif isinstance(other, FeatureSpec) and other.kind in ["ggsize", "theme", "ggtitle", "caption", "ggtoolbar"]:
|
|
71
71
|
|
|
72
72
|
supplots = SupPlotsSpec.duplicate(self)
|
|
73
73
|
# ToDo: duplication!
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Copyright (c) 2025. JetBrains s.r.o.
|
|
2
|
+
# Use of this source code is governed by the MIT license that can be found in the LICENSE file.
|
|
3
|
+
|
|
4
|
+
from lets_plot.plot.core import PlotSpec
|
|
5
|
+
from ._global_theme import _get_global_theme
|
|
6
|
+
from .subplots import SupPlotsSpec
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _strip_theme_if_global(fig):
|
|
10
|
+
# Strip this global theme if defined
|
|
11
|
+
global_theme_options = _get_global_theme()
|
|
12
|
+
|
|
13
|
+
# Strip global theme options from plots in grid (see issue: #966).
|
|
14
|
+
if global_theme_options is not None and fig is not None and 'theme' in fig.props() and fig.props()[
|
|
15
|
+
'theme'] == global_theme_options.props():
|
|
16
|
+
if isinstance(fig, PlotSpec):
|
|
17
|
+
fig = PlotSpec.duplicate(fig)
|
|
18
|
+
fig.props().pop('theme')
|
|
19
|
+
return fig
|
|
20
|
+
elif isinstance(fig, SupPlotsSpec):
|
|
21
|
+
fig = SupPlotsSpec.duplicate(fig)
|
|
22
|
+
fig.props().pop('theme')
|
|
23
|
+
return fig
|
|
24
|
+
return fig
|
lets_plot/plot/theme_.py
CHANGED
|
@@ -99,20 +99,20 @@ def theme(*,
|
|
|
99
99
|
Parameters
|
|
100
100
|
----------
|
|
101
101
|
exponent_format : {'e', 'pow', 'pow_full'} or tuple, default='e'
|
|
102
|
-
|
|
102
|
+
Controls the appearance of numbers formatted with 'e' or 'g' types.
|
|
103
103
|
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
|
|
104
|
+
Value is either a string - style, or a tuple: (style, lower_exp_bound, upper_exp_bound)
|
|
105
|
+
where style can be:
|
|
106
|
+
|
|
107
|
+
- 'e' : e-notation (e.g., 1e+6)
|
|
108
|
+
- 'pow' : superscript powers of 10 in shortened form (e.g., 10^6)
|
|
109
|
+
- 'pow_full' : superscript powers of 10 with coefficient (e.g., 1×10^6)
|
|
107
110
|
|
|
108
|
-
|
|
111
|
+
For 'g' type formatting, scientific notation is applied when the number's exponent
|
|
112
|
+
is less than or equal to the lower_exp_bound (-7 by default) or greater than or equal
|
|
113
|
+
to the upper_exp_bound (6 by default, but can be affected by `precision` in format specifier).
|
|
109
114
|
|
|
110
|
-
|
|
111
|
-
- the second element is minimum exponent value from which to use scientific notation (default is -7);
|
|
112
|
-
- the third element is maximum exponent value from which to use scientific notation (default is taken from `precision` of the current formatting, see `Formatting <https://lets-plot.org/python/pages/formats.html>`__).
|
|
113
|
-
|
|
114
|
-
Minimum and maximum exponent values are only taken into account when "g" format is used,
|
|
115
|
-
see `Formatting <https://lets-plot.org/python/pages/formats.html>`__.
|
|
115
|
+
See `Formatting <https://lets-plot.org/python/pages/formats.html>`__.
|
|
116
116
|
|
|
117
117
|
Superscript is not supported when exporting to PNG/PDF.
|
|
118
118
|
line : str or dict
|
|
@@ -576,7 +576,7 @@ def element_text(
|
|
|
576
576
|
face : str
|
|
577
577
|
Font face ("plain", "italic", "bold", "bold_italic").
|
|
578
578
|
size : int
|
|
579
|
-
Text size in
|
|
579
|
+
Text size in px.
|
|
580
580
|
angle : float
|
|
581
581
|
Angle to rotate the text (in degrees).
|
|
582
582
|
hjust : float
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: lets-plot
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.6.0a1
|
|
4
4
|
Summary: An open source library for statistical plotting
|
|
5
5
|
Home-page: https://lets-plot.org
|
|
6
6
|
Author: JetBrains
|
|
@@ -32,6 +32,19 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
License-File: ../LICENSE
|
|
33
33
|
Requires-Dist: pypng
|
|
34
34
|
Requires-Dist: palettable
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: author-email
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: description-content-type
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: keywords
|
|
42
|
+
Dynamic: license
|
|
43
|
+
Dynamic: maintainer
|
|
44
|
+
Dynamic: maintainer-email
|
|
45
|
+
Dynamic: project-url
|
|
46
|
+
Dynamic: requires-dist
|
|
47
|
+
Dynamic: summary
|
|
35
48
|
|
|
36
49
|
# Lets-Plot
|
|
37
50
|
|
|
@@ -183,4 +196,4 @@ Please make sure you read it.
|
|
|
183
196
|
## License
|
|
184
197
|
|
|
185
198
|
Code and documentation released under the [MIT license](https://github.com/JetBrains/lets-plot/blob/master/LICENSE).
|
|
186
|
-
Copyright © 2019-
|
|
199
|
+
Copyright © 2019-2025, JetBrains s.r.o.
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cp310-win_amd64.pyd,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cp310-win_amd64.pyd,sha256=NCs4Ag3quDQIVEZwHLcXLL5difVkI4U2xWkFVIB2wPU,6841344
|
|
2
2
|
lets_plot/__init__.py,sha256=aOXcSZVe50fLxe5PN_EjUUrylcqzc-kbSBunOpl_wmc,11507
|
|
3
3
|
lets_plot/_global_settings.py,sha256=dozwVWl2_Sg_-sWC08IYqVBhg4PCDAxHBERvD_XoWJU,7631
|
|
4
|
-
lets_plot/_kbridge.py,sha256=
|
|
4
|
+
lets_plot/_kbridge.py,sha256=nrjnBwwyrnvRY3FrWvzSIzWTKSVhWp2w7hJP1g55MgE,3626
|
|
5
5
|
lets_plot/_type_utils.py,sha256=6hyHbuAmxadW-h0AhTlHgKjQe-3g8cEhnskZ9zBnx5w,3029
|
|
6
|
-
lets_plot/_version.py,sha256=
|
|
6
|
+
lets_plot/_version.py,sha256=jHpJt6NocjoxRvgPyqvOQkHEk5Csy-F_jgw8AQyUgh8,245
|
|
7
7
|
lets_plot/mapping.py,sha256=vWWGrVgzgo1u3R8djyshSoOEuaqlqSQpEVeQNqeKWk0,3691
|
|
8
8
|
lets_plot/settings_utils.py,sha256=vKrsXMuJHR88ZZhPtQFAC-xrWKCpCPiRetfx1GpBGKU,8678
|
|
9
9
|
lets_plot/tilesets.py,sha256=opnIz6UI3Gu34JRICD_Tj_hrRmhBC-Rj1NuKLiWeJkk,9549
|
|
10
10
|
lets_plot/bistro/__init__.py,sha256=0vjEBjuS3r4MR8ugQ1zIo1sks6K0ljSESJWH3pQcgYI,442
|
|
11
|
-
lets_plot/bistro/_plot2d_common.py,sha256=
|
|
11
|
+
lets_plot/bistro/_plot2d_common.py,sha256=7cc_15IAzeTyq-zEwVlXdJ1ksAnymvOy8Yqgwzc05wU,3983
|
|
12
12
|
lets_plot/bistro/corr.py,sha256=1_8MUeSQAL50kxn7cbOpQUR2S_w4LHBLJ_EIi3m-ZzY,13339
|
|
13
|
-
lets_plot/bistro/im.py,sha256=
|
|
14
|
-
lets_plot/bistro/joint.py,sha256=
|
|
13
|
+
lets_plot/bistro/im.py,sha256=qYAkIjIRdhFIloZisfOIXxYKdLXTxXSkqNVtMEIG1Uw,6575
|
|
14
|
+
lets_plot/bistro/joint.py,sha256=X84yVB4pTdGCP1mqSLfsfKxlY3uZlyK2tdYP9eA-OI0,6763
|
|
15
15
|
lets_plot/bistro/qq.py,sha256=lXRoStspJ6cBiZ6WFNS5gPXQGyE1iBq4c40V9OuQHok,8305
|
|
16
|
-
lets_plot/bistro/residual.py,sha256=
|
|
16
|
+
lets_plot/bistro/residual.py,sha256=0AEKViY9k6e3U__8i3cy1qtqxnPVOpbvjAO58b1kPsg,12673
|
|
17
17
|
lets_plot/bistro/waterfall.py,sha256=hV0QQO8btMqCT0RWtmoMy3YYwHptVrH8hqkivhKOflo,10725
|
|
18
18
|
lets_plot/export/__init__.py,sha256=JloMKV4OAMgxBuYg8ObByZ3LJvqcUKed1G286WLA85E,194
|
|
19
19
|
lets_plot/export/ggsave_.py,sha256=fSb9C3hUUmng-NbsIrv7F_a9F7aHXH8PWrSGW3MWyjQ,4704
|
|
@@ -47,43 +47,45 @@ lets_plot/geo_data/gis/response.py,sha256=MsAk10JQe0XC-h4Cv0w7uzYxAtlx3YaSrqYXA6
|
|
|
47
47
|
lets_plot/geo_data_internals/__init__.py,sha256=ZwcoMdyQ_k9589f2D3nXXjedJpyiDR8WyqaghTh_EVQ,238
|
|
48
48
|
lets_plot/geo_data_internals/constants.py,sha256=2dViytUZPiojilhWV3UWzBAXgdHl5OoIJsNMsI0V7yU,441
|
|
49
49
|
lets_plot/geo_data_internals/utils.py,sha256=8vfDa99yq1YpVNr-RDtpCJfbrON04rIG6cugpQXnJlU,1000
|
|
50
|
-
lets_plot/package_data/lets-plot.min.js,sha256=
|
|
51
|
-
lets_plot/plot/__init__.py,sha256=
|
|
50
|
+
lets_plot/package_data/lets-plot.min.js,sha256=MXWjNIWYWCl2Ll1PyYmntNpsEdTZbW5vzSs0dAQvhVI,2295712
|
|
51
|
+
lets_plot/plot/__init__.py,sha256=JqOiE3XfvLripHZJO0_EUzRF10cljeJyU8z-jfFLMXE,1835
|
|
52
52
|
lets_plot/plot/_global_theme.py,sha256=eatwhJiiqnY6mrNW0Y1NMco2e7xxldhItgj1IOkhRuI,311
|
|
53
53
|
lets_plot/plot/annotation.py,sha256=9jFJ2BTfLXKD-I0uBJrf8tC6cnv31ANTge8cDRJNHfc,7893
|
|
54
54
|
lets_plot/plot/coord.py,sha256=B4EEt6mqPERbYVwzl3VPkEym9hq_tO0LNtgdtluWQBQ,8218
|
|
55
|
-
lets_plot/plot/core.py,sha256=
|
|
55
|
+
lets_plot/plot/core.py,sha256=anuE9CWYfKJRlTs0P74rTxk7058EXHok-_Zqg2gxNSU,32485
|
|
56
56
|
lets_plot/plot/expand_limits_.py,sha256=4_NqSyQMz20GZbsbHKhjCUP_7nS45N2107jPbq4GVmE,2385
|
|
57
57
|
lets_plot/plot/facet.py,sha256=cEWqPgl-4-sYv7Sq5EA_lQPrtKcnFmBMTYxIqo98re4,7236
|
|
58
58
|
lets_plot/plot/font_features.py,sha256=OInyzUmRbujBEeB2gxuD2O249-5htOQZi2Y_fujxpVY,2309
|
|
59
|
-
lets_plot/plot/geom.py,sha256=
|
|
59
|
+
lets_plot/plot/geom.py,sha256=V_A3duRfu-ixoM2AHvCPBOUFZa19VtqUNAmlIigE3mo,357141
|
|
60
60
|
lets_plot/plot/geom_extras.py,sha256=yJ9T5hAQWnhV-KwW-a55qbDOOrLF1D28VZsHpC4aC34,1747
|
|
61
61
|
lets_plot/plot/geom_function_.py,sha256=FsytaKiyVEvg7KGhnlq4-4Gb3YPzK1XyJ3Zos1NgH4g,8087
|
|
62
62
|
lets_plot/plot/geom_imshow_.py,sha256=pQX2hJn3R24hMB68F-PPb0UcDtbylg2VEFD3055jFyE,15160
|
|
63
63
|
lets_plot/plot/geom_livemap_.py,sha256=K-PjktJkbHa7Ylu0hyt-el2h_IA0n9gZ7W5VNtydSgQ,13457
|
|
64
|
-
lets_plot/plot/
|
|
64
|
+
lets_plot/plot/ggbunch_.py,sha256=N74Hbt3C7jo4eCirF1Px2ulLwzQl6jsd8oZbRzXQZYE,3187
|
|
65
|
+
lets_plot/plot/gggrid_.py,sha256=KkPTAf4_g7FyR8z_Kb1dvFM9mWgDznbBIHYbsGXHYDo,4019
|
|
65
66
|
lets_plot/plot/ggtb_.py,sha256=aNJNfqTWJF4I592tYeORBhqZv93KxPjyrts49M3JutQ,1743
|
|
66
67
|
lets_plot/plot/guide.py,sha256=huDbWFR4k5hmN00oF-sz-8RIv6pYyBCStCz--98qLvs,6923
|
|
67
68
|
lets_plot/plot/label.py,sha256=1_c1RWMdolYNmef8TjuPk8YtVmLU0QKY3ZG_UoOAV74,4736
|
|
68
69
|
lets_plot/plot/marginal_layer.py,sha256=auDAO5IiRpJVcqzqr31SnXJz7sQGIVbndx__qfr7JyY,6538
|
|
69
|
-
lets_plot/plot/plot.py,sha256=
|
|
70
|
+
lets_plot/plot/plot.py,sha256=_e5MazLHxq5yKRcrjLk93PQK7VX-TIi-G0wSqo0X_os,8526
|
|
70
71
|
lets_plot/plot/pos.py,sha256=NxnuE--5hwQCWOEqnoQu8TFppZYXJG5m2cgWkPjmXIg,10703
|
|
71
72
|
lets_plot/plot/sampling.py,sha256=0DB-3hop8JUI0ZNfjML0wxi7W2EIApXGMEKQgGTGnoA,8827
|
|
72
73
|
lets_plot/plot/sandbox_.py,sha256=5wp2bkIBsihw9aIoKr8FUQZmtZbInHPCULbG5uPsMYE,571
|
|
73
|
-
lets_plot/plot/scale.py,sha256=
|
|
74
|
+
lets_plot/plot/scale.py,sha256=7swDeGMVWGS450u7HB3ueFjY1nEekuz9Y1nn8vBivIQ,140516
|
|
74
75
|
lets_plot/plot/scale_colormap_mpl.py,sha256=Kn-_-RMOGIBT5-Wf7iSXQ31G9J0QTy6oFGE36Vw6PcI,10564
|
|
75
76
|
lets_plot/plot/scale_convenience.py,sha256=UOXX07wP5aARYwsOZ-6rK_RR0szhdhnThPvia6LOqrE,4271
|
|
76
77
|
lets_plot/plot/scale_identity_.py,sha256=6Uz5focUCHIqB9TPhJs7VsPrlZA7JmDOoP2iZYgCuOU,24454
|
|
77
78
|
lets_plot/plot/scale_position.py,sha256=_DlKxIKm2_UBxgnCmAdzYf9Mk0bT8xd-PJlnVz2eIpI,47621
|
|
78
79
|
lets_plot/plot/series_meta.py,sha256=dKfCgTR7RPP3MJjrd1Civ1G0w9I39MH4T6gqJrry0Fc,5909
|
|
79
80
|
lets_plot/plot/stat.py,sha256=wfFhM1WGNiBH2PLroq8Y6RbRMz6jZrRYaJBcWWbbkCo,23514
|
|
80
|
-
lets_plot/plot/subplots.py,sha256
|
|
81
|
-
lets_plot/plot/
|
|
81
|
+
lets_plot/plot/subplots.py,sha256=-bypJFokNrOJGe5E6yY-Fwt0FZ9w4yrclPchgDu2bF0,11655
|
|
82
|
+
lets_plot/plot/subplots_util.py,sha256=PBwR7pGtYJAz4lJ0TNRH645aAvHAnJxgW91vpI0ob9A,937
|
|
83
|
+
lets_plot/plot/theme_.py,sha256=u1s0Hsbzz0EgbWnE8MCZeQqYOEAR-er0DSeHIGeiLG8,29357
|
|
82
84
|
lets_plot/plot/theme_set.py,sha256=KLQSAihJU8_FmAU0at8WUAtgnIqCvU2Rd5awNhTZimo,9496
|
|
83
85
|
lets_plot/plot/tooltip.py,sha256=TdyJ8pjNuomAF6jeaRsFyFxWWoSSoFFSzsTTnUYBg2Q,16469
|
|
84
86
|
lets_plot/plot/util.py,sha256=w5PWWPPG_b3g8z9yxfodsd38Csu-qg6z_Zgmzbavsn0,8812
|
|
85
|
-
lets_plot-4.
|
|
86
|
-
lets_plot-4.
|
|
87
|
-
lets_plot-4.
|
|
88
|
-
lets_plot-4.
|
|
89
|
-
lets_plot-4.
|
|
87
|
+
lets_plot-4.6.0a1.dist-info/LICENSE,sha256=D7RdUBHyt0ua4vSZs8H7-HIcliPTSk9zY3sNzx8fejY,1087
|
|
88
|
+
lets_plot-4.6.0a1.dist-info/METADATA,sha256=AXa7dGVQLpkpzGv73I58Qe2UMpxXGqfTbfrazMwTxso,11651
|
|
89
|
+
lets_plot-4.6.0a1.dist-info/WHEEL,sha256=rzGfZgUcGeKSgIHGYMuqg4xE4VPHxnaldXH6BG0zjVk,101
|
|
90
|
+
lets_plot-4.6.0a1.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
91
|
+
lets_plot-4.6.0a1.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|