lets-plot 4.4.0__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 +3 -0
- lets_plot/bistro/residual.py +1 -0
- lets_plot/bistro/waterfall.py +3 -1
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/annotation.py +1 -1
- lets_plot/plot/geom.py +95 -96
- lets_plot/plot/geom_function_.py +1 -1
- lets_plot/plot/guide.py +1 -1
- lets_plot/plot/scale_colormap_mpl.py +3 -1
- lets_plot/plot/tooltip.py +2 -2
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.1.dist-info}/METADATA +5 -2
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.1.dist-info}/RECORD +20 -20
- {lets_plot-4.4.0.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.0.dist-info → lets_plot-4.4.1.dist-info}/LICENSE +0 -0
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.1.dist-info}/top_level.txt +0 -0
lets_plot/plot/geom_function_.py
CHANGED
|
@@ -136,7 +136,7 @@ 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.
|
|
139
|
+
- color (colour) : color of the geometry. For more info see https://lets-plot.org/python/pages/aesthetics.html#color-and-fill.
|
|
140
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
|
|
lets_plot/plot/guide.py
CHANGED
|
@@ -204,7 +204,7 @@ def layer_key(label, group=None, *, index=None, **kwargs):
|
|
|
204
204
|
to further customize the display of this group (e.g. change its name).
|
|
205
205
|
In particular, items in the 'manual' group will be displayed without a title unless you change it manually.
|
|
206
206
|
|
|
207
|
-
|
|
207
|
+
----
|
|
208
208
|
|
|
209
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
210
|
|
|
@@ -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/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
|
|
@@ -108,7 +108,7 @@ Also read:
|
|
|
108
108
|
|
|
109
109
|
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/manual_legend.ipynb).
|
|
110
110
|
|
|
111
|
-
- #### Customizing Legends
|
|
111
|
+
- #### Customizing Legends Appearance
|
|
112
112
|
The `override_aes` parameter in the `guide_legend()` function.
|
|
113
113
|
|
|
114
114
|
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24e/legend_override_aes.ipynb).
|
|
@@ -121,6 +121,9 @@ Also read:
|
|
|
121
121
|
|
|
122
122
|
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)
|
|
123
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>
|
|
124
127
|
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb">
|
|
125
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">
|
|
126
129
|
</a>
|
|
@@ -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,7 +70,7 @@ 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
|
|
@@ -79,10 +79,10 @@ lets_plot/plot/stat.py,sha256=HRumeeUrZNl8D_JWcukYAil87Uk2_94FcgGnYivkH6Q,21759
|
|
|
79
79
|
lets_plot/plot/subplots.py,sha256=vKW3BHI5YRM5CGAs_CCQ9bhu5oWqW0Oh1m6b-bClSUA,11620
|
|
80
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
|