Skip to content

Commit

Permalink
Preprocess: Fixup docstrings for Normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlin-policar committed Feb 11, 2019
1 parent 88ebe85 commit 1fa8e7a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Orange/preprocess/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,12 +269,12 @@ class Normalize(Preprocess):
Parameters
----------
zero_based : bool (default=True)
Only used when `norm_type=NormalizeBySpan`.
Determines the value used as the “low” value of the variable.
It determines the interval for normalized continuous variables
(either [-1, 1] or [0, 1]).
This has no effect when `norm_type` is set to `NormalizeBySD`.
norm_type : NormTypes (default: Normalize.NormalizeBySD)
Normalization type. If Normalize.NormalizeBySD, the values are
replaced with standardized values by subtracting the average
Expand All @@ -289,6 +289,8 @@ class Normalize(Preprocess):
If True the class is normalized as well.
center : bool (default=True)
Only used when `norm_type=NormalizeBySD`.
Whether or not to center the data so it has mean zero.
Examples
Expand Down

0 comments on commit 1fa8e7a

Please sign in to comment.