lets-plot 4.4.0rc1__cp39-cp39-win_amd64.whl → 4.4.1__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/_type_utils.py +9 -4
- lets_plot/_version.py +1 -1
- lets_plot/bistro/corr.py +3 -1
- lets_plot/bistro/joint.py +1 -0
- lets_plot/bistro/qq.py +5 -0
- lets_plot/bistro/residual.py +1 -0
- lets_plot/bistro/waterfall.py +4 -1
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/annotation.py +1 -1
- lets_plot/plot/geom.py +133 -134
- lets_plot/plot/geom_function_.py +2 -2
- lets_plot/plot/guide.py +11 -1
- lets_plot/plot/scale_colormap_mpl.py +3 -1
- lets_plot/plot/theme_.py +1 -0
- lets_plot/plot/tooltip.py +2 -2
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.4.1.dist-info}/METADATA +27 -48
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.4.1.dist-info}/RECORD +21 -21
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.4.1.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cp39-win_amd64.pyd +0 -0
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.4.1.dist-info}/LICENSE +0 -0
- {lets_plot-4.4.0rc1.dist-info → lets_plot-4.4.1.dist-info}/top_level.txt +0 -0
lets_plot/plot/geom_function_.py
CHANGED
|
@@ -136,8 +136,8 @@ def geom_function(mapping=None, *, data=None, stat=None, geom=None, position=Non
|
|
|
136
136
|
|
|
137
137
|
- x : x-axis value.
|
|
138
138
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
139
|
-
- color (colour) : color of the geometry.
|
|
140
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
139
|
+
- color (colour) : color of the geometry. For more info see https://lets-plot.org/python/pages/aesthetics.html#color-and-fill.
|
|
140
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'. For more info see https://lets-plot.org/python/pages/aesthetics.html#line-types.
|
|
141
141
|
- size : line width.
|
|
142
142
|
|
|
143
143
|
Examples
|
lets_plot/plot/guide.py
CHANGED
|
@@ -186,7 +186,7 @@ def layer_key(label, group=None, *, index=None, **kwargs):
|
|
|
186
186
|
----------
|
|
187
187
|
label : str
|
|
188
188
|
Text for the element in the custom legend.
|
|
189
|
-
group : str
|
|
189
|
+
group : str, default='manual'
|
|
190
190
|
Group name by which elements are combined into a legend group.
|
|
191
191
|
index : int
|
|
192
192
|
Position of the element in the custom legend.
|
|
@@ -198,6 +198,16 @@ def layer_key(label, group=None, *, index=None, **kwargs):
|
|
|
198
198
|
`FeatureSpec`
|
|
199
199
|
Custom legend specification.
|
|
200
200
|
|
|
201
|
+
Notes
|
|
202
|
+
-----
|
|
203
|
+
The group name specified with the `group` parameter can be used in the `labs()` and `guides()` functions
|
|
204
|
+
to further customize the display of this group (e.g. change its name).
|
|
205
|
+
In particular, items in the 'manual' group will be displayed without a title unless you change it manually.
|
|
206
|
+
|
|
207
|
+
----
|
|
208
|
+
|
|
209
|
+
If you set the same group and label for a legend element in different layers, they will merge into one complex legend element.
|
|
210
|
+
|
|
201
211
|
Examples
|
|
202
212
|
--------
|
|
203
213
|
.. jupyter-execute::
|
|
@@ -45,7 +45,9 @@ def _cmapmpl_to_hex(cmap) -> List[str]:
|
|
|
45
45
|
colors = cmap.colors
|
|
46
46
|
else:
|
|
47
47
|
# colors from a continuous colormap (like "plasma")
|
|
48
|
-
|
|
48
|
+
n = 256
|
|
49
|
+
values = [i / (n - 1) for i in range(n)]
|
|
50
|
+
colors = [cmap(value) for value in values]
|
|
49
51
|
|
|
50
52
|
return [matplotlib.colors.to_hex(c) for c in colors]
|
|
51
53
|
|
lets_plot/plot/theme_.py
CHANGED
|
@@ -399,6 +399,7 @@ def element_rect(
|
|
|
399
399
|
linetype : int or str
|
|
400
400
|
Type of the line.
|
|
401
401
|
Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
402
|
+
For more info see https://lets-plot.org/python/pages/aesthetics.html#line-types.
|
|
402
403
|
blank : bool, default=False
|
|
403
404
|
If True - draws nothing, and assigns no space.
|
|
404
405
|
|
lets_plot/plot/tooltip.py
CHANGED
|
@@ -250,7 +250,7 @@ class layer_tooltips(FeatureSpec):
|
|
|
250
250
|
A '^' symbol can be escaped with a backslash, a brace character
|
|
251
251
|
in the literal text - by doubling:
|
|
252
252
|
|
|
253
|
-
- 'x
|
|
253
|
+
- 'x\\\\^2' -> "x^2"
|
|
254
254
|
- '{{x}}' -> "{x}"
|
|
255
255
|
|
|
256
256
|
The specified 'line' for side tooltip will move it to the general multi-line tooltip.
|
|
@@ -282,7 +282,7 @@ class layer_tooltips(FeatureSpec):
|
|
|
282
282
|
tooltips=layer_tooltips().format('x', '.3f')\\
|
|
283
283
|
.line('x = @x')\\
|
|
284
284
|
.format('9 - x^2', '.3f')\\
|
|
285
|
-
.line('9 - x
|
|
285
|
+
.line('9 - x\\^2 = @{9 - x^2}'))
|
|
286
286
|
|
|
287
287
|
|
|
|
288
288
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lets-plot
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.1
|
|
4
4
|
Summary: An open source library for statistical plotting
|
|
5
5
|
Home-page: https://lets-plot.org
|
|
6
6
|
Author: JetBrains
|
|
@@ -36,7 +36,7 @@ Requires-Dist: palettable
|
|
|
36
36
|
|
|
37
37
|
[](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
|
|
38
38
|
[](https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/LICENSE)
|
|
39
|
-
[](https://github.com/JetBrains/lets-plot
|
|
39
|
+
[](https://github.com/JetBrains/lets-plot/releases/latest)
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
**Lets-Plot** is a multiplatform plotting library built on the principles of the Grammar of Graphics.
|
|
@@ -88,63 +88,42 @@ Also read:
|
|
|
88
88
|
- [Scientific mode in PyCharm](https://www.jetbrains.com/help/pycharm/matplotlib-support.html)
|
|
89
89
|
- [Scientific mode in IntelliJ IDEA](https://www.jetbrains.com/help/idea/matplotlib-support.html)
|
|
90
90
|
|
|
91
|
-
## What is new in 4.
|
|
91
|
+
## What is new in 4.4.0
|
|
92
92
|
|
|
93
|
-
- ####
|
|
94
|
-
|
|
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).
|
|
103
|
-
|
|
104
|
-
- #### In the `theme()`:
|
|
105
|
-
|
|
106
|
-
- `panel_inset` parameter - primarily used for plots with polar coordinates.
|
|
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.
|
|
112
|
-
|
|
113
|
-
- #### `geom_curve()`
|
|
114
|
-
|
|
115
|
-
<br>
|
|
116
|
-
<img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/curve_annotation.png" alt="f-24a/images/curve_annotation.png" width="338" height="296">
|
|
117
|
-
|
|
118
|
-
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve.ipynb).
|
|
119
|
-
|
|
120
|
-
- #### [**UNIQUE**] Visualizing Graph-like Data with `geom_segment()` and `geom_curve()`
|
|
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).
|
|
121
97
|
|
|
122
|
-
|
|
123
|
-
|
|
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">
|
|
124
100
|
|
|
125
|
-
|
|
101
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/geom_band.ipynb).
|
|
126
102
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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">
|
|
130
108
|
|
|
131
|
-
See
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
109
|
+
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/manual_legend.ipynb).
|
|
110
|
+
|
|
111
|
+
- #### Customizing Legends Appearance
|
|
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).
|
|
135
115
|
|
|
136
|
-
- #### The `alpha_stroke` Parameter in `geom_label()`
|
|
137
116
|
|
|
138
|
-
|
|
117
|
+
- #### And More
|
|
139
118
|
|
|
140
|
-
See
|
|
119
|
+
See [CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md) for a full list of changes.
|
|
141
120
|
|
|
142
|
-
- #### Showing Plots in External Browser
|
|
143
121
|
|
|
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
122
|
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)
|
|
147
123
|
|
|
124
|
+
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/us_unemployment.ipynb">
|
|
125
|
+
<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">
|
|
126
|
+
</a>
|
|
148
127
|
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb">
|
|
149
128
|
<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
129
|
</a>
|
|
@@ -175,7 +154,7 @@ Also read:
|
|
|
175
154
|
|
|
176
155
|
## Change Log
|
|
177
156
|
|
|
178
|
-
|
|
157
|
+
[CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md)
|
|
179
158
|
|
|
180
159
|
|
|
181
160
|
## Code of Conduct
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cp39-win_amd64.pyd,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cp39-win_amd64.pyd,sha256=pWe2MNu8t1HaEjjFk-0WMYMFKU0Bi44nBUdsi-JjCUE,6327808
|
|
2
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=
|
|
5
|
+
lets_plot/_type_utils.py,sha256=6hyHbuAmxadW-h0AhTlHgKjQe-3g8cEhnskZ9zBnx5w,3029
|
|
6
|
+
lets_plot/_version.py,sha256=xM3JcI1M6mwPfzloJEzUgkhdLSA9BCaxsWb-q_keIP8,239
|
|
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=8LC_GsrZd1X12rII28W1XbO7A8YfeG1AjBR8L_PPFVk,10810
|
|
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=8y417Osjydq1rhRatySsixRXedqWi5eD8sAIO1Rr6ZM,13126
|
|
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=zckvjmGRQcyK5FVAHPRXPPIQwJwnIRJ4JZA_X6UI8pU,6549
|
|
15
|
+
lets_plot/bistro/qq.py,sha256=OmvdCp7fKqCD3Da1BpeUBzFFuw8MmATboKMvgjSvMFs,7052
|
|
16
|
+
lets_plot/bistro/residual.py,sha256=rb3Wy22jEYaTBpVkut1OYlhAy2J3nPqfxGTyhI7c9hs,12451
|
|
17
|
+
lets_plot/bistro/waterfall.py,sha256=ObX2XPkl6gB27PLbRqjRIUHZ-AGNCcArJIb0UE-sunA,10204
|
|
18
18
|
lets_plot/export/__init__.py,sha256=JloMKV4OAMgxBuYg8ObByZ3LJvqcUKed1G286WLA85E,194
|
|
19
19
|
lets_plot/export/ggsave_.py,sha256=BjpQ7eX_lDLPJpyeDr_G5zzPtUWVebvSoSLb-72xBPs,4001
|
|
20
20
|
lets_plot/frontend_context/__init__.py,sha256=LALJE-5rVdEcgCP-sWTwNAVoVZB-Pr2lG8CpVn04FrY,212
|
|
@@ -47,22 +47,22 @@ 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=
|
|
50
|
+
lets_plot/package_data/lets-plot.min.js,sha256=nTG0w-kBz1cEEdn_hLocTXA9KdG7SnCAPscebWqXOvk,2156339
|
|
51
51
|
lets_plot/plot/__init__.py,sha256=bXUtxpS8UXqYn1uYIwdTY2a2koxJMjcCOdG4iUxutMM,1711
|
|
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=GwB_ROCZtlquHMmYZRsM1K_SXiD5WWt_kBjhAMXcxiY,7876
|
|
54
54
|
lets_plot/plot/coord.py,sha256=B4EEt6mqPERbYVwzl3VPkEym9hq_tO0LNtgdtluWQBQ,8218
|
|
55
55
|
lets_plot/plot/core.py,sha256=2LVaCx2wvJ6tSys0UW_fpgdb6V8uBF3Sg6sTPa_lC6E,32185
|
|
56
56
|
lets_plot/plot/facet.py,sha256=sybZ5dpXOpLlG9KrX2LRSeeoVgX8xL22-hToR-YnHy8,7034
|
|
57
57
|
lets_plot/plot/font_features.py,sha256=OInyzUmRbujBEeB2gxuD2O249-5htOQZi2Y_fujxpVY,2309
|
|
58
|
-
lets_plot/plot/geom.py,sha256=
|
|
58
|
+
lets_plot/plot/geom.py,sha256=WVj2fSI6wvkBLzwn9udMki0g5SnHI-L1hsn0H9QleI4,319775
|
|
59
59
|
lets_plot/plot/geom_extras.py,sha256=yJ9T5hAQWnhV-KwW-a55qbDOOrLF1D28VZsHpC4aC34,1747
|
|
60
|
-
lets_plot/plot/geom_function_.py,sha256=
|
|
60
|
+
lets_plot/plot/geom_function_.py,sha256=UwS66O6hcIgIk28JGHqwzFdMlN2J51bHQX2wLZgfK7Y,7471
|
|
61
61
|
lets_plot/plot/geom_imshow_.py,sha256=vj6Z9U-1VWsi8Q7G-X5MtwW9KTdMFbyr25wX3CTjODg,15132
|
|
62
62
|
lets_plot/plot/geom_livemap_.py,sha256=X_zYxbRFQAxmGYGTWF8cemEY-eDIXSHBTvuTeWs2Yu4,12115
|
|
63
63
|
lets_plot/plot/gggrid_.py,sha256=EVx2zhlYmej8qXtdlhUzcCS6zTdbsjj3Nl5IwAD4hTI,4608
|
|
64
64
|
lets_plot/plot/ggtb_.py,sha256=lxt-e8iNXvNRBoENybRC_JY_bcGswfw8pSWhKedVkCw,266
|
|
65
|
-
lets_plot/plot/guide.py,sha256=
|
|
65
|
+
lets_plot/plot/guide.py,sha256=huDbWFR4k5hmN00oF-sz-8RIv6pYyBCStCz--98qLvs,6923
|
|
66
66
|
lets_plot/plot/label.py,sha256=xcqoGNARcYgSZHdA1h2EGUhJwtzBOax9nUOsz4CLhRQ,4736
|
|
67
67
|
lets_plot/plot/marginal_layer.py,sha256=auDAO5IiRpJVcqzqr31SnXJz7sQGIVbndx__qfr7JyY,6538
|
|
68
68
|
lets_plot/plot/plot.py,sha256=mS2vIt7tV1jUJI2atmerA6t1yCxGF2QqqugEqgUQPWo,8102
|
|
@@ -70,19 +70,19 @@ lets_plot/plot/pos.py,sha256=NxnuE--5hwQCWOEqnoQu8TFppZYXJG5m2cgWkPjmXIg,10703
|
|
|
70
70
|
lets_plot/plot/sampling.py,sha256=_f5kHZzTqrFRJhllMNeAhcPgHlKH7ZnZlLncC9C6yVI,8365
|
|
71
71
|
lets_plot/plot/sandbox_.py,sha256=5wp2bkIBsihw9aIoKr8FUQZmtZbInHPCULbG5uPsMYE,571
|
|
72
72
|
lets_plot/plot/scale.py,sha256=O-b5LJhrLW_3TtbUO3qiaC0vYTHLH-0w7dMrREFF9h4,138936
|
|
73
|
-
lets_plot/plot/scale_colormap_mpl.py,sha256=
|
|
73
|
+
lets_plot/plot/scale_colormap_mpl.py,sha256=E6E6nRXGGcci-_NnVqnC1fzDhm88pBXHLYZIlnMzxFg,10513
|
|
74
74
|
lets_plot/plot/scale_convenience.py,sha256=UOXX07wP5aARYwsOZ-6rK_RR0szhdhnThPvia6LOqrE,4271
|
|
75
75
|
lets_plot/plot/scale_identity_.py,sha256=rMuiaI1wRleP_w8ExvaydlcWeznVJ60M-wzI2SPH7pY,24395
|
|
76
76
|
lets_plot/plot/scale_position.py,sha256=ntpPRO8PA46hGuL9GMcqq18rXqaX1hJF91cHIHxw998,47383
|
|
77
77
|
lets_plot/plot/series_meta.py,sha256=Nh-Vcq-zcg_oN4wdoHZxn6aKuScH3_5mVJ4D8LhbO3A,5621
|
|
78
78
|
lets_plot/plot/stat.py,sha256=HRumeeUrZNl8D_JWcukYAil87Uk2_94FcgGnYivkH6Q,21759
|
|
79
79
|
lets_plot/plot/subplots.py,sha256=vKW3BHI5YRM5CGAs_CCQ9bhu5oWqW0Oh1m6b-bClSUA,11620
|
|
80
|
-
lets_plot/plot/theme_.py,sha256=
|
|
80
|
+
lets_plot/plot/theme_.py,sha256=Bta3oCKJIFop4kyiYAY6cWGsXraain8gynrifV9Sm5g,24386
|
|
81
81
|
lets_plot/plot/theme_set.py,sha256=KLQSAihJU8_FmAU0at8WUAtgnIqCvU2Rd5awNhTZimo,9496
|
|
82
|
-
lets_plot/plot/tooltip.py,sha256=
|
|
82
|
+
lets_plot/plot/tooltip.py,sha256=7vNEte2d15xmsJu1t-LkU5rCWrvWxGQAAco6ukmR2cM,16452
|
|
83
83
|
lets_plot/plot/util.py,sha256=w5PWWPPG_b3g8z9yxfodsd38Csu-qg6z_Zgmzbavsn0,8812
|
|
84
|
-
lets_plot-4.4.
|
|
85
|
-
lets_plot-4.4.
|
|
86
|
-
lets_plot-4.4.
|
|
87
|
-
lets_plot-4.4.
|
|
88
|
-
lets_plot-4.4.
|
|
84
|
+
lets_plot-4.4.1.dist-info/LICENSE,sha256=D7RdUBHyt0ua4vSZs8H7-HIcliPTSk9zY3sNzx8fejY,1087
|
|
85
|
+
lets_plot-4.4.1.dist-info/METADATA,sha256=eRnPpEin7tX4phAYOjgTVjQ1Oz57dxdo69rUttI3tQk,10139
|
|
86
|
+
lets_plot-4.4.1.dist-info/WHEEL,sha256=Os6_QENWp0Y99Uhn6SmX8k6DheJPHPoZtAIvme4kS_I,99
|
|
87
|
+
lets_plot-4.4.1.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
88
|
+
lets_plot-4.4.1.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|