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