如何使用Shell脚本放置数据透视表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Shell脚本放置数据透视表相关的知识,希望对你有一定的参考价值。

我有一个CSV文件中的数据,如下所示...

Emailid  Storeid      

a@gmail.com 2000

b@gmail.com 2001

c@gmail.com 2000

d@gmail.com 2000

e@gmail.com 2001

我希望得到如下的输出,基本上是找出每个商店有多少邮件ID。

StoreID    Emailcount

2000           3

2001           2

到目前为止,我试图解决我的问题

IFS=","
while read f1 f2
do
awk -F, ' A[$1]+=$2  END  OFS=","; for (x in A) print x,A[x]; ' > /home/ec2-user/storewiseemials.csv
done < temp4.csv

用上面的shell脚本,我没有得到想要的输出,你们能帮帮我吗?

答案

使用miller (https:/github.comjohnkerlmiller。),然后从这个开始(我使用了一个CSV,因为我不知道你是用制表符还是用空格作为分隔符)

Emailid,Storeid
a@gmail.com,2000
b@gmail.com,2001
c@gmail.com,2000
d@gmail.com,2000
e@gmail.com,2001

和运行

mlr --csv count-distinct -f Storeid -o Emailcount input >output

您将拥有

+---------+------------+
| Storeid | Emailcount |
+---------+------------+
| 2000    | 3          |
| 2001    | 2          |
+---------+------------+

以上是关于如何使用Shell脚本放置数据透视表的主要内容,如果未能解决你的问题,请参考以下文章

excel数据透视表如何生成柱状图表

Excle数据透视二维数据如何创建数据透视表

excel中数据透视表,如何将空白的地方隐藏掉

Excel 请问资料透视表如何去掉汇总行

Excel数据透视表制作 这6个技巧超好用

如何刷新数据透视图