lets-plot 4.5.0rc1__cp313-cp313-macosx_11_0_arm64.whl → 4.5.1__cp313-cp313-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lets-plot might be problematic. Click here for more details.
- lets_plot/__init__.py +1 -1
- lets_plot/_version.py +1 -1
- lets_plot/bistro/corr.py +6 -1
- lets_plot/bistro/joint.py +7 -2
- lets_plot/bistro/qq.py +10 -5
- lets_plot/bistro/residual.py +6 -1
- lets_plot/bistro/waterfall.py +4 -4
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/annotation.py +1 -1
- lets_plot/plot/expand_limits_.py +5 -5
- lets_plot/plot/facet.py +2 -2
- lets_plot/plot/geom.py +314 -123
- lets_plot/plot/geom_function_.py +8 -2
- lets_plot/plot/geom_livemap_.py +32 -0
- lets_plot/plot/ggtb_.py +6 -3
- lets_plot/plot/scale.py +40 -40
- lets_plot/plot/scale_colormap_mpl.py +3 -3
- lets_plot/plot/scale_identity_.py +11 -19
- lets_plot/plot/scale_position.py +14 -14
- lets_plot/plot/stat.py +24 -0
- lets_plot/plot/theme_.py +8 -5
- lets_plot/plot/tooltip.py +1 -1
- lets_plot/tilesets.py +4 -69
- {lets_plot-4.5.0rc1.dist-info → lets_plot-4.5.1.dist-info}/METADATA +33 -18
- {lets_plot-4.5.0rc1.dist-info → lets_plot-4.5.1.dist-info}/RECORD +29 -29
- lets_plot_kotlin_bridge.cpython-313-darwin.so +0 -0
- {lets_plot-4.5.0rc1.dist-info → lets_plot-4.5.1.dist-info}/LICENSE +0 -0
- {lets_plot-4.5.0rc1.dist-info → lets_plot-4.5.1.dist-info}/WHEEL +0 -0
- {lets_plot-4.5.0rc1.dist-info → lets_plot-4.5.1.dist-info}/top_level.txt +0 -0
lets_plot/plot/annotation.py
CHANGED
lets_plot/plot/expand_limits_.py
CHANGED
|
@@ -11,7 +11,7 @@ def expand_limits(*, x=None, y=None, size=None, color=None, fill=None, alpha=Non
|
|
|
11
11
|
|
|
12
12
|
This function extends the plot boundaries to encompass new data points,
|
|
13
13
|
whether a single value or multiple values are provided. It acts as a
|
|
14
|
-
thin wrapper around geom_blank()
|
|
14
|
+
thin wrapper around `geom_blank()`.
|
|
15
15
|
|
|
16
16
|
Parameters
|
|
17
17
|
----------
|
|
@@ -26,7 +26,7 @@ def expand_limits(*, x=None, y=None, size=None, color=None, fill=None, alpha=Non
|
|
|
26
26
|
|
|
27
27
|
Examples
|
|
28
28
|
--------
|
|
29
|
-
|
|
29
|
+
.. jupyter-execute::
|
|
30
30
|
:linenos:
|
|
31
31
|
:emphasize-lines: 10
|
|
32
32
|
|
|
@@ -38,12 +38,12 @@ def expand_limits(*, x=None, y=None, size=None, color=None, fill=None, alpha=Non
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
# Include the value -10 along the x-axis
|
|
41
|
-
ggplot(data, aes('x', 'y')) + geom_point() +
|
|
41
|
+
ggplot(data, aes('x', 'y')) + geom_point() + \\
|
|
42
42
|
expand_limits(x=-10)
|
|
43
43
|
|
|
44
44
|
|
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
.. jupyter-execute::
|
|
47
47
|
:linenos:
|
|
48
48
|
:emphasize-lines: 10
|
|
49
49
|
|
|
@@ -55,7 +55,7 @@ def expand_limits(*, x=None, y=None, size=None, color=None, fill=None, alpha=Non
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
# Expand Limits Along the y-axis
|
|
58
|
-
ggplot(data, aes('x', 'y')) + geom_point() +
|
|
58
|
+
ggplot(data, aes('x', 'y')) + geom_point() + \\
|
|
59
59
|
expand_limits(y=range(-10, 10))
|
|
60
60
|
|
|
61
61
|
"""
|
lets_plot/plot/facet.py
CHANGED
|
@@ -62,7 +62,7 @@ def facet_grid(x=None, y=None, *, scales=None, x_order=1, y_order=1,
|
|
|
62
62
|
- 'Score: {.2f}' -> 'Score: 12.45',
|
|
63
63
|
- 'Score: {}' -> 'Score: 12.454789'.
|
|
64
64
|
|
|
65
|
-
For more info see https://lets-plot.org/python/pages/formats.html.
|
|
65
|
+
For more info see `Formatting <https://lets-plot.org/python/pages/formats.html>`__.
|
|
66
66
|
|
|
67
67
|
Examples
|
|
68
68
|
--------
|
|
@@ -155,7 +155,7 @@ def facet_wrap(facets, ncol=None, nrow=None, *, scales=None, order=1, format=Non
|
|
|
155
155
|
- 'Score: {.2f}' -> 'Score: 12.45',
|
|
156
156
|
- 'Score: {}' -> 'Score: 12.454789'.
|
|
157
157
|
|
|
158
|
-
For more info see https://lets-plot.org/python/pages/formats.html.
|
|
158
|
+
For more info see `Formatting <https://lets-plot.org/python/pages/formats.html>`__.
|
|
159
159
|
|
|
160
160
|
Examples
|
|
161
161
|
--------
|