remove-columns
Last updated
The remove-columns adaptor is used to exclude specified columns from a datatable.
data
Type: datatable
Required: Yes
The datatable containing the columns to be removed.
columns
Type: list
Required: Yes
The list of columns to be removed.
data
Type: datatable
A datatable with the specified columns removed.
Inputs:
data:
2020
Jan
1458
1156
1345
2020
Feb
9874
7835
9110
2020
Mar
4562
3601
4173
2020
Apr
3654
2885
3342
columns:
Sales (USD)
Sales (GBP)
Sales (EUR)
data:
2020
Jan
2020
Feb
2020
Mar
2020
Apr
-> Removed columns Sales (USD), Sales (GBP), Sales (EUR) from the datatable.
Clean up data to keep essential columns.
Remove columns including sensitive information for data sharing.
Remove unwanted columns after using the split-column adapter.
Last updated