@@ -1565,38 +1565,43 @@ def semilogx(self, *args, **kwargs):
1565
1565
"""
1566
1566
Make a plot with log scaling on the *x* axis.
1567
1567
1568
- Call signature::
1569
-
1570
- semilogx(*args, **kwargs)
1571
-
1572
- :func:`semilogx` supports all the keyword arguments of
1573
- :func:`~matplotlib.pyplot.plot` and
1574
- :meth:`matplotlib.axes.Axes.set_xscale`.
1575
-
1576
- Notable keyword arguments:
1577
-
1578
- *basex*: scalar > 1
1579
- Base of the *x* logarithm
1568
+ Parameters
1569
+ ----------
1570
+ basex : float, optional
1571
+ Base of the *x* logarithm. The scalar should be larger
1572
+ than 1.
1580
1573
1581
- * subsx*: [ *None* | sequence ]
1574
+ subsx : array_like, optional
1582
1575
The location of the minor xticks; *None* defaults to
1583
1576
autosubs, which depend on the number of decades in the
1584
1577
plot; see :meth:`~matplotlib.axes.Axes.set_xscale` for
1585
1578
details.
1586
1579
1587
- * nonposx*: [ 'mask' | 'clip' ]
1580
+ nonposx : string, optional, { 'mask', 'clip'}
1588
1581
Non-positive values in *x* can be masked as
1589
- invalid, or clipped to a very small positive number
1582
+ invalid, or clipped to a very small positive number.
1590
1583
1591
- The remaining valid kwargs are
1584
+ Returns
1585
+ -------
1586
+ `~matplotlib.pyplot.plot`
1587
+ Log-scaled plot on the *x* axis.
1588
+
1589
+ Other Parameters
1590
+ ----------------
1592
1591
:class:`~matplotlib.lines.Line2D` properties:
1593
1592
1594
1593
%(Line2D)s
1595
1594
1596
- .. seealso::
1595
+ See Also
1596
+ --------
1597
+ loglog : For example code and figure.
1598
+
1599
+ Notes
1600
+ -----
1601
+ This function supports all the keyword arguments of
1602
+ :func:`~matplotlib.pyplot.plot` and
1603
+ :meth:`matplotlib.axes.Axes.set_xscale`.
1597
1604
1598
- :meth:`loglog`
1599
- For example code and figure
1600
1605
"""
1601
1606
if not self ._hold :
1602
1607
self .cla ()
0 commit comments