繁体   English   中英

在 Tableau 中执行多个 groupby 转换和聚合函数

[英]Execute multiple groupby transformations and aggregate functions within Tableau

我有一个看起来与下面的数据非常相似的数据集。

  1. 我想使用组列中的值创建两个组。

    group1 - 新 &

    group2 - 旧

  2. 在 group1 - new 中,我想然后 groupby id 并取每个分组 id 的平均值,然后求和

数据:

     id     type    backup  free    total   Last refreshed
     a      old     1       4       5       11/1/2020
     b      old     1       4       5       11/1/2020
     c      old     1       4       5       11/1/2020
     d      new     2       1       3       11/1/2020
     e      new     2       1       3       11/1/2020
     f      old     1       1       2       11/1/2020
     g      old     1       1       2       11/1/2020
     e      new     2       2       4       11/1/2020
     d      new     2       2       4       11/1/2020

第一步 - 创建 group1 和 group2

    id  group   type    used free   total   Last refreshed
    a   group2  old     1    4      5       11/1/2020
    b   group2  old     1    4      5       11/1/2020
    c   group2  old     1    4      5       11/1/2020
    f   group2  old     1    1      2       11/1/2020
    g   group2  old     1    1      2       11/1/2020
    d   group1  new     2    1      3       11/1/2020
    e   group1  new     2    1      3       11/1/2020
    e   group1  new     2    2      4       11/1/2020
    d   group1  new     2    2      4       11/1/2020

第二步 groupby id

id  group   type    used    free    total       Last refreshed
   d    new     group1  2       1       3       11/1/2020
   d    new     group1  2       2       4       11/1/2020
   e    new     group1  2       1       3       11/1/2020
   e    new     group1  2       2       4       11/1/2020
   a    old     group2  1       4       5       11/1/2020
   b    old     group2  1       4       5       11/1/2020
   c    old     group2  1       4       5       11/1/2020
   f    old     group2  1       1       2       11/1/2020
   g    old     group2  1       1       2       11/1/2020

第三步,我们按 id 分组并取 d 的平均值(对于每一列)我们按 id 分组并取 e 的平均值(对于每一列),然后我们将旧组中的值(对于每一列)相加,然后我们将它们相加

  id    used    free    total   Last refreshed
  d     2       1.5     3.5     11/1/2020
  e     2       1.5     3.5     11/1/2020
  old   5       14      19      11/1/2020

期望的结果

全部加起来得到:

 used   free    total   Last refreshed
 9      17      26      11/1/2020

图形:

在此处输入图像描述

这就是我正在做的事情:

2.将类型放入组 2.创建计算字段

zn(avg(if [Group]= 'Group1' end))
+
zn(sum(if [Group] = 'Group2' end))

在此处输入图像描述

任何建议表示赞赏

对于第一部分,即 groupby 转换和聚合,请使用以下计算创建三个计算字段

  1. desired free
{SUM({Fixed [Last Refreshed]: SUM(IF [Type] = "new" THEN
{FIXED [Last Refreshed], [Type], [Id] : AVG([Free])}
ELSEIF [Type] = "old"
THEN {FIXED [Last Refreshed], [Type], [Id] : SUM([Free])}
END)})}

对于desired useddesired total也是如此。 您将根据需要获得一个汇总表(请参见屏幕截图)

在此处输入图像描述

要创建条形图(堆叠),您必须 pivot(转换)通过合并使用和释放到一维的数据。 如果您愿意,我可以再次为您提供解决方案。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM