lets-plot 4.4.0rc1__cp38-cp38-win_amd64.whl → 4.5.0__cp38-cp38-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 +1 -1
- lets_plot/_type_utils.py +9 -4
- lets_plot/_version.py +1 -1
- lets_plot/bistro/corr.py +8 -1
- lets_plot/bistro/joint.py +7 -1
- lets_plot/bistro/qq.py +30 -3
- lets_plot/bistro/residual.py +6 -0
- lets_plot/bistro/waterfall.py +13 -5
- lets_plot/export/ggsave_.py +21 -1
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/__init__.py +3 -1
- lets_plot/plot/annotation.py +2 -2
- lets_plot/plot/core.py +11 -5
- lets_plot/plot/expand_limits_.py +78 -0
- lets_plot/plot/facet.py +9 -5
- lets_plot/plot/geom.py +710 -203
- lets_plot/plot/geom_function_.py +13 -3
- lets_plot/plot/geom_imshow_.py +1 -0
- lets_plot/plot/geom_livemap_.py +32 -0
- lets_plot/plot/gggrid_.py +5 -4
- lets_plot/plot/ggtb_.py +46 -1
- lets_plot/plot/guide.py +11 -1
- lets_plot/plot/label.py +2 -2
- lets_plot/plot/sampling.py +14 -4
- lets_plot/plot/scale.py +40 -40
- lets_plot/plot/scale_colormap_mpl.py +6 -4
- lets_plot/plot/scale_identity_.py +11 -19
- lets_plot/plot/scale_position.py +14 -14
- lets_plot/plot/stat.py +44 -4
- lets_plot/plot/subplots.py +1 -1
- lets_plot/plot/theme_.py +93 -13
- lets_plot/plot/tooltip.py +3 -3
- lets_plot/tilesets.py +4 -69
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.5.0.dist-info}/METADATA +37 -42
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.5.0.dist-info}/RECORD +39 -38
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.5.0.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cp38-win_amd64.pyd +0 -0
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.5.0.dist-info}/LICENSE +0 -0
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.5.0.dist-info}/top_level.txt +0 -0
lets_plot/tilesets.py
CHANGED
|
@@ -140,6 +140,7 @@ def _carto_tiles(tileset, cdn):
|
|
|
140
140
|
if cdn == 'carto':
|
|
141
141
|
base_url = "https://{{s}}.basemaps.cartocdn.com/rastertiles/{tileset}/{{z}}/{{x}}/{{y}}{hi_res}.png"
|
|
142
142
|
elif cdn == 'fastly':
|
|
143
|
+
# TODO: remove this branch in future releases
|
|
143
144
|
base_url = "https://cartocdn_{{s}}.global.ssl.fastly.net/{tileset}/{{z}}/{{x}}/{{y}}{hi_res}.png"
|
|
144
145
|
else:
|
|
145
146
|
raise ValueError("Unknown carto cdn: {}. Expected 'carto' or 'fastly'.".format(cdn))
|
|
@@ -267,85 +268,19 @@ Examples
|
|
|
267
268
|
|
|
268
269
|
CARTO_MIDNIGHT_COMMANDER, CARTO_MIDNIGHT_COMMANDER_HIRES = _carto_tiles('base-midnight', cdn='fastly')
|
|
269
270
|
"""
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
Examples
|
|
273
|
-
--------
|
|
274
|
-
.. jupyter-execute::
|
|
275
|
-
:linenos:
|
|
276
|
-
:emphasize-lines: 4
|
|
277
|
-
|
|
278
|
-
from lets_plot import *
|
|
279
|
-
from lets_plot import tilesets
|
|
280
|
-
LetsPlot.setup_html()
|
|
281
|
-
ggplot() + geom_livemap(tiles=tilesets.CARTO_MIDNIGHT_COMMANDER)
|
|
282
|
-
|
|
283
|
-
|
|
|
284
|
-
|
|
285
|
-
.. jupyter-execute::
|
|
286
|
-
:linenos:
|
|
287
|
-
:emphasize-lines: 4
|
|
288
|
-
|
|
289
|
-
from lets_plot import *
|
|
290
|
-
from lets_plot import tilesets
|
|
291
|
-
LetsPlot.setup_html()
|
|
292
|
-
ggplot() + geom_livemap(tiles=tilesets.CARTO_MIDNIGHT_COMMANDER_HIRES)
|
|
271
|
+
The tileset is deprecated and will be removed in future releases.
|
|
293
272
|
|
|
294
273
|
"""
|
|
295
274
|
|
|
296
275
|
CARTO_ANTIQUE, CARTO_ANTIQUE_HIRES = _carto_tiles('base-antique', cdn='fastly')
|
|
297
276
|
"""
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
Examples
|
|
301
|
-
--------
|
|
302
|
-
.. jupyter-execute::
|
|
303
|
-
:linenos:
|
|
304
|
-
:emphasize-lines: 4
|
|
305
|
-
|
|
306
|
-
from lets_plot import *
|
|
307
|
-
from lets_plot import tilesets
|
|
308
|
-
LetsPlot.setup_html()
|
|
309
|
-
ggplot() + geom_livemap(tiles=tilesets.CARTO_ANTIQUE)
|
|
310
|
-
|
|
311
|
-
|
|
|
312
|
-
|
|
313
|
-
.. jupyter-execute::
|
|
314
|
-
:linenos:
|
|
315
|
-
:emphasize-lines: 4
|
|
316
|
-
|
|
317
|
-
from lets_plot import *
|
|
318
|
-
from lets_plot import tilesets
|
|
319
|
-
LetsPlot.setup_html()
|
|
320
|
-
ggplot() + geom_livemap(tiles=tilesets.CARTO_ANTIQUE_HIRES)
|
|
277
|
+
The tileset is deprecated and will be removed in future releases.
|
|
321
278
|
|
|
322
279
|
"""
|
|
323
280
|
|
|
324
281
|
CARTO_FLAT_BLUE, CARTO_FLAT_BLUE_HIRES = _carto_tiles('base-flatblue', cdn='fastly')
|
|
325
282
|
"""
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
Examples
|
|
329
|
-
--------
|
|
330
|
-
.. jupyter-execute::
|
|
331
|
-
:linenos:
|
|
332
|
-
:emphasize-lines: 4
|
|
333
|
-
|
|
334
|
-
from lets_plot import *
|
|
335
|
-
from lets_plot import tilesets
|
|
336
|
-
LetsPlot.setup_html()
|
|
337
|
-
ggplot() + geom_livemap(tiles=tilesets.CARTO_FLAT_BLUE)
|
|
338
|
-
|
|
339
|
-
|
|
|
340
|
-
|
|
341
|
-
.. jupyter-execute::
|
|
342
|
-
:linenos:
|
|
343
|
-
:emphasize-lines: 4
|
|
344
|
-
|
|
345
|
-
from lets_plot import *
|
|
346
|
-
from lets_plot import tilesets
|
|
347
|
-
LetsPlot.setup_html()
|
|
348
|
-
ggplot() + geom_livemap(tiles=tilesets.CARTO_FLAT_BLUE_HIRES)
|
|
283
|
+
The tileset is deprecated and will be removed in future releases.
|
|
349
284
|
|
|
350
285
|
"""
|
|
351
286
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lets-plot
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.5.0
|
|
4
4
|
Summary: An open source library for statistical plotting
|
|
5
5
|
Home-page: https://lets-plot.org
|
|
6
6
|
Author: JetBrains
|
|
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Framework :: IPython
|
|
22
23
|
Classifier: Framework :: Jupyter
|
|
23
24
|
Classifier: Operating System :: MacOS
|
|
@@ -36,7 +37,7 @@ Requires-Dist: palettable
|
|
|
36
37
|
|
|
37
38
|
[](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
|
|
38
39
|
[](https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/LICENSE)
|
|
39
|
-
[](https://github.com/JetBrains/lets-plot
|
|
40
|
+
[](https://github.com/JetBrains/lets-plot/releases/latest)
|
|
40
41
|
|
|
41
42
|
|
|
42
43
|
**Lets-Plot** is a multiplatform plotting library built on the principles of the Grammar of Graphics.
|
|
@@ -88,63 +89,57 @@ Also read:
|
|
|
88
89
|
- [Scientific mode in PyCharm](https://www.jetbrains.com/help/pycharm/matplotlib-support.html)
|
|
89
90
|
- [Scientific mode in IntelliJ IDEA](https://www.jetbrains.com/help/idea/matplotlib-support.html)
|
|
90
91
|
|
|
91
|
-
## What is new in 4.
|
|
92
|
+
## What is new in 4.5.0
|
|
92
93
|
|
|
93
|
-
- ####
|
|
94
|
+
- #### Panning and Zooming
|
|
95
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24g/images/ggtb.png" alt="f-24g/images/ggtb.png" width="300" height="134">
|
|
96
|
+
|
|
97
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/interact_pan_zoom.ipynb).
|
|
94
98
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
<br>
|
|
99
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/polar_coord_pie.png" alt="f-24a/images/polar_coord_pie.png" width="256" height="214">
|
|
100
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/radar_chart.png" alt="f-24a/images/radar_chart.png" width="256" height="196">
|
|
101
|
-
|
|
102
|
-
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/coord_polar.ipynb).
|
|
99
|
+
- #### Clickable Links
|
|
100
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24g/images/lp_verse.png" alt="f-24g/images/lp_verse.png" width="400" height="270">
|
|
103
101
|
|
|
104
|
-
|
|
102
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/interactive_links.ipynb).
|
|
105
103
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/theme_panel_inset.ipynb).
|
|
109
|
-
|
|
110
|
-
- `panel_border_ontop` parameter - enables the drawing of panel border on top of the plot geoms.
|
|
111
|
-
- `panel_grid_ontop, panel_grid_ontop_x, panel_grid_ontop_y` parameters - enable the drawing of grid lines on top of the plot geoms.
|
|
104
|
+
- #### LaTeX Support: Subscript, Superscript, Greek Letters and Special Characters
|
|
105
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24g/images/latex.png" alt="f-24g/images/latex.png" width="300" height="227">
|
|
112
106
|
|
|
113
|
-
|
|
107
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/latex_support.ipynb).
|
|
114
108
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve.ipynb).
|
|
109
|
+
> [!CAUTION]
|
|
110
|
+
> Subscripts and superscripts are not supported in PDF and PNG exports.
|
|
119
111
|
|
|
120
|
-
- ####
|
|
112
|
+
- #### Compact Scientific Notation Formatting
|
|
113
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24g/images/compact_exp.png" alt="f-24g/images/compact_exp.png" width="400" height="174">
|
|
114
|
+
|
|
115
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/superscript_exponent.ipynb).
|
|
121
116
|
|
|
122
|
-
|
|
123
|
-
|
|
117
|
+
> [!CAUTION]
|
|
118
|
+
> `pow` and `pow_full` options are not supported in PDF and PNG exports.
|
|
124
119
|
|
|
125
|
-
|
|
120
|
+
- #### QQ-Plot: Marginal Distributions
|
|
121
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24g/images/gg_marins.png" alt="f-24g/images/gg_marins.png" width="400" height="249">
|
|
126
122
|
|
|
127
|
-
|
|
128
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/graph_simple.png" alt="f-24a/images/graph_simple.png" width="256" height="168">
|
|
129
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/graph_on_map.png" alt="f-24a/images/graph_on_map.png" width="256" height="184">
|
|
123
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/qq_plot_marginal.ipynb).
|
|
130
124
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
- [An interactive map example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve_on_map.ipynb)
|
|
134
|
-
|
|
125
|
+
- #### More Theme Settings
|
|
126
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24g/images/theme_legend_scheme.png" alt="f-24g/images/theme_legend_scheme.png" width="400" height="320">
|
|
135
127
|
|
|
136
|
-
|
|
128
|
+
See examples: [legend margins](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/theme_legend_margins.ipynb),
|
|
129
|
+
[legend key](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/theme_legend_key.ipynb),
|
|
130
|
+
[facet strip](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24g/theme_facet_strip_xy.ipynb).
|
|
137
131
|
|
|
138
|
-
Use the `alpha_stroke` parameter to apply `alpha` to entire `label`. By default, `alpha` is only applied to the label background.
|
|
139
132
|
|
|
140
|
-
|
|
133
|
+
- #### And More
|
|
134
|
+
|
|
135
|
+
See [CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md) for a full list of changes.
|
|
141
136
|
|
|
142
|
-
- #### Showing Plots in External Browser
|
|
143
137
|
|
|
144
|
-
The [setup_show_ext()](https://lets-plot.org/python/pages/api/lets_plot.LetsPlot.html#lets_plot.LetsPlot.setup_show_ext) directive allows plots to be displayed in an external browser window.
|
|
145
|
-
|
|
146
138
|
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)
|
|
147
139
|
|
|
140
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/us_unemployment.ipynb">
|
|
141
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24e/images/us_unemployment.png" alt="f-24e/images/us_unemployment.png" width="128" height="128">
|
|
142
|
+
</a>
|
|
148
143
|
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb">
|
|
149
144
|
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_venn_diagram.png" alt="f-24b/images/gal_venn_diagram.png" width="128" height="128">
|
|
150
145
|
</a>
|
|
@@ -175,7 +170,7 @@ Also read:
|
|
|
175
170
|
|
|
176
171
|
## Change Log
|
|
177
172
|
|
|
178
|
-
|
|
173
|
+
[CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md)
|
|
179
174
|
|
|
180
175
|
|
|
181
176
|
## Code of Conduct
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cp38-win_amd64.pyd,sha256=
|
|
2
|
-
lets_plot/__init__.py,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cp38-win_amd64.pyd,sha256=Jt2WqxgwoYH31Clvw4Qa2X7zWOnsbf-kMka7q3T3xRE,7647744
|
|
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
4
|
lets_plot/_kbridge.py,sha256=LCmRSeFeLFoESoVsm72QuZGFKDsRMMoN0lQF01xju1g,1250
|
|
5
|
-
lets_plot/_type_utils.py,sha256=
|
|
6
|
-
lets_plot/_version.py,sha256=
|
|
5
|
+
lets_plot/_type_utils.py,sha256=6hyHbuAmxadW-h0AhTlHgKjQe-3g8cEhnskZ9zBnx5w,3029
|
|
6
|
+
lets_plot/_version.py,sha256=z9OC6SnQPZKkS66naIweMMSUfMHUn6BO9YoyFfqgrEU,239
|
|
7
7
|
lets_plot/mapping.py,sha256=vWWGrVgzgo1u3R8djyshSoOEuaqlqSQpEVeQNqeKWk0,3691
|
|
8
8
|
lets_plot/settings_utils.py,sha256=vKrsXMuJHR88ZZhPtQFAC-xrWKCpCPiRetfx1GpBGKU,8678
|
|
9
|
-
lets_plot/tilesets.py,sha256=
|
|
9
|
+
lets_plot/tilesets.py,sha256=opnIz6UI3Gu34JRICD_Tj_hrRmhBC-Rj1NuKLiWeJkk,9549
|
|
10
10
|
lets_plot/bistro/__init__.py,sha256=0vjEBjuS3r4MR8ugQ1zIo1sks6K0ljSESJWH3pQcgYI,442
|
|
11
11
|
lets_plot/bistro/_plot2d_common.py,sha256=E6a2QghFF8CWwUzT-iCtgqYBepCCPuwUyxcDM8BJkL8,3712
|
|
12
|
-
lets_plot/bistro/corr.py,sha256=
|
|
12
|
+
lets_plot/bistro/corr.py,sha256=1_8MUeSQAL50kxn7cbOpQUR2S_w4LHBLJ_EIi3m-ZzY,13339
|
|
13
13
|
lets_plot/bistro/im.py,sha256=HDpoNcqzYQrFfw40qAQQ8CvD0lQPzpNWkF93UrjLYjQ,5654
|
|
14
|
-
lets_plot/bistro/joint.py,sha256=
|
|
15
|
-
lets_plot/bistro/qq.py,sha256=
|
|
16
|
-
lets_plot/bistro/residual.py,sha256=
|
|
17
|
-
lets_plot/bistro/waterfall.py,sha256=
|
|
14
|
+
lets_plot/bistro/joint.py,sha256=8dn7mhbDkPCzVefrMSZ1kOJlX82RclWS4IBQe1lYymw,6744
|
|
15
|
+
lets_plot/bistro/qq.py,sha256=lXRoStspJ6cBiZ6WFNS5gPXQGyE1iBq4c40V9OuQHok,8305
|
|
16
|
+
lets_plot/bistro/residual.py,sha256=FaKP0T34wcBZNL_xMKrqDohSyVb5A6_oYqpKPo_uBr4,12654
|
|
17
|
+
lets_plot/bistro/waterfall.py,sha256=Xz_F0vHuZ__bVgaljjOz6Uf6gQWng3QgHhrBSkkY1jM,10585
|
|
18
18
|
lets_plot/export/__init__.py,sha256=JloMKV4OAMgxBuYg8ObByZ3LJvqcUKed1G286WLA85E,194
|
|
19
|
-
lets_plot/export/ggsave_.py,sha256=
|
|
19
|
+
lets_plot/export/ggsave_.py,sha256=fSb9C3hUUmng-NbsIrv7F_a9F7aHXH8PWrSGW3MWyjQ,4704
|
|
20
20
|
lets_plot/frontend_context/__init__.py,sha256=LALJE-5rVdEcgCP-sWTwNAVoVZB-Pr2lG8CpVn04FrY,212
|
|
21
21
|
lets_plot/frontend_context/_configuration.py,sha256=WCYuFVe1TcB2iCDP2vVG_EKZcrXwv6X9WIwWu3X0qKs,5349
|
|
22
22
|
lets_plot/frontend_context/_frontend_ctx.py,sha256=6ThMnNUp0FVKeFqnMCtOnIUSgsmC0TGQnQEUUCcRdjU,375
|
|
@@ -47,42 +47,43 @@ 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=rALSEdXuDICrYl5fHtaVZ6-bmZKeEKzLeHhfZDN4QqU,2763538
|
|
51
|
+
lets_plot/plot/__init__.py,sha256=GiiaHZnDDw6C2RRMSlsTbBi9hklr0VS-9j0sfvGYmHw,1779
|
|
52
52
|
lets_plot/plot/_global_theme.py,sha256=eatwhJiiqnY6mrNW0Y1NMco2e7xxldhItgj1IOkhRuI,311
|
|
53
|
-
lets_plot/plot/annotation.py,sha256=
|
|
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=
|
|
56
|
-
lets_plot/plot/
|
|
55
|
+
lets_plot/plot/core.py,sha256=XTdRQ0Cn0wBypwXj3IpnGVy2i5Qj5jPaJxiSYry2sjo,32476
|
|
56
|
+
lets_plot/plot/expand_limits_.py,sha256=4_NqSyQMz20GZbsbHKhjCUP_7nS45N2107jPbq4GVmE,2385
|
|
57
|
+
lets_plot/plot/facet.py,sha256=cEWqPgl-4-sYv7Sq5EA_lQPrtKcnFmBMTYxIqo98re4,7236
|
|
57
58
|
lets_plot/plot/font_features.py,sha256=OInyzUmRbujBEeB2gxuD2O249-5htOQZi2Y_fujxpVY,2309
|
|
58
|
-
lets_plot/plot/geom.py,sha256=
|
|
59
|
+
lets_plot/plot/geom.py,sha256=tp5cjHkoYtqKY70rq7RSN-9ejJgDGy47BLwbg0E7BwA,350270
|
|
59
60
|
lets_plot/plot/geom_extras.py,sha256=yJ9T5hAQWnhV-KwW-a55qbDOOrLF1D28VZsHpC4aC34,1747
|
|
60
|
-
lets_plot/plot/geom_function_.py,sha256=
|
|
61
|
-
lets_plot/plot/geom_imshow_.py,sha256=
|
|
62
|
-
lets_plot/plot/geom_livemap_.py,sha256=
|
|
63
|
-
lets_plot/plot/gggrid_.py,sha256=
|
|
64
|
-
lets_plot/plot/ggtb_.py,sha256=
|
|
65
|
-
lets_plot/plot/guide.py,sha256=
|
|
66
|
-
lets_plot/plot/label.py,sha256=
|
|
61
|
+
lets_plot/plot/geom_function_.py,sha256=FsytaKiyVEvg7KGhnlq4-4Gb3YPzK1XyJ3Zos1NgH4g,8087
|
|
62
|
+
lets_plot/plot/geom_imshow_.py,sha256=pQX2hJn3R24hMB68F-PPb0UcDtbylg2VEFD3055jFyE,15160
|
|
63
|
+
lets_plot/plot/geom_livemap_.py,sha256=K-PjktJkbHa7Ylu0hyt-el2h_IA0n9gZ7W5VNtydSgQ,13457
|
|
64
|
+
lets_plot/plot/gggrid_.py,sha256=Gi0ypt1758B0QL-m6KldgK71yxcEcAc4XqqKb65aT1Q,4625
|
|
65
|
+
lets_plot/plot/ggtb_.py,sha256=aNJNfqTWJF4I592tYeORBhqZv93KxPjyrts49M3JutQ,1743
|
|
66
|
+
lets_plot/plot/guide.py,sha256=huDbWFR4k5hmN00oF-sz-8RIv6pYyBCStCz--98qLvs,6923
|
|
67
|
+
lets_plot/plot/label.py,sha256=1_c1RWMdolYNmef8TjuPk8YtVmLU0QKY3ZG_UoOAV74,4736
|
|
67
68
|
lets_plot/plot/marginal_layer.py,sha256=auDAO5IiRpJVcqzqr31SnXJz7sQGIVbndx__qfr7JyY,6538
|
|
68
69
|
lets_plot/plot/plot.py,sha256=mS2vIt7tV1jUJI2atmerA6t1yCxGF2QqqugEqgUQPWo,8102
|
|
69
70
|
lets_plot/plot/pos.py,sha256=NxnuE--5hwQCWOEqnoQu8TFppZYXJG5m2cgWkPjmXIg,10703
|
|
70
|
-
lets_plot/plot/sampling.py,sha256=
|
|
71
|
+
lets_plot/plot/sampling.py,sha256=0DB-3hop8JUI0ZNfjML0wxi7W2EIApXGMEKQgGTGnoA,8827
|
|
71
72
|
lets_plot/plot/sandbox_.py,sha256=5wp2bkIBsihw9aIoKr8FUQZmtZbInHPCULbG5uPsMYE,571
|
|
72
|
-
lets_plot/plot/scale.py,sha256=
|
|
73
|
-
lets_plot/plot/scale_colormap_mpl.py,sha256=
|
|
73
|
+
lets_plot/plot/scale.py,sha256=b3KK7CidyJImCpyN5g_MAozmAJreTC2S1lds8WxRdJA,139616
|
|
74
|
+
lets_plot/plot/scale_colormap_mpl.py,sha256=Kn-_-RMOGIBT5-Wf7iSXQ31G9J0QTy6oFGE36Vw6PcI,10564
|
|
74
75
|
lets_plot/plot/scale_convenience.py,sha256=UOXX07wP5aARYwsOZ-6rK_RR0szhdhnThPvia6LOqrE,4271
|
|
75
|
-
lets_plot/plot/scale_identity_.py,sha256=
|
|
76
|
-
lets_plot/plot/scale_position.py,sha256=
|
|
76
|
+
lets_plot/plot/scale_identity_.py,sha256=6Uz5focUCHIqB9TPhJs7VsPrlZA7JmDOoP2iZYgCuOU,24454
|
|
77
|
+
lets_plot/plot/scale_position.py,sha256=_DlKxIKm2_UBxgnCmAdzYf9Mk0bT8xd-PJlnVz2eIpI,47621
|
|
77
78
|
lets_plot/plot/series_meta.py,sha256=Nh-Vcq-zcg_oN4wdoHZxn6aKuScH3_5mVJ4D8LhbO3A,5621
|
|
78
|
-
lets_plot/plot/stat.py,sha256=
|
|
79
|
-
lets_plot/plot/subplots.py,sha256=
|
|
80
|
-
lets_plot/plot/theme_.py,sha256=
|
|
79
|
+
lets_plot/plot/stat.py,sha256=wfFhM1WGNiBH2PLroq8Y6RbRMz6jZrRYaJBcWWbbkCo,23514
|
|
80
|
+
lets_plot/plot/subplots.py,sha256=euKS4m13r0Ilqu1kSBDoW1cjxgFqPRPuPiFyoERO6ro,11633
|
|
81
|
+
lets_plot/plot/theme_.py,sha256=T6yb7Y79pwOv1r-gE2q0ib0oAowrp3BCy8AO7eeRwJM,29546
|
|
81
82
|
lets_plot/plot/theme_set.py,sha256=KLQSAihJU8_FmAU0at8WUAtgnIqCvU2Rd5awNhTZimo,9496
|
|
82
|
-
lets_plot/plot/tooltip.py,sha256=
|
|
83
|
+
lets_plot/plot/tooltip.py,sha256=TdyJ8pjNuomAF6jeaRsFyFxWWoSSoFFSzsTTnUYBg2Q,16469
|
|
83
84
|
lets_plot/plot/util.py,sha256=w5PWWPPG_b3g8z9yxfodsd38Csu-qg6z_Zgmzbavsn0,8812
|
|
84
|
-
lets_plot-4.
|
|
85
|
-
lets_plot-4.
|
|
86
|
-
lets_plot-4.
|
|
87
|
-
lets_plot-4.
|
|
88
|
-
lets_plot-4.
|
|
85
|
+
lets_plot-4.5.0.dist-info/LICENSE,sha256=D7RdUBHyt0ua4vSZs8H7-HIcliPTSk9zY3sNzx8fejY,1087
|
|
86
|
+
lets_plot-4.5.0.dist-info/METADATA,sha256=6K_dwrByeggF_iHJtBDBcSIzm_b7zebChQHtA-0jcjc,11362
|
|
87
|
+
lets_plot-4.5.0.dist-info/WHEEL,sha256=BiKefS7XHc6W0zY4ROW4fxXTZBRH27JLKtM6pqE4hBs,99
|
|
88
|
+
lets_plot-4.5.0.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
89
|
+
lets_plot-4.5.0.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|