Piecewise linear (pw_linear)#
Return piecewise linear signal and the associated changepoints.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_samples |
int
|
signal length |
200
|
n_features |
int
|
number of covariates |
1
|
n_bkps |
int
|
number of change points |
3
|
noise_std |
float
|
noise std. If None, no noise is added |
None
|
seed |
int
|
random seed |
None
|
Returns: tuple: signal of shape (n_samples, n_features+1), list of breakpoints
Source code in ruptures/datasets/pw_linear.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|