具有计算字段的 Tableau 多个图表
Tableau multiple charts with calculated field
我有以下原始数据table
Table姓名:A
Mode Country Month Visitor
Air Switzerland Sep-16 Rob
Air Switzerland Oct-16 Bob
Air Switzerland Nov-16 Ben
Air Rome Sep-16 Zen
Air Rome Sep-16 Jen
Air Rome Oct-16 Todd
Air Rome Nov-16 Ron
Air Italy Sep-16 John
Air Italy Sep-16 Scott
Air Italy Sep-16 Jeff
Air Italy Oct-16 Audrey
Air Italy Nov-16 Steve
Ground Switzerland Sep-16 Rob
Ground Switzerland Oct-16 Russel
Ground Switzerland Oct-16 Zen
Ground Rome Nov-16 Ron
Ground Italy Sep-16 Dan
Ground Italy Oct-16 Timmy
Ground Italy Oct-16 Auidrey
Water Switzerland Sep-16 Peter
Water Switzerland Sep-16 Josh
Water Switzerland Nov-16 Rob
Water Rome Oct-16 Ben
Water Rome Nov-16 Stuart
Water Rome Nov-16 Jen
Water Rome Nov-16 Todd
Water Italy Sep-16 Scott
Water Italy Sep-16 Jeff
Water Italy Sep-16 LOLO
Water Italy Sep-16 Dabbu
Water Italy Nov-16 Danu
Water Italy Oct-16 Randy
Water Italy Oct-16 Demi
Table姓名:B
Mode Month TotalVisitorCount
Air Sep-16 2500
Ground Sep-16 30
Water Sep-16 100
Air Oct-16 1200
Ground Oct-16 10
Water Oct-16 3500
Air Nov-16 5000
Ground Nov-16 600
Water Nov-16 800
在模式和月份上加入这两个 table 后,我想在 11 月 16 日达到 "Final Table"(下图)。
- 如何在副纵轴上设置多个 measures/dimension?
- 如何计算"VisitorRate",因为"DIV(countd[Visitors]/[Total Visitor Count])"公式说,我需要两边聚合。
决赛Table
Mode/Country Switzerland Rome Italy VisitorRate Goal
Air 3 4 5 (3+4+5)/5000 0.06
Ground 3 2 3 (3+2+3)/600 0.06
Water 3 4 7 (3+4+7)/800 0.06
所以基本上,我试图从 "TableA" 和 "TableB" 绘制到 "Final Table" 上方。
需要下面的示例图表。
如有任何指导,我们将不胜感激。
谢谢
我可以得到 Visitor Rate = COUNTD(Visitor Name)/Sum(TotalVisitorCount)
用于在次要垂直轴上绘制多个维度,刚刚使用
在行部分测量值。
如何在第二个垂直轴上设置多个 measures/dimension? --简单"A/B"
如何计算"VisitorRate",因为"DIV(countd[Visitors]/[Total Visitor Count])"公式说,我需要两边聚合。 -- 在行部分使用度量值。
我有以下原始数据table
Table姓名:A
Mode Country Month Visitor
Air Switzerland Sep-16 Rob
Air Switzerland Oct-16 Bob
Air Switzerland Nov-16 Ben
Air Rome Sep-16 Zen
Air Rome Sep-16 Jen
Air Rome Oct-16 Todd
Air Rome Nov-16 Ron
Air Italy Sep-16 John
Air Italy Sep-16 Scott
Air Italy Sep-16 Jeff
Air Italy Oct-16 Audrey
Air Italy Nov-16 Steve
Ground Switzerland Sep-16 Rob
Ground Switzerland Oct-16 Russel
Ground Switzerland Oct-16 Zen
Ground Rome Nov-16 Ron
Ground Italy Sep-16 Dan
Ground Italy Oct-16 Timmy
Ground Italy Oct-16 Auidrey
Water Switzerland Sep-16 Peter
Water Switzerland Sep-16 Josh
Water Switzerland Nov-16 Rob
Water Rome Oct-16 Ben
Water Rome Nov-16 Stuart
Water Rome Nov-16 Jen
Water Rome Nov-16 Todd
Water Italy Sep-16 Scott
Water Italy Sep-16 Jeff
Water Italy Sep-16 LOLO
Water Italy Sep-16 Dabbu
Water Italy Nov-16 Danu
Water Italy Oct-16 Randy
Water Italy Oct-16 Demi
Table姓名:B
Mode Month TotalVisitorCount
Air Sep-16 2500
Ground Sep-16 30
Water Sep-16 100
Air Oct-16 1200
Ground Oct-16 10
Water Oct-16 3500
Air Nov-16 5000
Ground Nov-16 600
Water Nov-16 800
在模式和月份上加入这两个 table 后,我想在 11 月 16 日达到 "Final Table"(下图)。
- 如何在副纵轴上设置多个 measures/dimension?
- 如何计算"VisitorRate",因为"DIV(countd[Visitors]/[Total Visitor Count])"公式说,我需要两边聚合。
决赛Table
Mode/Country Switzerland Rome Italy VisitorRate Goal
Air 3 4 5 (3+4+5)/5000 0.06
Ground 3 2 3 (3+2+3)/600 0.06
Water 3 4 7 (3+4+7)/800 0.06
所以基本上,我试图从 "TableA" 和 "TableB" 绘制到 "Final Table" 上方。 需要下面的示例图表。
如有任何指导,我们将不胜感激。
谢谢
我可以得到 Visitor Rate = COUNTD(Visitor Name)/Sum(TotalVisitorCount)
用于在次要垂直轴上绘制多个维度,刚刚使用 在行部分测量值。
如何在第二个垂直轴上设置多个 measures/dimension? --简单"A/B"
如何计算"VisitorRate",因为"DIV(countd[Visitors]/[Total Visitor Count])"公式说,我需要两边聚合。 -- 在行部分使用度量值。