Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 892c715 + 91283ec commit f5815b0Copy full SHA for f5815b0
2 files changed
lib/matplotlib/axes.py
@@ -4197,8 +4197,8 @@ def xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
4197
"""
4198
Call signature::
4199
4200
- def xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
4201
- usevlines=True, maxlags=10, **kwargs):
+ xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
+ usevlines=True, maxlags=10, **kwargs)
4202
4203
Plot the cross correlation between *x* and *y*. If *normed* =
4204
*True*, normalize the data by the cross correlation at 0-th
@@ -7485,7 +7485,7 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
7485
7486
7487
7488
- def hist(x, bins=10, range=None, normed=False, weights=None,
+ hist(x, bins=10, range=None, normed=False, weights=None,
7489
cumulative=False, bottom=None, histtype='bar', align='mid',
7490
orientation='vertical', rwidth=None, log=False,
7491
color=None, label=None,
lib/matplotlib/figure.py
@@ -1014,7 +1014,7 @@ def text(self, x, y, s, *args, **kwargs):
1014
1015
1016
1017
- figtext(x, y, s, fontdict=None, **kwargs)
+ text(x, y, s, fontdict=None, **kwargs)
1018
1019
Add text to figure at location *x*, *y* (relative 0-1
1020
coords). See :func:`~matplotlib.pyplot.text` for the meaning
@@ -1089,7 +1089,7 @@ def add_axobserver(self, func):
1089
1090
def savefig(self, *args, **kwargs):
1091
1092
- call signature::
+ Call signature::
1093
1094
savefig(fname, dpi=None, facecolor='w', edgecolor='w',
1095
orientation='portrait', papertype=None, format=None,
@@ -1223,7 +1223,7 @@ def subplots_adjust(self, *args, **kwargs):
1223
1224
1225
1226
- fig.subplots_adjust(left=None, bottom=None, right=None, top=None,
+ subplots_adjust(left=None, bottom=None, right=None, top=None,
1227
wspace=None, hspace=None)
1228
1229
Update the :class:`SubplotParams` with *kwargs* (defaulting to rc when
0 commit comments