You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Passing additional arguments to `scipy.stats.bws_test <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.bws_test.html>`__ can be done using :func:`compare` kwargs.
24
+
25
+
:References:
26
+
27
+
.. [baumgartner1998nonparametric] Baumgartner, W., P. Weiß, and H. Schindler.
28
+
"A nonparametric test for the general two-sample problem."
29
+
Biometrics (1998): 1129-1135.
30
+
31
+
:Example:
32
+
33
+
>>> from frouros.detectors.data_drift import BWSTest
34
+
>>> import numpy as np
35
+
>>> np.random.seed(seed=31)
36
+
>>> X = np.random.normal(loc=0, scale=1, size=100)
37
+
>>> Y = np.random.normal(loc=1, scale=1, size=100)
0 commit comments