@@ -3543,8 +3543,8 @@ def acorr(self, x, **kwargs):
35433543 """
35443544 call signature::
35453545
3546- acorr(x, normed=False , detrend=mlab.detrend_none, usevlines=False ,
3547- maxlags=None , **kwargs)
3546+ acorr(x, normed=True , detrend=mlab.detrend_none, usevlines=True ,
3547+ maxlags=10 , **kwargs)
35483548
35493549 Plot the autocorrelation of *x*. If *normed* = *True*,
35503550 normalize the data by the autocorrelation at 0-th lag. *x* is
@@ -3602,13 +3602,13 @@ def acorr(self, x, **kwargs):
36023602 return self .xcorr (x , x , ** kwargs )
36033603 acorr .__doc__ = cbook .dedent (acorr .__doc__ ) % martist .kwdocd
36043604
3605- def xcorr (self , x , y , normed = False , detrend = mlab .detrend_none ,
3606- usevlines = False , maxlags = None , ** kwargs ):
3605+ def xcorr (self , x , y , normed = True , detrend = mlab .detrend_none ,
3606+ usevlines = True , maxlags = 10 , ** kwargs ):
36073607 """
36083608 call signature::
36093609
3610- xcorr(x, y, normed=False , detrend=mlab.detrend_none,
3611- usevlines=False , **kwargs):
3610+ def xcorr(self, x, y, normed=True , detrend=mlab.detrend_none,
3611+ usevlines=True, maxlags=10 , **kwargs):
36123612
36133613 Plot the cross correlation between *x* and *y*. If *normed* =
36143614 *True*, normalize the data by the cross correlation at 0-th
0 commit comments