是否可以使用 Kusto 查询语言创建直方图?

Is there a possibility to create a Histogram using Kusto Query Language?

我正在查看 kusto 文档以检查我是否可以创建直方图,但我似乎没有找到任何与直方图相关的内容。只有条形图和柱形图。

有没有办法在 KQL 中创建直方图,或者这是不可能的?

可以使用 bin()

完成
// Generation of a data sample. Not part of the solution.
range i from 0 to 100 step 1 | project i, r = sqrt(-2*log(rand()))*sin(2*pi()*rand()) 
// Solution starts here.
| summarize count() by bin(r, 0.5)
| render columnchart 

Fiddle