rinobot-plugin-normalize
v0.3.2
Published
Normalises a column of data
Downloads
2
Readme
rinobot-plugin-normalize
Options:
In the extra args section of the rinobot automation config you can set the following parameters
- algo [required]: either
sum
ormax
, to normalize by the sum of every number in the column, or by the max number in the column. - cols: the columns to work on (see Selecting columns and rows of data)
- rows: the rows to work on
Example
Normalizes an axis of your data.
If your data looks like:
0 1
1 2
2 3
3 4
4 5
You can normalize any column by either its sum
or its max
,
0 0.2
1 0.4
2 0.6
3 0.8
4 1.0