lets-plot 4.3.2__cp312-cp312-win_amd64.whl → 4.4.0__cp312-cp312-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 +6 -4
- lets_plot/_type_utils.py +8 -0
- lets_plot/_version.py +1 -1
- lets_plot/bistro/__init__.py +3 -1
- lets_plot/bistro/corr.py +3 -3
- lets_plot/bistro/im.py +1 -1
- lets_plot/bistro/qq.py +2 -0
- lets_plot/bistro/residual.py +8 -3
- lets_plot/bistro/waterfall.py +243 -0
- lets_plot/geo_data/to_geo_data_frame.py +5 -1
- lets_plot/mapping.py +6 -7
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/__init__.py +5 -1
- lets_plot/plot/annotation.py +2 -4
- lets_plot/plot/coord.py +1 -2
- lets_plot/plot/core.py +27 -34
- lets_plot/plot/geom.py +473 -122
- lets_plot/plot/geom_function_.py +7 -2
- lets_plot/plot/geom_imshow_.py +1 -1
- lets_plot/plot/geom_livemap_.py +15 -5
- lets_plot/plot/ggtb_.py +11 -0
- lets_plot/plot/guide.py +94 -8
- lets_plot/plot/label.py +30 -6
- lets_plot/plot/marginal_layer.py +1 -2
- lets_plot/plot/plot.py +4 -2
- lets_plot/plot/scale_colormap_mpl.py +295 -0
- lets_plot/plot/series_meta.py +123 -0
- lets_plot/plot/stat.py +2 -4
- lets_plot/plot/theme_.py +12 -0
- lets_plot/plot/tooltip.py +24 -24
- lets_plot/plot/util.py +106 -113
- {lets_plot-4.3.2.dist-info → lets_plot-4.4.0.dist-info}/METADATA +167 -192
- {lets_plot-4.3.2.dist-info → lets_plot-4.4.0.dist-info}/RECORD +37 -33
- {lets_plot-4.3.2.dist-info → lets_plot-4.4.0.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cp312-win_amd64.pyd +0 -0
- {lets_plot-4.3.2.dist-info → lets_plot-4.4.0.dist-info}/LICENSE +0 -0
- {lets_plot-4.3.2.dist-info → lets_plot-4.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,192 +1,167 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: lets-plot
|
|
3
|
-
Version: 4.
|
|
4
|
-
Summary: An open source library for statistical plotting
|
|
5
|
-
Home-page: https://lets-plot.org
|
|
6
|
-
Author: JetBrains
|
|
7
|
-
Author-email: lets-plot@jetbrains.com
|
|
8
|
-
Maintainer: JetBrains
|
|
9
|
-
Maintainer-email: lets-plot@jetbrains.com
|
|
10
|
-
License: MIT
|
|
11
|
-
Project-URL: Github, https://github.com/JetBrains/lets-plot
|
|
12
|
-
Project-URL: Documentation, https://lets-plot.org
|
|
13
|
-
Keywords: ggplot,ggplot2,geospatial,geopandas,geocoding
|
|
14
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.
|
|
21
|
-
Classifier:
|
|
22
|
-
Classifier: Framework ::
|
|
23
|
-
Classifier:
|
|
24
|
-
Classifier: Operating System ::
|
|
25
|
-
Classifier: Operating System ::
|
|
26
|
-
Classifier:
|
|
27
|
-
Classifier:
|
|
28
|
-
Classifier:
|
|
29
|
-
Classifier: Intended Audience ::
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
[ for other changes and fixes.
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
## Code of Conduct
|
|
183
|
-
|
|
184
|
-
This project and the corresponding community are governed by the
|
|
185
|
-
[JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct).
|
|
186
|
-
Please make sure you read it.
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
## License
|
|
190
|
-
|
|
191
|
-
Code and documentation released under the [MIT license](https://github.com/JetBrains/lets-plot/blob/master/LICENSE).
|
|
192
|
-
Copyright © 2019-2024, JetBrains s.r.o.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: lets-plot
|
|
3
|
+
Version: 4.4.0
|
|
4
|
+
Summary: An open source library for statistical plotting
|
|
5
|
+
Home-page: https://lets-plot.org
|
|
6
|
+
Author: JetBrains
|
|
7
|
+
Author-email: lets-plot@jetbrains.com
|
|
8
|
+
Maintainer: JetBrains
|
|
9
|
+
Maintainer-email: lets-plot@jetbrains.com
|
|
10
|
+
License: MIT
|
|
11
|
+
Project-URL: Github, https://github.com/JetBrains/lets-plot
|
|
12
|
+
Project-URL: Documentation, https://lets-plot.org
|
|
13
|
+
Keywords: ggplot,ggplot2,geospatial,geopandas,geocoding
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Framework :: IPython
|
|
22
|
+
Classifier: Framework :: Jupyter
|
|
23
|
+
Classifier: Operating System :: MacOS
|
|
24
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
25
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
26
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
27
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
28
|
+
Classifier: Intended Audience :: Science/Research
|
|
29
|
+
Classifier: Intended Audience :: Developers
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
License-File: ../LICENSE
|
|
32
|
+
Requires-Dist: pypng
|
|
33
|
+
Requires-Dist: palettable
|
|
34
|
+
|
|
35
|
+
# Lets-Plot
|
|
36
|
+
|
|
37
|
+
[](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
|
|
38
|
+
[](https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/LICENSE)
|
|
39
|
+
[](https://github.com/JetBrains/lets-plot/releases/latest)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
**Lets-Plot** is a multiplatform plotting library built on the principles of the Grammar of Graphics.
|
|
43
|
+
|
|
44
|
+
The library' design is heavily influenced by Leland Wilkinson work [The Grammar of Graphics](https://www.goodreads.com/book/show/2549408.The_Grammar_of_Graphics) describing the deep features that underlie all statistical graphics.
|
|
45
|
+
|
|
46
|
+
> This grammar [...] is made up of a set of independent components that can be composed in many different ways. This makes [it] very powerful because you are not limited to a set of pre-specified graphics, but you can create new graphics that are precisely tailored for your problem.
|
|
47
|
+
> - Hadley Wickham, "[ggplot2: Elegant Graphics for Data Analysis](https://ggplot2-book.org/index.html)"
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
## Grammar of Graphics for Python [](https://pypi.org/project/lets-plot)
|
|
51
|
+
|
|
52
|
+
A bridge between R (ggplot2) and Python data visualization. \
|
|
53
|
+
To learn more see the documentation site at **[lets-plot.org](https://lets-plot.org)**.
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
## Grammar of Graphics for Kotlin [](https://github.com/JetBrains/lets-plot-kotlin/releases/latest)
|
|
57
|
+
|
|
58
|
+
### Notebooks
|
|
59
|
+
Create plots in [Kotlin Notebook](https://plugins.jetbrains.com/plugin/16340-kotlin-notebook),
|
|
60
|
+
[Datalore](https://datalore.jetbrains.com/report/static/HZqq77cegYd.E7get_WnChZ/aTA9lQnPkRwdCzT6uy95GZ), [Jupyter with Kotlin Kernel](https://github.com/Kotlin/kotlin-jupyter#readme) \
|
|
61
|
+
or any other notebook that supports `Kotlin Kernel`. \
|
|
62
|
+
To learn more see the **[Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin)** project at GitHub.
|
|
63
|
+
|
|
64
|
+
### Compose Multiplatform
|
|
65
|
+
Embed Lets-Plot charts in [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) applications. \
|
|
66
|
+
To learn more see the **[Lets-Plot Skia Frontend](https://github.com/JetBrains/lets-plot-skia)** project at GitHub.
|
|
67
|
+
|
|
68
|
+
### JVM and Kotlin/JS
|
|
69
|
+
Embed Lets-Plot charts in JVM (Swing, JavaFX) and Kotlin/JS applications. <br>
|
|
70
|
+
To learn more see the **[Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin)** project at GitHub.
|
|
71
|
+
|
|
72
|
+
## "Lets-Plot in SciView" plugin
|
|
73
|
+
|
|
74
|
+
[](http://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview)
|
|
75
|
+
[](http://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview)
|
|
76
|
+
|
|
77
|
+
*Scientific mode* in PyCharm and in IntelliJ IDEA provides support for interactive scientific computing and data visualization.
|
|
78
|
+
|
|
79
|
+
[*Lets-Plot in SciView*](https://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview) plugin adds
|
|
80
|
+
support for interactive plotting to IntelliJ-based IDEs with the *Scientific mode* enabled.
|
|
81
|
+
|
|
82
|
+
>
|
|
83
|
+
> **Note:** The *Scientific mode* is NOT available in communinty editions of JetBrains IDEs.
|
|
84
|
+
>
|
|
85
|
+
|
|
86
|
+
Also read:
|
|
87
|
+
|
|
88
|
+
- [Scientific mode in PyCharm](https://www.jetbrains.com/help/pycharm/matplotlib-support.html)
|
|
89
|
+
- [Scientific mode in IntelliJ IDEA](https://www.jetbrains.com/help/idea/matplotlib-support.html)
|
|
90
|
+
|
|
91
|
+
## What is new in 4.4.0
|
|
92
|
+
|
|
93
|
+
- #### Waterfall Plot
|
|
94
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24e/images/waterfall.png" alt="f-24e/images/waterfall.png" width="460" height="220">
|
|
95
|
+
|
|
96
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/waterfall_plot.ipynb).
|
|
97
|
+
|
|
98
|
+
- #### **`geom_band()`**:
|
|
99
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24e/images/geom_band.png" alt="f-24e/images/geom_band.png.png" width="615" height="220">
|
|
100
|
+
|
|
101
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/geom_band.ipynb).
|
|
102
|
+
|
|
103
|
+
- #### Custom Legends
|
|
104
|
+
- `manual_key` parameter in plot layer
|
|
105
|
+
- `layer_key()` function
|
|
106
|
+
<br>
|
|
107
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24e/images/custom_legend.png" alt="f-24e/images/custom_legend.png.png" width="294" height="147">
|
|
108
|
+
|
|
109
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/manual_legend.ipynb).
|
|
110
|
+
|
|
111
|
+
- #### Customizing Legends Appearence
|
|
112
|
+
The `override_aes` parameter in the `guide_legend()` function.
|
|
113
|
+
|
|
114
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/legend_override_aes.ipynb).
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
- #### And More
|
|
118
|
+
|
|
119
|
+
See [CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md) for a full list of changes.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)
|
|
123
|
+
|
|
124
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb">
|
|
125
|
+
<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">
|
|
126
|
+
</a>
|
|
127
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/cookbook/geom_spoke.ipynb">
|
|
128
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_spoke.png" alt="f-24b/images/gal_spoke.png" width="128" height="128">
|
|
129
|
+
</a>
|
|
130
|
+
<a href="https://www.kaggle.com/code/alshan/indonesia-volcanoes-on-map">
|
|
131
|
+
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_indonesia_volcanoes_on_map.png" alt="f-24b/images/gal_indonesia_volcanoes_on_map.png" width="128" height="128">
|
|
132
|
+
</a>
|
|
133
|
+
<a href="https://www.kaggle.com/code/alshan/japanese-volcanoes-on-map">
|
|
134
|
+
<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">
|
|
135
|
+
</a>
|
|
136
|
+
<a href="https://nextjournal.com/asmirnov-horis/bbc-visual-and-data-journalism-cookbook-for-lets-plot">
|
|
137
|
+
<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">
|
|
138
|
+
</a>
|
|
139
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/palmer_penguins.ipynb">
|
|
140
|
+
<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">
|
|
141
|
+
</a>
|
|
142
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/periodic_table.ipynb">
|
|
143
|
+
<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">
|
|
144
|
+
</a>
|
|
145
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/wind_rose.ipynb">
|
|
146
|
+
<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">
|
|
147
|
+
</a>
|
|
148
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/heatmap_in_polar_coord.ipynb">
|
|
149
|
+
<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">
|
|
150
|
+
</a>
|
|
151
|
+
|
|
152
|
+
## Change Log
|
|
153
|
+
|
|
154
|
+
[CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
## Code of Conduct
|
|
158
|
+
|
|
159
|
+
This project and the corresponding community are governed by the
|
|
160
|
+
[JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct).
|
|
161
|
+
Please make sure you read it.
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
## License
|
|
165
|
+
|
|
166
|
+
Code and documentation released under the [MIT license](https://github.com/JetBrains/lets-plot/blob/master/LICENSE).
|
|
167
|
+
Copyright © 2019-2024, JetBrains s.r.o.
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cp312-win_amd64.pyd,sha256=
|
|
2
|
-
lets_plot/__init__.py,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cp312-win_amd64.pyd,sha256=32jEX_Iu5rNS38wpASQUaPlQRK-P_sKC-uGI4tdz1P4,6324736
|
|
2
|
+
lets_plot/__init__.py,sha256=JOsBQOnuJgUW3em6hRCx1bzQg9uOiTIhaAJmpJNJEwY,11480
|
|
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=
|
|
7
|
-
lets_plot/mapping.py,sha256=
|
|
5
|
+
lets_plot/_type_utils.py,sha256=ZO7os2Va772U2pJSkTA3OwDylN1QtXZo5y_EZpiWMdI,2789
|
|
6
|
+
lets_plot/_version.py,sha256=BpcFd_1O5XhECaYgZRsKQos9_llFm6R1oVtK4DHimlQ,239
|
|
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=8LC_GsrZd1X12rII28W1XbO7A8YfeG1AjBR8L_PPFVk,10810
|
|
10
|
-
lets_plot/bistro/__init__.py,sha256=
|
|
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=
|
|
13
|
-
lets_plot/bistro/im.py,sha256=
|
|
12
|
+
lets_plot/bistro/corr.py,sha256=GqBCneSccF8GBkJgkedpnUdIhXvmJ5Blhtej0qhKRrs,13015
|
|
13
|
+
lets_plot/bistro/im.py,sha256=HDpoNcqzYQrFfw40qAQQ8CvD0lQPzpNWkF93UrjLYjQ,5654
|
|
14
14
|
lets_plot/bistro/joint.py,sha256=bnr4Q-kyfgSoDnplpBq9jXi2XVpBEfcA0cZRVSZM3gU,6455
|
|
15
|
-
lets_plot/bistro/qq.py,sha256=
|
|
16
|
-
lets_plot/bistro/residual.py,sha256=
|
|
15
|
+
lets_plot/bistro/qq.py,sha256=OWAlS4Ys9zJbLlOWB1c-9v0YePzErGLhtd_PDB1Ycbg,6770
|
|
16
|
+
lets_plot/bistro/residual.py,sha256=QTKvMqSl7NoRQRTe85C36XyKBozyh9g6dNaMMMXG320,12357
|
|
17
|
+
lets_plot/bistro/waterfall.py,sha256=Yss5hbxqNU3EfCdU5yITL_OdIjA51CHwDje0TyQdKvU,10047
|
|
17
18
|
lets_plot/export/__init__.py,sha256=JloMKV4OAMgxBuYg8ObByZ3LJvqcUKed1G286WLA85E,194
|
|
18
19
|
lets_plot/export/ggsave_.py,sha256=BjpQ7eX_lDLPJpyeDr_G5zzPtUWVebvSoSLb-72xBPs,4001
|
|
19
20
|
lets_plot/frontend_context/__init__.py,sha256=LALJE-5rVdEcgCP-sWTwNAVoVZB-Pr2lG8CpVn04FrY,212
|
|
@@ -33,7 +34,7 @@ lets_plot/geo_data/core.py,sha256=8Kxp8hbMRJVItR-N3T_7Ml5TOIpCkYMUGb0vsfy9hUM,96
|
|
|
33
34
|
lets_plot/geo_data/geocoder.py,sha256=6clN2-uJN95YcMpKNUC4aLmegAJhRvMLsSc1TusgH3Q,34690
|
|
34
35
|
lets_plot/geo_data/geocodes.py,sha256=yuxj1FqhVCG0Vc3kUuxd21ShmL9WAtsu6tnmhackld4,18373
|
|
35
36
|
lets_plot/geo_data/livemap_helper.py,sha256=4169J6yeo3nftw3ynjPuUfCtrgw55a1mX7NxvNaLZo0,2150
|
|
36
|
-
lets_plot/geo_data/to_geo_data_frame.py,sha256=
|
|
37
|
+
lets_plot/geo_data/to_geo_data_frame.py,sha256=abVrGs6naP2hhJ6F2I0SodX82101pgkekV4pGM7BRJ8,5462
|
|
37
38
|
lets_plot/geo_data/type_assertion.py,sha256=9TThxe0Ojva6UH8MG_tGsIudKyIdRXmKJscNmBUULBc,809
|
|
38
39
|
lets_plot/geo_data/gis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
40
|
lets_plot/geo_data/gis/fluent_dict.py,sha256=qLzgPgancRe336CZUvXIpM96DRsBXvn3iVh6VvO7hwY,7231
|
|
@@ -46,39 +47,42 @@ lets_plot/geo_data/gis/response.py,sha256=MsAk10JQe0XC-h4Cv0w7uzYxAtlx3YaSrqYXA6
|
|
|
46
47
|
lets_plot/geo_data_internals/__init__.py,sha256=ZwcoMdyQ_k9589f2D3nXXjedJpyiDR8WyqaghTh_EVQ,238
|
|
47
48
|
lets_plot/geo_data_internals/constants.py,sha256=2dViytUZPiojilhWV3UWzBAXgdHl5OoIJsNMsI0V7yU,441
|
|
48
49
|
lets_plot/geo_data_internals/utils.py,sha256=8vfDa99yq1YpVNr-RDtpCJfbrON04rIG6cugpQXnJlU,1000
|
|
49
|
-
lets_plot/package_data/lets-plot.min.js,sha256=
|
|
50
|
-
lets_plot/plot/__init__.py,sha256=
|
|
50
|
+
lets_plot/package_data/lets-plot.min.js,sha256=_9pJj39uAW9G-U3zOZNEdFevk_hQfzCp_y1wxauGje0,2155684
|
|
51
|
+
lets_plot/plot/__init__.py,sha256=bXUtxpS8UXqYn1uYIwdTY2a2koxJMjcCOdG4iUxutMM,1711
|
|
51
52
|
lets_plot/plot/_global_theme.py,sha256=eatwhJiiqnY6mrNW0Y1NMco2e7xxldhItgj1IOkhRuI,311
|
|
52
|
-
lets_plot/plot/annotation.py,sha256=
|
|
53
|
-
lets_plot/plot/coord.py,sha256=
|
|
54
|
-
lets_plot/plot/core.py,sha256=
|
|
53
|
+
lets_plot/plot/annotation.py,sha256=D6XKD85xQ6YqhedS8geHCWun_5xJZWOxyfFjeCo_6tU,7873
|
|
54
|
+
lets_plot/plot/coord.py,sha256=B4EEt6mqPERbYVwzl3VPkEym9hq_tO0LNtgdtluWQBQ,8218
|
|
55
|
+
lets_plot/plot/core.py,sha256=2LVaCx2wvJ6tSys0UW_fpgdb6V8uBF3Sg6sTPa_lC6E,32185
|
|
55
56
|
lets_plot/plot/facet.py,sha256=sybZ5dpXOpLlG9KrX2LRSeeoVgX8xL22-hToR-YnHy8,7034
|
|
56
57
|
lets_plot/plot/font_features.py,sha256=OInyzUmRbujBEeB2gxuD2O249-5htOQZi2Y_fujxpVY,2309
|
|
57
|
-
lets_plot/plot/geom.py,sha256=
|
|
58
|
+
lets_plot/plot/geom.py,sha256=zQl2qZ9-LvTvbfF5ZEW2wUgWBQmew1ZlqP1T6NBJOvM,324434
|
|
58
59
|
lets_plot/plot/geom_extras.py,sha256=yJ9T5hAQWnhV-KwW-a55qbDOOrLF1D28VZsHpC4aC34,1747
|
|
59
|
-
lets_plot/plot/geom_function_.py,sha256=
|
|
60
|
-
lets_plot/plot/geom_imshow_.py,sha256=
|
|
61
|
-
lets_plot/plot/geom_livemap_.py,sha256=
|
|
60
|
+
lets_plot/plot/geom_function_.py,sha256=0WXxE6QOwbDizq5Hwr2BrRBeuwJxZJsbo5QBm3eI9IY,7539
|
|
61
|
+
lets_plot/plot/geom_imshow_.py,sha256=vj6Z9U-1VWsi8Q7G-X5MtwW9KTdMFbyr25wX3CTjODg,15132
|
|
62
|
+
lets_plot/plot/geom_livemap_.py,sha256=X_zYxbRFQAxmGYGTWF8cemEY-eDIXSHBTvuTeWs2Yu4,12115
|
|
62
63
|
lets_plot/plot/gggrid_.py,sha256=EVx2zhlYmej8qXtdlhUzcCS6zTdbsjj3Nl5IwAD4hTI,4608
|
|
63
|
-
lets_plot/plot/
|
|
64
|
-
lets_plot/plot/
|
|
65
|
-
lets_plot/plot/
|
|
66
|
-
lets_plot/plot/
|
|
64
|
+
lets_plot/plot/ggtb_.py,sha256=lxt-e8iNXvNRBoENybRC_JY_bcGswfw8pSWhKedVkCw,266
|
|
65
|
+
lets_plot/plot/guide.py,sha256=C9RfKdxrftARWqvkUzHGvydA9lZNn7kmuVVer-KEP3w,6920
|
|
66
|
+
lets_plot/plot/label.py,sha256=xcqoGNARcYgSZHdA1h2EGUhJwtzBOax9nUOsz4CLhRQ,4736
|
|
67
|
+
lets_plot/plot/marginal_layer.py,sha256=auDAO5IiRpJVcqzqr31SnXJz7sQGIVbndx__qfr7JyY,6538
|
|
68
|
+
lets_plot/plot/plot.py,sha256=mS2vIt7tV1jUJI2atmerA6t1yCxGF2QqqugEqgUQPWo,8102
|
|
67
69
|
lets_plot/plot/pos.py,sha256=NxnuE--5hwQCWOEqnoQu8TFppZYXJG5m2cgWkPjmXIg,10703
|
|
68
70
|
lets_plot/plot/sampling.py,sha256=_f5kHZzTqrFRJhllMNeAhcPgHlKH7ZnZlLncC9C6yVI,8365
|
|
69
71
|
lets_plot/plot/sandbox_.py,sha256=5wp2bkIBsihw9aIoKr8FUQZmtZbInHPCULbG5uPsMYE,571
|
|
70
72
|
lets_plot/plot/scale.py,sha256=O-b5LJhrLW_3TtbUO3qiaC0vYTHLH-0w7dMrREFF9h4,138936
|
|
73
|
+
lets_plot/plot/scale_colormap_mpl.py,sha256=AoQ_oAcxbH6OMecUc_gvwJsqhJM52of435YIb-MP7lg,10428
|
|
71
74
|
lets_plot/plot/scale_convenience.py,sha256=UOXX07wP5aARYwsOZ-6rK_RR0szhdhnThPvia6LOqrE,4271
|
|
72
75
|
lets_plot/plot/scale_identity_.py,sha256=rMuiaI1wRleP_w8ExvaydlcWeznVJ60M-wzI2SPH7pY,24395
|
|
73
76
|
lets_plot/plot/scale_position.py,sha256=ntpPRO8PA46hGuL9GMcqq18rXqaX1hJF91cHIHxw998,47383
|
|
74
|
-
lets_plot/plot/
|
|
77
|
+
lets_plot/plot/series_meta.py,sha256=Nh-Vcq-zcg_oN4wdoHZxn6aKuScH3_5mVJ4D8LhbO3A,5621
|
|
78
|
+
lets_plot/plot/stat.py,sha256=HRumeeUrZNl8D_JWcukYAil87Uk2_94FcgGnYivkH6Q,21759
|
|
75
79
|
lets_plot/plot/subplots.py,sha256=vKW3BHI5YRM5CGAs_CCQ9bhu5oWqW0Oh1m6b-bClSUA,11620
|
|
76
|
-
lets_plot/plot/theme_.py,sha256=
|
|
80
|
+
lets_plot/plot/theme_.py,sha256=Bta3oCKJIFop4kyiYAY6cWGsXraain8gynrifV9Sm5g,24386
|
|
77
81
|
lets_plot/plot/theme_set.py,sha256=KLQSAihJU8_FmAU0at8WUAtgnIqCvU2Rd5awNhTZimo,9496
|
|
78
|
-
lets_plot/plot/tooltip.py,sha256=
|
|
79
|
-
lets_plot/plot/util.py,sha256=
|
|
80
|
-
lets_plot-4.
|
|
81
|
-
lets_plot-4.
|
|
82
|
-
lets_plot-4.
|
|
83
|
-
lets_plot-4.
|
|
84
|
-
lets_plot-4.
|
|
82
|
+
lets_plot/plot/tooltip.py,sha256=PTjUh-CwXmKrb36pNWT2re0K1mZ9kvWwdt4GhhF7VTY,16448
|
|
83
|
+
lets_plot/plot/util.py,sha256=w5PWWPPG_b3g8z9yxfodsd38Csu-qg6z_Zgmzbavsn0,8812
|
|
84
|
+
lets_plot-4.4.0.dist-info/LICENSE,sha256=D7RdUBHyt0ua4vSZs8H7-HIcliPTSk9zY3sNzx8fejY,1087
|
|
85
|
+
lets_plot-4.4.0.dist-info/METADATA,sha256=V6ybRIDiFPy7wXNdsc1LmCTyxGkMEFHyaK5JPLd44C0,9829
|
|
86
|
+
lets_plot-4.4.0.dist-info/WHEEL,sha256=KNRoynpGu-d6mheJI-zfvcGl1iN-y8BewbiCDXsF3cY,101
|
|
87
|
+
lets_plot-4.4.0.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
88
|
+
lets_plot-4.4.0.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|