Piecewise wavy (pw_wavy)#
Return a 1D piecewise wavy signal and the associated changepoints.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_samples |
int
|
signal length |
200
|
n_bkps |
int
|
number of changepoints |
3
|
noise_std |
float
|
noise std. If None, no noise is added |
None
|
seed |
int
|
random seed |
None
|
Returns:
Name | Type | Description |
---|---|---|
tuple |
signal of shape (n_samples, 1), list of breakpoints |
Source code in ruptures/datasets/pw_wavy.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|