Adds a row or rows before the header, row values for all fields need to be specified.
Example
Example Input
dim_A | dim_B | metric_1 |
AAA | DDD | 111 |
BBB | EEE | 222 |
CCC | FFF | 333 |
Example Output
Dimensions | Metrics | |
dim_0 | dim_1 | some_value |
dim_A | dim_B | metric_1 |
AAA | DDD | 111 |
BBB | EEE | 222 |
CCC | FFF | 333 |
I Ain't Afraid of No Code!
[
[
"preamble",
{
"subtable": null,
"fields": [
[
"Dimensions",
"",
"Metrics"
],
[
"dim_0",
"dim_1",
"some_value"
]
],
"_comment": null
}
]
]
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param list fields: Row values inserted above header.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.