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