lets-plot 4.6.1__cp312-cp312-macosx_11_0_arm64.whl → 4.6.2__cp312-cp312-macosx_11_0_arm64.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/_version.py +1 -1
- lets_plot/bistro/im.py +1 -1
- lets_plot/export/ggsave_.py +1 -1
- lets_plot/frontend_context/_configuration.py +8 -1
- lets_plot/geo_data/__init__.py +2 -1
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/geom_livemap_.py +2 -22
- lets_plot/plot/ggtb_.py +0 -1
- lets_plot/tilesets.py +69 -4
- {lets_plot-4.6.1.dist-info → lets_plot-4.6.2.dist-info}/METADATA +24 -18
- {lets_plot-4.6.1.dist-info → lets_plot-4.6.2.dist-info}/RECORD +15 -15
- {lets_plot-4.6.1.dist-info → lets_plot-4.6.2.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cpython-312-darwin.so +0 -0
- {lets_plot-4.6.1.dist-info → lets_plot-4.6.2.dist-info/licenses}/LICENSE +0 -0
- {lets_plot-4.6.1.dist-info → lets_plot-4.6.2.dist-info}/top_level.txt +0 -0
lets_plot/plot/geom_livemap_.py
CHANGED
|
@@ -272,33 +272,13 @@ def _prepare_tiles(tiles: Optional[Union[str, dict]]) -> Optional[dict]:
|
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
def _warn_deprecated_tiles(tiles: Union[dict, None]):
|
|
275
|
-
# TODO: Remove this warning in future releases.
|
|
276
|
-
|
|
277
275
|
if tiles is None:
|
|
278
276
|
maptiles_url = get_global_val(MAPTILES_URL)
|
|
279
277
|
else:
|
|
280
278
|
maptiles_url = tiles[MAPTILES_URL]
|
|
281
279
|
|
|
282
|
-
if
|
|
283
|
-
|
|
284
|
-
if not maptiles_url.startswith("https://cartocdn_[abc].global.ssl.fastly.net/"):
|
|
285
|
-
return
|
|
286
|
-
if 'base-midnight' not in maptiles_url and 'base-antique' not in maptiles_url and 'base-flatblue' not in maptiles_url:
|
|
287
|
-
return
|
|
288
|
-
|
|
289
|
-
if tiles is None:
|
|
290
|
-
if not has_global_value(MAPTILES_ATTRIBUTION):
|
|
291
|
-
return
|
|
292
|
-
maptiles_attribution = get_global_val(MAPTILES_ATTRIBUTION)
|
|
293
|
-
else:
|
|
294
|
-
maptiles_attribution = tiles[MAPTILES_ATTRIBUTION]
|
|
295
|
-
|
|
296
|
-
if not isinstance(maptiles_attribution, str):
|
|
297
|
-
return
|
|
298
|
-
if not maptiles_attribution.endswith('map data: <a href="https://www.openstreetmap.org/copyright">© OpenStreetMap contributors</a> <a href="https://carto.com/attributions#basemaps">© CARTO</a>, <a href="https://carto.com/attributions">© CARTO</a>'):
|
|
299
|
-
return
|
|
300
|
-
|
|
301
|
-
print(f"WARN: The tileset is no longer available and the corresponding constant will be removed in future releases.")
|
|
280
|
+
# Check if the current tiles should be deprecated and print a deprecation message. Otherwise, return.
|
|
281
|
+
return
|
|
302
282
|
|
|
303
283
|
|
|
304
284
|
def _prepare_location(location: Union[str, List[float]]) -> Optional[dict]:
|
lets_plot/plot/ggtb_.py
CHANGED
lets_plot/tilesets.py
CHANGED
|
@@ -140,7 +140,6 @@ 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
|
|
144
143
|
base_url = "https://cartocdn_{{s}}.global.ssl.fastly.net/{tileset}/{{z}}/{{x}}/{{y}}{hi_res}.png"
|
|
145
144
|
else:
|
|
146
145
|
raise ValueError("Unknown carto cdn: {}. Expected 'carto' or 'fastly'.".format(cdn))
|
|
@@ -268,19 +267,85 @@ Examples
|
|
|
268
267
|
|
|
269
268
|
CARTO_MIDNIGHT_COMMANDER, CARTO_MIDNIGHT_COMMANDER_HIRES = _carto_tiles('base-midnight', cdn='fastly')
|
|
270
269
|
"""
|
|
271
|
-
|
|
270
|
+
CARTO tiles, midnight commander theme.
|
|
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)
|
|
272
293
|
|
|
273
294
|
"""
|
|
274
295
|
|
|
275
296
|
CARTO_ANTIQUE, CARTO_ANTIQUE_HIRES = _carto_tiles('base-antique', cdn='fastly')
|
|
276
297
|
"""
|
|
277
|
-
|
|
298
|
+
CARTO tiles, antique theme.
|
|
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)
|
|
278
321
|
|
|
279
322
|
"""
|
|
280
323
|
|
|
281
324
|
CARTO_FLAT_BLUE, CARTO_FLAT_BLUE_HIRES = _carto_tiles('base-flatblue', cdn='fastly')
|
|
282
325
|
"""
|
|
283
|
-
|
|
326
|
+
CARTO tiles, flat blue theme.
|
|
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)
|
|
284
349
|
|
|
285
350
|
"""
|
|
286
351
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: lets-plot
|
|
3
|
-
Version: 4.6.
|
|
3
|
+
Version: 4.6.2
|
|
4
4
|
Summary: An open source library for statistical plotting
|
|
5
5
|
Home-page: https://lets-plot.org
|
|
6
6
|
Author: JetBrains
|
|
@@ -29,7 +29,7 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
|
29
29
|
Classifier: Intended Audience :: Science/Research
|
|
30
30
|
Classifier: Intended Audience :: Developers
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
|
-
License-File:
|
|
32
|
+
License-File: LICENSE
|
|
33
33
|
Requires-Dist: pypng
|
|
34
34
|
Requires-Dist: palettable
|
|
35
35
|
Dynamic: author
|
|
@@ -40,6 +40,7 @@ Dynamic: description-content-type
|
|
|
40
40
|
Dynamic: home-page
|
|
41
41
|
Dynamic: keywords
|
|
42
42
|
Dynamic: license
|
|
43
|
+
Dynamic: license-file
|
|
43
44
|
Dynamic: maintainer
|
|
44
45
|
Dynamic: maintainer-email
|
|
45
46
|
Dynamic: project-url
|
|
@@ -126,6 +127,10 @@ Also read:
|
|
|
126
127
|
|
|
127
128
|
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-25a/ggbunch_indonesia.ipynb).
|
|
128
129
|
|
|
130
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-25a/images/magnifier_inset.png" alt="f-25a/images/magnifier_inset.png" width="400" height="251">
|
|
131
|
+
|
|
132
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-25a/magnifier_inset.ipynb).
|
|
133
|
+
|
|
129
134
|
- #### Parameters `start` and `direction` in `geom_pie()` Geometry
|
|
130
135
|
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-25a/images/geom_pie_params.png" alt="f-25a/images/geom_pie_params.png" width="400" height="119">
|
|
131
136
|
|
|
@@ -139,6 +144,21 @@ Also read:
|
|
|
139
144
|
|
|
140
145
|
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)
|
|
141
146
|
|
|
147
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/magnifier_inset.ipynb">
|
|
148
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-25a/images/magnifier_inset.png" alt="f-25a/images/magnifier_inset.png" width="128" height="128">
|
|
149
|
+
</a>
|
|
150
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/ggbunch_indonesia.ipynb">
|
|
151
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-25a/images/ggbunch_indonesia.png" alt="f-25a/images/ggbunch_indonesia.png" width="128" height="128">
|
|
152
|
+
</a>
|
|
153
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/theme_legend_scheme.ipynb">
|
|
154
|
+
<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="128" height="128">
|
|
155
|
+
</a>
|
|
156
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/interact_pan_zoom.ipynb">
|
|
157
|
+
<img src="https://github.com/JetBrains/lets-plot-docs/blob/4b9571b8af759574fa2db313a102069d8f8c7238/source/_static/images/changelog/4.5.0/interact_pan_zoom.png?raw=true" alt="images/changelog/4.5.0/interact_pan_zoom.png" width="128" height="128">
|
|
158
|
+
</a>
|
|
159
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/lp_verse.ipynb">
|
|
160
|
+
<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="128" height="128">
|
|
161
|
+
</a>
|
|
142
162
|
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/us_unemployment.ipynb">
|
|
143
163
|
<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">
|
|
144
164
|
</a>
|
|
@@ -154,21 +174,7 @@ Also read:
|
|
|
154
174
|
<a href="https://www.kaggle.com/code/alshan/japanese-volcanoes-on-map">
|
|
155
175
|
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_japanese_volcanoes_on_map.png" alt="f-24b/images/gal_japanese_volcanoes_on_map.png" width="128" height="128">
|
|
156
176
|
</a>
|
|
157
|
-
|
|
158
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_bbc_cookbook.png" alt="f-24a/images/gal_bbc_cookbook.png" width="128" height="128">
|
|
159
|
-
</a>
|
|
160
|
-
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/palmer_penguins.ipynb">
|
|
161
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_penguins.png" alt="f-24a/images/gal_penguins.png" width="128" height="128">
|
|
162
|
-
</a>
|
|
163
|
-
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/periodic_table.ipynb">
|
|
164
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_periodic_table.png" alt="f-24a/images/gal_periodic_table.png" width="128" height="128">
|
|
165
|
-
</a>
|
|
166
|
-
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/wind_rose.ipynb">
|
|
167
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_wind_rose.png" alt="f-24a/images/gal_wind_rose.png" width="128" height="128">
|
|
168
|
-
</a>
|
|
169
|
-
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/heatmap_in_polar_coord.ipynb">
|
|
170
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_polar_heatmap.png" alt="f-24a/images/gal_polar_heatmap.png" width="128" height="128">
|
|
171
|
-
</a>
|
|
177
|
+
|
|
172
178
|
|
|
173
179
|
## Change Log
|
|
174
180
|
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cpython-312-darwin.so,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cpython-312-darwin.so,sha256=T1Z7pxVkMG1ITDiTZtE6zQ43YtZ-tRMfzm1J4oBYy_8,9540304
|
|
2
2
|
lets_plot/__init__.py,sha256=JBXXtPi4nwhU9jrsUXcQTP1iaGF0jbHBVk_66pohq9I,11224
|
|
3
3
|
lets_plot/_global_settings.py,sha256=4P9UL6xWEARJuxyvXBQUxt1NE_YDrU_ElF34pr72VhA,7440
|
|
4
4
|
lets_plot/_kbridge.py,sha256=u5bBe6sTDbNgoAk3HmtkhQXxCYofjSSin-J-yHz0pfY,4675
|
|
5
5
|
lets_plot/_type_utils.py,sha256=2GZ4GrJHe7rk_DPSHj88nBW8R9xxx7IGbgGQwhQclOg,2919
|
|
6
|
-
lets_plot/_version.py,sha256=
|
|
6
|
+
lets_plot/_version.py,sha256=69RsyAckyHWeKA9dimVXADg43i1UW7dKe9mUXEJGEaE,233
|
|
7
7
|
lets_plot/mapping.py,sha256=q-O14pcnAosRIWcgg9-CkXMF43p5H7cKbyT4ne9w6hY,3576
|
|
8
8
|
lets_plot/settings_utils.py,sha256=PrceNltN0JNzYxkIx0hwGgzX9dNxgVNqZY5hQ-r8QMQ,8434
|
|
9
|
-
lets_plot/tilesets.py,sha256=
|
|
9
|
+
lets_plot/tilesets.py,sha256=gN7gfn4qnXZj699LyxpDWwEuWwNmAJr2ZQ7VJX7rzoU,10382
|
|
10
10
|
lets_plot/bistro/__init__.py,sha256=4Vix3Qu2P4zqGiDx8gnTd3usCLQQGBRKhseSNjrsBUY,426
|
|
11
11
|
lets_plot/bistro/_plot2d_common.py,sha256=NuRH-tJ-PKtC4X69hvtGu9Zhn0IvsGviDeHoy3JuXSQ,3883
|
|
12
12
|
lets_plot/bistro/corr.py,sha256=nfxVWcS1UOfIMXWuE69-2ya0Omxi5jhIcRp3pSTxHZA,12892
|
|
13
|
-
lets_plot/bistro/im.py,sha256=
|
|
13
|
+
lets_plot/bistro/im.py,sha256=vwJuPzeyWe1J1KRPxGIjvdQKwZD4QSn9hcfPQ5RzXs4,6379
|
|
14
14
|
lets_plot/bistro/joint.py,sha256=BIAII_eYGyHJ43kk7BABqRDhUMIIpLNafMN-0YDrl_w,6571
|
|
15
15
|
lets_plot/bistro/qq.py,sha256=4AMBjbtcwE4mQNmZSglGt1w8MnvhNqg7CZEVNb9fUr4,8098
|
|
16
16
|
lets_plot/bistro/residual.py,sha256=el9B_nd4vT53hIXvgVtqbMr5QvjxLZwzH4UbCGxlxbM,12332
|
|
17
17
|
lets_plot/bistro/waterfall.py,sha256=5iPADC8T6zUbjum5DKS4QihifdqTFaE8WOok5ULO0gU,10474
|
|
18
18
|
lets_plot/export/__init__.py,sha256=lDs6fqtQjkgJyKqeYlOdhrHMN__TeggTz73hgHAkyzc,188
|
|
19
|
-
lets_plot/export/ggsave_.py,sha256=
|
|
19
|
+
lets_plot/export/ggsave_.py,sha256=qUw9Dw_-MTFgOy2qVd60pTtxO_JnW_kedMT1C_39C_g,4558
|
|
20
20
|
lets_plot/frontend_context/__init__.py,sha256=nqIogfMulwKRY2l_v3Rn7tXMQ1btasX9f7dwfrVaj_A,204
|
|
21
|
-
lets_plot/frontend_context/_configuration.py,sha256=
|
|
21
|
+
lets_plot/frontend_context/_configuration.py,sha256=Xxbbm1rP7ZaH2HIPf4LrCby4Z-LI-CKlEUxzWX7fQF0,5567
|
|
22
22
|
lets_plot/frontend_context/_frontend_ctx.py,sha256=073vxq0laO6ubol3kJK6aBbWo9Fr2_olbQEZUbr_QFc,359
|
|
23
23
|
lets_plot/frontend_context/_html_contexts.py,sha256=sk4VG0aBa0sGXTV1PIWPKjPRM5lE-hkVEcGDyd0k-1o,4142
|
|
24
24
|
lets_plot/frontend_context/_intellij_python_json_ctx.py,sha256=pklGvBxke3nvK4gWgK5TuFAEzr2ywDtLtC7_V9lHMPE,1116
|
|
@@ -29,7 +29,7 @@ lets_plot/frontend_context/_static_html_page_ctx.py,sha256=8LMWMNw_S57FKptEytvQd
|
|
|
29
29
|
lets_plot/frontend_context/_static_svg_ctx.py,sha256=xc4EP8Lsa1kRID1-Jb5R40uG02OEMTKVwdUaSw4yQ_0,820
|
|
30
30
|
lets_plot/frontend_context/_webbr_html_page_ctx.py,sha256=n_RunY5jmUn5UW_uD_DI_JSATIiTX3YWZtKLwReKNAY,868
|
|
31
31
|
lets_plot/frontend_context/sandbox.py,sha256=7fKogCbxiYbE3zt6efsaISP5t3-kbgGeDJ3MLr11u2g,140
|
|
32
|
-
lets_plot/geo_data/__init__.py,sha256=
|
|
32
|
+
lets_plot/geo_data/__init__.py,sha256=vSa3yEc79hgIyXPEMTK2sAroRARs71nd5hrKO9sNiM4,588
|
|
33
33
|
lets_plot/geo_data/core.py,sha256=GWQTPn7-miSiB-ovGZItFlHs5XiQqqFbNdRMPFnFjNA,9346
|
|
34
34
|
lets_plot/geo_data/geocoder.py,sha256=CNqb_DMm_yJgE5ItyW8J4kq7kQo8fp4lHuUHPiOo3sM,33713
|
|
35
35
|
lets_plot/geo_data/geocodes.py,sha256=DOdJKa2UVrf4ME64_6H9prrzLZ5ohgp9SKRnq4zgVu0,17861
|
|
@@ -47,7 +47,7 @@ lets_plot/geo_data/gis/response.py,sha256=7Ac2VN4Hl9iffm7wAyfL80Wzo7sG9A1F5BqzJU
|
|
|
47
47
|
lets_plot/geo_data_internals/__init__.py,sha256=4R6hr7MVB9iRi9JNQm_UUQL9jCe_dYDtizw_230V2Yg,234
|
|
48
48
|
lets_plot/geo_data_internals/constants.py,sha256=IDpHhOOg7dbfIKqLNSk3AGa-5HjDcnItFZDxCm4fylw,428
|
|
49
49
|
lets_plot/geo_data_internals/utils.py,sha256=phV_Q84xz4uZH2jI9WLUrYDyZAz0d2-00OOLxkRH4iw,967
|
|
50
|
-
lets_plot/package_data/lets-plot.min.js,sha256=
|
|
50
|
+
lets_plot/package_data/lets-plot.min.js,sha256=HEtstIsBt4qAtwh3CG3psJEl3xK6sYgvhAXaQqm5p0c,2321076
|
|
51
51
|
lets_plot/plot/__init__.py,sha256=RNsQuVS8qe4Xf4so7PJiQJKdYYnDMIqydUQNzstqhZI,1771
|
|
52
52
|
lets_plot/plot/_global_theme.py,sha256=hOV9MzYpfjdF6hDE3mfLv_LqFtaouCJcccoW8pGoFoU,297
|
|
53
53
|
lets_plot/plot/annotation.py,sha256=ZBQ9ZTxOVT-ePVTUocPTQnM92loiVP0jgWw8XM9Cfmo,7660
|
|
@@ -60,10 +60,10 @@ lets_plot/plot/geom.py,sha256=UtQz8WPStQaG51M0qu3toss2OgUw7w8TAjnoU9UFvf4,354624
|
|
|
60
60
|
lets_plot/plot/geom_extras.py,sha256=I_ERjnZlk5VyilJELx0sA_4C2a_Ycjc2Thas-I6WZoo,1694
|
|
61
61
|
lets_plot/plot/geom_function_.py,sha256=bMGr73qaEW3HnxlWADvHyt_nYn9HJGZzBqYiHx4yIHY,7871
|
|
62
62
|
lets_plot/plot/geom_imshow_.py,sha256=LWlNVriYK26HZGUjdkbiB4YaoTlVQxUyaNUPY46RVqw,14759
|
|
63
|
-
lets_plot/plot/geom_livemap_.py,sha256=
|
|
63
|
+
lets_plot/plot/geom_livemap_.py,sha256=LfuxJ2BHK9AeN6-z8YEnp24HYSguSu0jdJlKCIxjKTA,12201
|
|
64
64
|
lets_plot/plot/ggbunch_.py,sha256=kRAZGcDDe33SrU9kH_XVJqJBTfW3ho3VXm3ZchUzPO4,3091
|
|
65
65
|
lets_plot/plot/gggrid_.py,sha256=6M7YRxcrpftAardpKTMbkIeN0V7CB9FvFLdlSAKhZMA,3893
|
|
66
|
-
lets_plot/plot/ggtb_.py,sha256=
|
|
66
|
+
lets_plot/plot/ggtb_.py,sha256=k4mzIwP-o9xSJ1-0Hb099dSxq8a-kEUjUjuug0I1-Cc,1637
|
|
67
67
|
lets_plot/plot/guide.py,sha256=C-mDgjXKwQz_Pv6OB1rcQohAIUAl0QvoApPsAR5lbs4,6694
|
|
68
68
|
lets_plot/plot/label.py,sha256=iXTTLP-AjFtHRnti8v4mZMnGLRNLhsxhvetoQPhi8H0,4549
|
|
69
69
|
lets_plot/plot/marginal_layer.py,sha256=Y4FMmQZlUuLxzjjntVQThuV8scG6LbEmDGjstGMOls4,6357
|
|
@@ -84,8 +84,8 @@ lets_plot/plot/theme_.py,sha256=zQmlXuU7Y0dJa3ZlQFwNJNpsoWe0Eyvf-EErzw1BQuQ,3167
|
|
|
84
84
|
lets_plot/plot/theme_set.py,sha256=USNU-ccPKlZ4KEC1ij92n-SHY5271Ru_c1CQIIWXonI,9103
|
|
85
85
|
lets_plot/plot/tooltip.py,sha256=AvRjT5UPop5wVORFHnaVeBhAIHTYbIjf0FXXUTB4Qvg,15983
|
|
86
86
|
lets_plot/plot/util.py,sha256=778yCTbEOvFRNueMyEPhRkJtPEwzh3Lo0LQO0FtoM0U,8586
|
|
87
|
-
lets_plot-4.6.
|
|
88
|
-
lets_plot-4.6.
|
|
89
|
-
lets_plot-4.6.
|
|
90
|
-
lets_plot-4.6.
|
|
91
|
-
lets_plot-4.6.
|
|
87
|
+
lets_plot-4.6.2.dist-info/licenses/LICENSE,sha256=r43VKLFaMylB4Ru-pE07j0cfUO7wQpMnWm-uZ8hEqMw,1066
|
|
88
|
+
lets_plot-4.6.2.dist-info/METADATA,sha256=2izNUgG73jSEDhpTUoXSnMoOV2PAtusmfbbPKmhOQ-Y,11440
|
|
89
|
+
lets_plot-4.6.2.dist-info/WHEEL,sha256=zT4bWmTpgvLb-CO5IGKhtulo8JdnX1gd0cgiqom_p-o,109
|
|
90
|
+
lets_plot-4.6.2.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
91
|
+
lets_plot-4.6.2.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|