@@ -1602,13 +1602,23 @@ def ylim(*args, **kwargs):
1602
1602
@docstring .dedent_interpd
1603
1603
def xscale (* args , ** kwargs ):
1604
1604
"""
1605
- Set the scaling of the *x* -axis.
1605
+ Set the scaling of the x -axis.
1606
1606
1607
- call signature::
1607
+ Call signature::
1608
1608
1609
- xscale(scale, **kwargs)
1609
+ xscale(scale, **kwargs)
1610
+
1611
+ Parameters
1612
+ ----------
1613
+ scale : [%(scale)s]
1614
+ The scaling type.
1615
+ **kwargs
1616
+ Additional parameters depend on *scale*. See Notes.
1610
1617
1611
- The available scales are: %(scale)s
1618
+ Notes
1619
+ -----
1620
+ This is the pyplot equivalent of calling `~.Axes.set_xscale` on the
1621
+ current axes.
1612
1622
1613
1623
Different keywords may be accepted, depending on the scale:
1614
1624
@@ -1620,13 +1630,23 @@ def xscale(*args, **kwargs):
1620
1630
@docstring .dedent_interpd
1621
1631
def yscale (* args , ** kwargs ):
1622
1632
"""
1623
- Set the scaling of the *y* -axis.
1633
+ Set the scaling of the y -axis.
1624
1634
1625
- call signature::
1635
+ Call signature::
1626
1636
1627
- yscale(scale, **kwargs)
1637
+ yscale(scale, **kwargs)
1638
+
1639
+ Parameters
1640
+ ----------
1641
+ scale : [%(scale)s]
1642
+ The scaling type.
1643
+ **kwargs
1644
+ Additional parameters depend on *scale*. See Notes.
1628
1645
1629
- The available scales are: %(scale)s
1646
+ Notes
1647
+ -----
1648
+ This is the pyplot equivalent of calling `~.Axes.set_yscale` on the
1649
+ current axes.
1630
1650
1631
1651
Different keywords may be accepted, depending on the scale:
1632
1652
0 commit comments