power bi 中不包括小的组的平均参数
averaging parameter over groups excluding small ones in power bi
如何在 power bi 中实现以下 SQL 的等价物?
Select jobtype,avg(salary) from staff group by jobtype having count(*)>3
试试这个:
- 创建 table 可视化
- 将 'jobtype' 和 'salary' 拖到值部分
- 再次拖动 'jobtype' 这样您就有了其中两个字段
- 通过单击值部分中的 'salary' 字段按 'avg' 进行汇总,这将为您提供平均工资。
- 通过单击值部分中的 'jobtype' 字段之一按 'count' 进行汇总,这将为您提供计数。
- 在过滤器部分,您会看到 'count of job type' 字段。单击此字段并按条件筛选 'greater than 3'.
如果有帮助请告诉我。
如何在 power bi 中实现以下 SQL 的等价物?
Select jobtype,avg(salary) from staff group by jobtype having count(*)>3
试试这个:
- 创建 table 可视化
- 将 'jobtype' 和 'salary' 拖到值部分
- 再次拖动 'jobtype' 这样您就有了其中两个字段
- 通过单击值部分中的 'salary' 字段按 'avg' 进行汇总,这将为您提供平均工资。
- 通过单击值部分中的 'jobtype' 字段之一按 'count' 进行汇总,这将为您提供计数。
- 在过滤器部分,您会看到 'count of job type' 字段。单击此字段并按条件筛选 'greater than 3'.
如果有帮助请告诉我。