需要澄清查找组和 groupby 如何在 klipfolio 中工作。具有以下 json 格式的数据:
{
"44875": {
"title": "Appointment - 1",
"date": "01/12/2000",
"appointment_date": "01/12/2000",
"appointment_time": "12:00",
"type": "Rent Request"
},
"44921": {
"title": "Appointment - 2314",
"date": "03/09/2007",
"appointment_date": "03/10/2007",
"appointment_time": "18:30",
"type": "Sale Request"
}
"44922": {
"title": "Appointment - 2311",
"date": "03/09/2007",
"appointment_date": "03/10/2007",
"appointment_time": "18:30",
"type": "Rent Request"
},
"44923": {
"title": "Appointment - 2351",
"date": "10/09/2007",
"appointment_date": "03/10/2007",
"appointment_time": "18:30",
"type": "Rent Request"
}
}
最终表格视图需要:
日期 | 类型 | 数数 |
---|---|---|
2000 年 12 月 | 租金要求 | 1 |
2007 年 9 月 | 销售请求 | 1 |
2007 年 9 月 | 租金要求 | 2 |
通过使用 Lookup Group 和 GroupBy 我如何进行聚合。