如何根据 Tableau 中的条件将地理地图上的颜色分配给数据列?
我有如下数据,
pincode value
1010 null
1020 0
1020 0.2
1030 0.55
1132 0.4
1124 0.8
1010 1
1020 null
1020 0
1030 0.66
1132 0.5
1124 0.3
我想根据 pincode 在 Tableau 中的地理地图上分配这些值。进一步要求满足以下条件,
当value = null时->颜色应该是蓝色
->颜色应以红色为主(浅红色到深红色)
- 当值在 0.5 到 1 之间时,
->颜色应以绿色变化(浅绿色到深绿色)
我如何在画面中做到这一点?我试图通过创建计算字段将它们分成三个不同的列,但随后我无法将三个不同的列分配给颜色字段。
任何人都可以提出更好的解决方案/想法来做到这一点。
谢谢你:)
I have data as below,
pincode value
1010 null
1020 0
1020 0.2
1030 0.55
1132 0.4
1124 0.8
1010 1
1020 null
1020 0
1030 0.66
1132 0.5
1124 0.3
I want to assign these values on geo map in Tableau based on pincodes. Further the requirement is to satisfy the following conditions,
when value = null -> colour should be blue
when value is in between 0 and 0.5 -> colours should vary in terms of red (light red to dark red)
when value is in between 0.5 and 1 -> colours should vary in terms of green(light green to dark green)
How can I do this in tableau? I am trying to split them into three different columns, by creating calculated fields, but then I am unable to assign three different columns to colour field.
Can anyone suggest a better solution/ idea to do this.
Thank you:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不创建一个名为“pincode 值组”或类似的计算字段,并使用 if 和 elseif 逻辑在一个字段中设置所有三个组。
输出可能是“无值”、“介于 0 和 0.5 之间”或“大于 0.5”
。然后您可以为每个值设置颜色。
Why not create one calculated field called "pincode value groups" or similar and use if and elseif logic to set all three groups in one field.
The output would either be "no value", "Between 0 and 0.5", or "greater than 0.5"
Then you can set colors for each of these values.