We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LimitTransform
Create a transform that limits values of some feature between the borders.
Create LimitTransform.
Parameters:
in_column: column to make transformation on;
in_column
lower_bound: lower bound for the value of the column; -infty by default;
lower_bound
upper_bound: upper bound for the value of the column; +infty by default;
upper_bound
If there is value out of limit the exception should be raised.
NaNs should be ignored.
Reference: Ensure time series forecasts stay within limits.
To discuss:
inplace
What should be checked:
Don't forget to add inference tests into tests/test_transforms/test_inference/.
tests/test_transforms/test_inference/
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🚀 Feature Request
Create a transform that limits values of some feature between the borders.
Proposal
Create
LimitTransform
.Parameters:
in_column
: column to make transformation on;lower_bound
: lower bound for the value of the column; -infty by default;upper_bound
: upper bound for the value of the column; +infty by default;If there is value out of limit the exception should be raised.
NaNs should be ignored.
Reference: Ensure time series forecasts stay within limits.
To discuss:
inplace
parameter for working in non-inplace mode?Test cases
What should be checked:
Don't forget to add inference tests into
tests/test_transforms/test_inference/
.Additional context
No response
The text was updated successfully, but these errors were encountered: