在 Spotfire 中更改列值
Changing column values in Spotfire
我正在尝试用这样的字符串值替换 Spotfire 中列的所有值(类型:int):
old new
1 a
2 dog
3 will
1 a
4 be
2 dog
我是 Spotfire 的初学者,有人知道怎么做吗?
感谢
单击插入,select 计算列,然后将其与其他案例一起粘贴到表达式框中。
case when [old_col] = 1 then 'a'
when [old_col] = 2 then 'dog'
...
end
我正在尝试用这样的字符串值替换 Spotfire 中列的所有值(类型:int):
old new
1 a
2 dog
3 will
1 a
4 be
2 dog
我是 Spotfire 的初学者,有人知道怎么做吗? 感谢
单击插入,select 计算列,然后将其与其他案例一起粘贴到表达式框中。
case when [old_col] = 1 then 'a'
when [old_col] = 2 then 'dog'
...
end