Replace missing values with preceding non-missing values, from the field on the left.
Example
Example Input 1
dim_A | dim_B | metric_1 |
AAA | - | 111 |
BBB | - | 222 |
CCC | FFF | - |
Example Output 1
dim_A | dim_B | metric_1 |
AAA | AAA | 111 |
BBB | BBB | 222 |
CCC | FFF | FFF |
I Ain't Afraid of No Code!
[
[
"fillright",
{
"subtable": null,
"missing": "-",
"_comment": null
}
]
]
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param str missing: Defines what is treated as missing, defaults to None.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.