RATIO
Basic Overview
Description | Divides the first node by the second node, while only retaining joint Dimensions. |
Syntax | RATIO(Node1, Node2) |
Parameter |
|
Advantages |
|
Example
Input A =
Year | Value |
---|---|
2019 | 15 |
2020 | 28 |
2021 | 126 |
Input B =
Year | Value |
---|---|
2019 | 2 |
2020 | 2 |
2021 | 3 |
Output RATIO('A', 'B') =
Year | Value |
---|---|
2019 | 7.5 |
2020 | 14 |
2021 | 42 |