Spotfire - 列中的组值

时间:2018-01-02 12:27:10

标签: grouping spotfire bin

以下是我的专栏。我想将这些任务分组,例如,任务1-5为9月,任务3到7为10月,任务5-9为11月。我们如何在Spotfire中做到这一点。

flask-restplus

2 个答案:

答案 0 :(得分:1)

一种方式是案例陈述......

case
   when [Task] = 1 then "September"
   when [Task] = 2 then "September"
   ...
   when [Task] = 6 then "October"
   ...
end as [New Column]

答案 1 :(得分:-1)

我不知道我是否了解您的需求,但您可以执行数据功能(R脚本)来创建另一个保留该组信息的列。

如果要这样做,请创建一个输入和输出变量ERROR: (gcloud.app.deploy) Error Response: [9] Deployment contains files that cannot be compiled: Compile failed: /work_dir/github.com/stretchr/testify/assert/assertions.go:17: can't find import: "github.com/davecgh/go-spew/spew" 2018/01/02 04:59:26 go-app-builder: build timing: 23×compile (14.75s total), 0×link (0s total) 2018/01/02 04:59:26 go-app-builder: failed running compile: exit status 2 (函数的数据表)。

将此行添加到您的脚本中。

dt

然后对于每一行,将该NA值替换为组的编号

希望它有所帮助!

注意:如果你没有很多小组,你也可以用一些dt["NEW_COLUMN"] <- NA创建一个计算列,这样会更好,因为你赢了每次重新加载数据后都必须运行R脚本。