
Contents |
Normalize Columns
Normalize the input range column by column
Minimum Origin Version Required: 8.1 SR0
| Display Name | Variable Name | I/O and Type | Default Value | Description |
|---|---|---|---|---|
| Input | irng |
Input Range | | Specify the columns/ranges to be normalized. |
| Normalize Methods | method |
Input int | | Specify the method used to normalize the data.
Option list:
|
| User Defined Value | val |
Input double | | This variable is available only when method is set to specify. It specifies the value used to divide the input data. |
| Reference Column | refcol |
Input Column | | This variable is available only when method is set to ref. It specifies the reference column. |
| Normalize to | type |
Input int | | This variable is available only when method is set to ref. It determines a statistic. After normalization, the statistic of any input column will match that of the reference column.
Option list:
|
| Reference Cell | cell |
Input Range | | This variable is available only when method is set to cell. It specifies the cell used to divide the input data. |
| Output | orng |
Output Range | | Specify the output for the normalized columns.
See the syntax here. |
This function adjusts column(s) or part of the column(s) to s specific "standard" level. It treats each selected column indepently and normalizes all the columns one by one.
The following script will show you an example of normalizing two sets of data according to a third dataset.
string fn$=system.path.program$ + "\Samples\Curve Fitting\Exponential Decay.dat "; impASC fname:=fn$; rnormalize irng:=3:4 method:=ref refcol:=2 orng:=<new>;
Suppose V is the input vector, α is a user defined value, and
is the reference column, the normalized vector,
is:
Divided by a specific value
normalize to [0, 1]:
Transfer to N(0, 1):
Divided by Max:
Divided by Min:
Divided by Mean:
Divided by Median:
Divided by Standard Derivation:
Divided by Norm:
Divided by Mode:
here mode is the value occurring most frequently in a series of data.
Divided by Sum:
Normalized to the max of the reference column:
Normalization to min, mean, median, or sum of the reference column is done in the same manner.