我只是想获得 distinct_count 聚合。
我有这个代码:
data_frame = data_frame.group_by(:job_id)
.aggregate(job_id: :max, bid_id: :count)
我想要这样的东西:
data_frame = data_frame.group_by(:job_id)
.aggregate(job_id: :max, bid_id: :distinct_count)
我知道还没有实现这样的统计方法,还有其他方法吗?