我的dataset中的列(sentiment)可以具有以下值:
["positive", "negative"]
我想创建一个带有calculated metric的新pivot-table,它显示了通过以下逻辑获得的索引:
sum[sentiment="positive"]-sum[sentiment="negative"]/count[sentiment]
在计算的指标内实现这一点是可能的吗?
`
发布于 2016-05-25 20:51:48
在创建数据透视表之前,在电子表格中添加一个类似“指标”的列,使用countif()计算“指标”列中“正”和“负”的实例数。完成后,创建您的数据透视表。
https://stackoverflow.com/questions/37437520
复制相似问题