DADiSP Worksheet Functions > Function Categories > Data Manipulation and Editing > REPLACECOL
Replaces a column of a table.
REPLACECOL(series, newcol, colnum)
series |
- |
A multi-column series. |
||
newcol |
- |
A series, the new column to replace the existing column. |
||
colnum |
- |
Optional, an integer, the column number to replace.
|
A series or table.
W1: reshape(1..10, {3, 5, 2})
W2: replacecol(W1, 1..3)
W3: replacecol(W1, 1..3, 2)
W4: replacecol(W1, 1..3, 3)
W1 contains the table:
1 4 9
2 5 10
3 6
7
8
W2 contains the table:
1 4 9 1
2 5 10 2
3 6 3
7
8
W3 contains the table:
1 1 9
2 2 10
3 3
W4 contains the table:
1 4 1
2 5 2
3 6 3
7
8
W1: reshape(1..10, {3, 5, 2})
W2: replacecol(W1, ones(2, 2), 2)
W1 contains the table:
1 4 9
2 5 10
3 6
7
8
W2 contains the table:
1 1 1 9
2 1 1 10
3
REPLACECOL does not operate in-place, a new series is returned.
As shown in the second example, if the new series contains multiple columns, all of the new columns replace the original column.
See INSERTCOL to insert one or more columns into a table.