lets-plot 4.4.0__cp39-cp39-win_amd64.whl → 4.4.0rc1__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/_version.py +1 -1
- lets_plot/bistro/qq.py +0 -2
- lets_plot/bistro/waterfall.py +0 -1
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/geom.py +38 -38
- lets_plot/plot/geom_function_.py +1 -1
- lets_plot/plot/guide.py +1 -11
- lets_plot/plot/theme_.py +0 -1
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.0rc1.dist-info}/METADATA +48 -24
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.0rc1.dist-info}/RECORD +14 -14
- lets_plot_kotlin_bridge.cp39-win_amd64.pyd +0 -0
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.0rc1.dist-info}/LICENSE +0 -0
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.0rc1.dist-info}/WHEEL +0 -0
- {lets_plot-4.4.0.dist-info → lets_plot-4.4.0rc1.dist-info}/top_level.txt +0 -0
lets_plot/plot/geom.py
CHANGED
|
@@ -114,7 +114,7 @@ def geom_point(mapping=None, *, data=None, stat=None, position=None, show_legend
|
|
|
114
114
|
- alpha : transparency level of the point. Accept values between 0 and 1.
|
|
115
115
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
116
116
|
- fill : fill color. Is applied only to the points of shapes having inner area. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
117
|
-
- shape : shape of the point, an integer from 0 to 25.
|
|
117
|
+
- shape : shape of the point, an integer from 0 to 25.
|
|
118
118
|
- angle : rotation angle of the point shape, in degrees.
|
|
119
119
|
- size : size of the point.
|
|
120
120
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
@@ -293,7 +293,7 @@ def geom_path(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
293
293
|
- y : y-axis value.
|
|
294
294
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
295
295
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
296
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
296
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
297
297
|
- size : line width.
|
|
298
298
|
|
|
299
299
|
----
|
|
@@ -460,7 +460,7 @@ def geom_line(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
460
460
|
- y : y-axis value.
|
|
461
461
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
462
462
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
463
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
463
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
464
464
|
- size : line width.
|
|
465
465
|
|
|
466
466
|
Examples
|
|
@@ -613,7 +613,7 @@ def geom_smooth(mapping=None, *, data=None, stat=None, position=None, show_legen
|
|
|
613
613
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
614
614
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
615
615
|
- fill : fill color for the confidence interval around the line. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
616
|
-
- linetype : type of the line of conditional mean line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
616
|
+
- linetype : type of the line of conditional mean line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
617
617
|
- size : line width. Define line width for conditional mean and confidence bounds lines.
|
|
618
618
|
|
|
619
619
|
Examples
|
|
@@ -1402,7 +1402,7 @@ def geom_tile(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
1402
1402
|
- size : line width, default=0 (i.e. tiles outline initially is not visible).
|
|
1403
1403
|
- width : width of a tile. Typically range between 0 and 1. Values that are greater than 1 lead to overlapping of the tiles.
|
|
1404
1404
|
- height : height of a tile. Typically range between 0 and 1. Values that are greater than 1 lead to overlapping of the tiles.
|
|
1405
|
-
- linetype : type of the line of tile's border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1405
|
+
- linetype : type of the line of tile's border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1406
1406
|
|
|
1407
1407
|
Examples
|
|
1408
1408
|
--------
|
|
@@ -1640,7 +1640,7 @@ def geom_errorbar(mapping=None, *, data=None, stat=None, position=None, show_leg
|
|
|
1640
1640
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
1641
1641
|
- size : line width. Define bar line width.
|
|
1642
1642
|
- width or height : size of the whiskers of vertical or horizontal bar, respectively. Typically range between 0 and 1. Values that are greater than 1 lead to overlapping of the bars.
|
|
1643
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1643
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1644
1644
|
|
|
1645
1645
|
Examples
|
|
1646
1646
|
--------
|
|
@@ -1785,7 +1785,7 @@ def geom_crossbar(mapping=None, *, data=None, stat=None, position=None, show_leg
|
|
|
1785
1785
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
1786
1786
|
- size : lines width.
|
|
1787
1787
|
- width : width of a bar. Typically range between 0 and 1. Values that are greater than 1 lead to overlapping of the bars.
|
|
1788
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1788
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1789
1789
|
|
|
1790
1790
|
Examples
|
|
1791
1791
|
--------
|
|
@@ -1920,8 +1920,8 @@ def geom_pointrange(mapping=None, *, data=None, stat=None, position=None, show_l
|
|
|
1920
1920
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
1921
1921
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
1922
1922
|
- size : size of mid-point.
|
|
1923
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1924
|
-
- shape : shape of the mid-point, an integer from 0 to 25.
|
|
1923
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
1924
|
+
- shape : shape of the mid-point, an integer from 0 to 25.
|
|
1925
1925
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
1926
1926
|
- linewidth : line width.
|
|
1927
1927
|
|
|
@@ -2044,7 +2044,7 @@ def geom_linerange(mapping=None, *, data=None, stat=None, position=None, show_le
|
|
|
2044
2044
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
2045
2045
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2046
2046
|
- size : line width.
|
|
2047
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2047
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2048
2048
|
|
|
2049
2049
|
Examples
|
|
2050
2050
|
--------
|
|
@@ -2168,7 +2168,7 @@ def geom_contour(mapping=None, *, data=None, stat=None, position=None, show_lege
|
|
|
2168
2168
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
2169
2169
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2170
2170
|
- size : lines width.
|
|
2171
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2171
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2172
2172
|
|
|
2173
2173
|
Examples
|
|
2174
2174
|
--------
|
|
@@ -2463,7 +2463,7 @@ def geom_polygon(mapping=None, *, data=None, stat=None, position=None, show_lege
|
|
|
2463
2463
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2464
2464
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2465
2465
|
- size : line width.
|
|
2466
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2466
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2467
2467
|
|
|
2468
2468
|
----
|
|
2469
2469
|
|
|
@@ -2649,7 +2649,7 @@ def geom_map(mapping=None, *, data=None, stat=None, position=None, show_legend=N
|
|
|
2649
2649
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2650
2650
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2651
2651
|
- size : line width.
|
|
2652
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2652
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2653
2653
|
|
|
2654
2654
|
----
|
|
2655
2655
|
|
|
@@ -2803,7 +2803,7 @@ def geom_abline(mapping=None, *, data=None, stat=None, position=None, show_legen
|
|
|
2803
2803
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
2804
2804
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2805
2805
|
- size : lines width.
|
|
2806
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2806
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2807
2807
|
|
|
2808
2808
|
Examples
|
|
2809
2809
|
--------
|
|
@@ -2914,7 +2914,7 @@ def geom_band(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
2914
2914
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2915
2915
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
2916
2916
|
- size : lines width.
|
|
2917
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2917
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
2918
2918
|
|
|
2919
2919
|
Examples
|
|
2920
2920
|
--------
|
|
@@ -3026,7 +3026,7 @@ def geom_hline(mapping=None, *, data=None, stat=None, position=None, show_legend
|
|
|
3026
3026
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
3027
3027
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3028
3028
|
- size : line width.
|
|
3029
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3029
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3030
3030
|
|
|
3031
3031
|
Examples
|
|
3032
3032
|
--------
|
|
@@ -3146,7 +3146,7 @@ def geom_vline(mapping=None, *, data=None, stat=None, position=None, show_legend
|
|
|
3146
3146
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
3147
3147
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3148
3148
|
- size : lines width.
|
|
3149
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3149
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3150
3150
|
|
|
3151
3151
|
Examples
|
|
3152
3152
|
--------
|
|
@@ -3307,7 +3307,7 @@ def geom_boxplot(mapping=None, *, data=None, stat=None, position=None, show_lege
|
|
|
3307
3307
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3308
3308
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3309
3309
|
- size : lines width.
|
|
3310
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3310
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3311
3311
|
- width : width of boxplot. Typically ranges between 0 and 1. Values that are greater than 1 lead to overlapping of the boxes.
|
|
3312
3312
|
|
|
3313
3313
|
Examples
|
|
@@ -3531,7 +3531,7 @@ def geom_violin(mapping=None, *, data=None, stat=None, position=None, show_legen
|
|
|
3531
3531
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3532
3532
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3533
3533
|
- size : lines width.
|
|
3534
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3534
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3535
3535
|
- weight : used by 'ydensity' stat to compute weighted density.
|
|
3536
3536
|
- quantile : quantile values to draw quantile lines and fill quantiles of the geometry by color.
|
|
3537
3537
|
|
|
@@ -3930,7 +3930,7 @@ def geom_area_ridges(mapping=None, *, data=None, stat=None, position=None, show_
|
|
|
3930
3930
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3931
3931
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
3932
3932
|
- size : lines width.
|
|
3933
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3933
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
3934
3934
|
- weight : used by 'densityridges' stat to compute weighted density.
|
|
3935
3935
|
- quantile : quantile values to draw quantile lines and fill quantiles of the geometry by color.
|
|
3936
3936
|
|
|
@@ -4072,7 +4072,7 @@ def geom_ribbon(mapping=None, *, data=None, stat=None, position=None, show_legen
|
|
|
4072
4072
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4073
4073
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4074
4074
|
- size : lines width.
|
|
4075
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4075
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4076
4076
|
|
|
4077
4077
|
Examples
|
|
4078
4078
|
--------
|
|
@@ -4196,7 +4196,7 @@ def geom_area(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
4196
4196
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4197
4197
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4198
4198
|
- size : lines width.
|
|
4199
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4199
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4200
4200
|
|
|
4201
4201
|
Examples
|
|
4202
4202
|
--------
|
|
@@ -4356,7 +4356,7 @@ def geom_density(mapping=None, *, data=None, stat=None, position=None, show_lege
|
|
|
4356
4356
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4357
4357
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4358
4358
|
- size : lines width.
|
|
4359
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4359
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4360
4360
|
- weight : used by 'density' stat to compute weighted density.
|
|
4361
4361
|
- quantile : quantile values to draw quantile lines and fill quantiles of the geometry by color.
|
|
4362
4362
|
|
|
@@ -4555,7 +4555,7 @@ def geom_density2d(mapping=None, *, data=None, stat=None, position=None, show_le
|
|
|
4555
4555
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
4556
4556
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4557
4557
|
- size : lines width.
|
|
4558
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4558
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
4559
4559
|
- weight : used by 'density2d' stat to compute weighted density.
|
|
4560
4560
|
|
|
4561
4561
|
----
|
|
@@ -4995,7 +4995,7 @@ def geom_jitter(mapping=None, *, data=None, stat=None, position=None, show_legen
|
|
|
4995
4995
|
- alpha : transparency level of a point. Accept values between 0 and 1.
|
|
4996
4996
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4997
4997
|
- fill : fill color. Is applied only to the points of shapes having inner area. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
4998
|
-
- shape : shape of the point, an integer from 0 to 25.
|
|
4998
|
+
- shape : shape of the point, an integer from 0 to 25.
|
|
4999
4999
|
- size : size of the point.
|
|
5000
5000
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
5001
5001
|
|
|
@@ -5137,7 +5137,7 @@ def geom_qq(mapping=None, *, data=None, stat=None, position=None, show_legend=No
|
|
|
5137
5137
|
- alpha : transparency level of a point. Accept values between 0 and 1.
|
|
5138
5138
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5139
5139
|
- fill : fill color. Is applied only to the points of shapes having inner area. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5140
|
-
- shape : shape of the point, an integer from 0 to 25.
|
|
5140
|
+
- shape : shape of the point, an integer from 0 to 25.
|
|
5141
5141
|
- size : size of the point.
|
|
5142
5142
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
5143
5143
|
|
|
@@ -5258,7 +5258,7 @@ def geom_qq2(mapping=None, *, data=None, stat=None, position=None, show_legend=N
|
|
|
5258
5258
|
- alpha : transparency level of a point. Accept values between 0 and 1.
|
|
5259
5259
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5260
5260
|
- fill : fill color. Is applied only to the points of shapes having inner area. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5261
|
-
- shape : shape of the point, an integer from 0 to 25.
|
|
5261
|
+
- shape : shape of the point, an integer from 0 to 25.
|
|
5262
5262
|
- size : size of the point.
|
|
5263
5263
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
5264
5264
|
|
|
@@ -5373,7 +5373,7 @@ def geom_qq_line(mapping=None, *, data=None, stat=None, position=None, show_lege
|
|
|
5373
5373
|
- sample : y-axis value.
|
|
5374
5374
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
5375
5375
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5376
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5376
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5377
5377
|
- size : line width.
|
|
5378
5378
|
|
|
5379
5379
|
Examples
|
|
@@ -5489,7 +5489,7 @@ def geom_qq2_line(mapping=None, *, data=None, stat=None, position=None, show_leg
|
|
|
5489
5489
|
- y : y-axis value.
|
|
5490
5490
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
5491
5491
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5492
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5492
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5493
5493
|
- size : line width.
|
|
5494
5494
|
|
|
5495
5495
|
Examples
|
|
@@ -5593,7 +5593,7 @@ def geom_freqpoly(mapping=None, *, data=None, stat=None, position=None, show_leg
|
|
|
5593
5593
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
5594
5594
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5595
5595
|
- size : lines width.
|
|
5596
|
-
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5596
|
+
- linetype : type of the line of border. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5597
5597
|
|
|
5598
5598
|
Examples
|
|
5599
5599
|
--------
|
|
@@ -5708,7 +5708,7 @@ def geom_step(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
5708
5708
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
5709
5709
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5710
5710
|
- size : line width.
|
|
5711
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5711
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5712
5712
|
|
|
5713
5713
|
Examples
|
|
5714
5714
|
--------
|
|
@@ -5833,7 +5833,7 @@ def geom_rect(mapping=None, *, data=None, stat=None, position=None, show_legend=
|
|
|
5833
5833
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5834
5834
|
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
5835
5835
|
- size : lines width.
|
|
5836
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5836
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
5837
5837
|
|
|
5838
5838
|
----
|
|
5839
5839
|
|
|
@@ -6002,7 +6002,7 @@ def geom_segment(mapping=None, *, data=None, stat=None, position=None, show_lege
|
|
|
6002
6002
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
6003
6003
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
6004
6004
|
- size : line width.
|
|
6005
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
6005
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
6006
6006
|
- size_start : offset from the segment start coordinate (usually equal to the size of the point object from which the segment starts to avoid overlapping with it).
|
|
6007
6007
|
- size_end : offset from the segment end coordinate (usually equal to the size of the point object from which the segment ends to avoid overlapping with it).
|
|
6008
6008
|
- stroke_start : offset from the segment start coordinate (usually equal to the stroke of the point object from which the segment starts to avoid overlapping with it).
|
|
@@ -6164,7 +6164,7 @@ def geom_curve(mapping=None, *, data=None, stat=None, position=None, show_legend
|
|
|
6164
6164
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
6165
6165
|
- color (colour) : color of the geometry lines. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
6166
6166
|
- size : line width.
|
|
6167
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
6167
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
6168
6168
|
- size_start : offset from the start coordinate (usually equal to the size of the point object from which the curve starts to avoid overlapping with it).
|
|
6169
6169
|
- size_end : offset from the end coordinate (usually equal to the size of the point object from which the curve ends to avoid overlapping with it).
|
|
6170
6170
|
- stroke_start : offset from the start coordinate (usually equal to the stroke of the point object from which the curve starts to avoid overlapping with it).
|
|
@@ -6300,7 +6300,7 @@ def geom_spoke(mapping=None, *, data=None, position=None, show_legend=None, manu
|
|
|
6300
6300
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
6301
6301
|
- color (colour) : color of the line. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
6302
6302
|
- size : line width.
|
|
6303
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
6303
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
6304
6304
|
|
|
6305
6305
|
Examples
|
|
6306
6306
|
--------
|
|
@@ -7161,11 +7161,11 @@ def geom_lollipop(mapping=None, *, data=None, stat=None, position=None, show_leg
|
|
|
7161
7161
|
- alpha : transparency level of the point. Accept values between 0 and 1.
|
|
7162
7162
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
7163
7163
|
- fill : fill color. Is applied only to the points of shapes having inner area. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
7164
|
-
- shape : shape of the point, an integer from 0 to 25.
|
|
7164
|
+
- shape : shape of the point, an integer from 0 to 25.
|
|
7165
7165
|
- size : size of the point.
|
|
7166
7166
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
7167
7167
|
- linewidth : stick width.
|
|
7168
|
-
- linetype : type of the stick line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
7168
|
+
- linetype : type of the stick line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
7169
7169
|
|
|
7170
7170
|
----
|
|
7171
7171
|
|
|
@@ -7300,7 +7300,7 @@ def geom_count(mapping=None, *, data=None, stat=None, position=None, show_legend
|
|
|
7300
7300
|
- alpha : transparency level of the point. Accept values between 0 and 1.
|
|
7301
7301
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
7302
7302
|
- fill : fill color. Is applied only to the points of shapes having inner area. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
7303
|
-
- shape : shape of the point, an integer from 0 to 25.
|
|
7303
|
+
- shape : shape of the point, an integer from 0 to 25.
|
|
7304
7304
|
- size : size of the point.
|
|
7305
7305
|
- stroke : width of the shape border. Applied only to the shapes having border.
|
|
7306
7306
|
|
lets_plot/plot/geom_function_.py
CHANGED
|
@@ -137,7 +137,7 @@ def geom_function(mapping=None, *, data=None, stat=None, geom=None, position=Non
|
|
|
137
137
|
- x : x-axis value.
|
|
138
138
|
- alpha : transparency level of a layer. Accept values between 0 and 1.
|
|
139
139
|
- color (colour) : color of the geometry. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
|
|
140
|
-
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
140
|
+
- linetype : type of the line. Codes and names: 0 = 'blank', 1 = 'solid', 2 = 'dashed', 3 = 'dotted', 4 = 'dotdash', 5 = 'longdash', 6 = 'twodash'.
|
|
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
|
|
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,16 +198,6 @@ 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
|
-
|
|
211
201
|
Examples
|
|
212
202
|
--------
|
|
213
203
|
.. jupyter-execute::
|
lets_plot/plot/theme_.py
CHANGED
|
@@ -399,7 +399,6 @@ 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.
|
|
403
402
|
blank : bool, default=False
|
|
404
403
|
If True - draws nothing, and assigns no space.
|
|
405
404
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lets-plot
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.0rc1
|
|
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/releases/latest)
|
|
39
|
+
[](https://github.com/JetBrains/lets-plot-kotlin/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,37 +88,61 @@ 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.3.0
|
|
92
92
|
|
|
93
|
-
- ####
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
93
|
+
- #### `coord_polar()`
|
|
94
|
+
|
|
95
|
+
The polar coordinate system is most commonly used for pie charts, but</br>
|
|
96
|
+
it can also be used for constructing **Spider or Radar charts** using the `flat` option.
|
|
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.
|
|
97
112
|
|
|
98
|
-
- ####
|
|
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">
|
|
113
|
+
- #### `geom_curve()`
|
|
100
114
|
|
|
101
|
-
|
|
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).
|
|
102
119
|
|
|
103
|
-
- ####
|
|
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">
|
|
120
|
+
- #### [**UNIQUE**] Visualizing Graph-like Data with `geom_segment()` and `geom_curve()`
|
|
108
121
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
The `
|
|
113
|
-
|
|
114
|
-
|
|
122
|
+
- Aesthetics `size_start, size_end, stroke_start` and `stroke_end` enable better alignment of</br>
|
|
123
|
+
segments/curves with nodes of the graph by considering the size of the nodes.
|
|
124
|
+
|
|
125
|
+
- The `spacer` parameter allows for additional manual fine-tuning.
|
|
126
|
+
|
|
127
|
+
<br>
|
|
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">
|
|
130
|
+
|
|
131
|
+
See:
|
|
132
|
+
- [A simple graph example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/graph_edges.ipynb)
|
|
133
|
+
- [An interactive map example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve_on_map.ipynb)
|
|
134
|
+
|
|
115
135
|
|
|
136
|
+
- #### The `alpha_stroke` Parameter in `geom_label()`
|
|
116
137
|
|
|
117
|
-
|
|
138
|
+
Use the `alpha_stroke` parameter to apply `alpha` to entire `label`. By default, `alpha` is only applied to the label background.
|
|
118
139
|
|
|
119
|
-
See [
|
|
140
|
+
See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_label_alpha_stroke.ipynb).
|
|
120
141
|
|
|
142
|
+
- #### Showing Plots in External Browser
|
|
121
143
|
|
|
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
|
+
|
|
122
146
|
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)
|
|
123
147
|
|
|
124
148
|
<a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb">
|
|
@@ -151,7 +175,7 @@ Also read:
|
|
|
151
175
|
|
|
152
176
|
## Change Log
|
|
153
177
|
|
|
154
|
-
[CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md)
|
|
178
|
+
See [CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md) for other changes and fixes.
|
|
155
179
|
|
|
156
180
|
|
|
157
181
|
## Code of Conduct
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cp39-win_amd64.pyd,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cp39-win_amd64.pyd,sha256=eqjtdhe7nR5BL7FpBlU5h5ia_CMEJNbWFPl1Adb_mt0,6324736
|
|
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
5
|
lets_plot/_type_utils.py,sha256=ZO7os2Va772U2pJSkTA3OwDylN1QtXZo5y_EZpiWMdI,2789
|
|
6
|
-
lets_plot/_version.py,sha256=
|
|
6
|
+
lets_plot/_version.py,sha256=hpNRWDoTIbOQ_gh0KysEjir69e7rMM_M3YkDqT1BFjM,242
|
|
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
|
|
@@ -12,9 +12,9 @@ lets_plot/bistro/_plot2d_common.py,sha256=E6a2QghFF8CWwUzT-iCtgqYBepCCPuwUyxcDM8
|
|
|
12
12
|
lets_plot/bistro/corr.py,sha256=GqBCneSccF8GBkJgkedpnUdIhXvmJ5Blhtej0qhKRrs,13015
|
|
13
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=
|
|
15
|
+
lets_plot/bistro/qq.py,sha256=LP5TSI7XZlUlPoJ92mAsFJl7Mnk5VQewqdcWXl1iAR4,6588
|
|
16
16
|
lets_plot/bistro/residual.py,sha256=QTKvMqSl7NoRQRTe85C36XyKBozyh9g6dNaMMMXG320,12357
|
|
17
|
-
lets_plot/bistro/waterfall.py,sha256=
|
|
17
|
+
lets_plot/bistro/waterfall.py,sha256=JD4wtHV0aFqOMp5oPZz87GJ2eWFwwGnZcnPqje7ApAU,9957
|
|
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,7 +47,7 @@ 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=VnxMHXgaCkf5bPIh1L0H-eU309SES04CZYZa4LTW0Ao,2155683
|
|
51
51
|
lets_plot/plot/__init__.py,sha256=bXUtxpS8UXqYn1uYIwdTY2a2koxJMjcCOdG4iUxutMM,1711
|
|
52
52
|
lets_plot/plot/_global_theme.py,sha256=eatwhJiiqnY6mrNW0Y1NMco2e7xxldhItgj1IOkhRuI,311
|
|
53
53
|
lets_plot/plot/annotation.py,sha256=D6XKD85xQ6YqhedS8geHCWun_5xJZWOxyfFjeCo_6tU,7873
|
|
@@ -55,14 +55,14 @@ 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=m6BPCXIGNkxkQgzAeXVntCTMTzdz4UTdKoLJqfoGD9g,321342
|
|
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=EvCp_kGeY1zbZMnlp-_WnjJioLQA9YX-aOMFlv8A0zg,7458
|
|
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=iqdBgvtbTjzsTNJWmqfg7En9k-6EnMyBxbK5O6Y_8-w,6436
|
|
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
|
|
@@ -77,12 +77,12 @@ lets_plot/plot/scale_position.py,sha256=ntpPRO8PA46hGuL9GMcqq18rXqaX1hJF91cHIHxw
|
|
|
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=wrwRPMyQUfnAqnkLpV1LYX0vawXI47aECuH6WBzLJZA,24296
|
|
81
81
|
lets_plot/plot/theme_set.py,sha256=KLQSAihJU8_FmAU0at8WUAtgnIqCvU2Rd5awNhTZimo,9496
|
|
82
82
|
lets_plot/plot/tooltip.py,sha256=PTjUh-CwXmKrb36pNWT2re0K1mZ9kvWwdt4GhhF7VTY,16448
|
|
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.0rc1.dist-info/LICENSE,sha256=D7RdUBHyt0ua4vSZs8H7-HIcliPTSk9zY3sNzx8fejY,1087
|
|
85
|
+
lets_plot-4.4.0rc1.dist-info/METADATA,sha256=6z1XJzxwz0ll6kfqSHEQO8S5V0OxWtXIjYs1GOfrk4g,11575
|
|
86
|
+
lets_plot-4.4.0rc1.dist-info/WHEEL,sha256=DmZ7B4aiAganfWOCUyjXG_z2uvUu-tkD3rVXMivgyOM,99
|
|
87
|
+
lets_plot-4.4.0rc1.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
88
|
+
lets_plot-4.4.0rc1.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|