lets-plot 4.5.0rc2__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.

@@ -103,7 +103,7 @@ class layer_labels(FeatureSpec):
103
103
 
104
104
  Notes
105
105
  -----
106
- For more info see https://lets-plot.org/python/pages/formats.html.
106
+ For more info see `Formatting <https://lets-plot.org/python/pages/formats.html>`__.
107
107
 
108
108
  Examples
109
109
  --------
@@ -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
- .. jupyter-execute::
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
- .. jupyter-execute::
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
  --------