gpt4 book ai didi

scala - 在 Scala 中与齐柏林飞艇一起使用 plotly

转载 作者:行者123 更新时间:2023-12-04 12:51:07 25 4
gpt4 key购买 nike

我想在 Zeppelin 中以直方图的形式显示我的结果。我遇到了阴谋。我的代码在 Scala 中,我想知道使用 Scala 将 plotly 合并到 zeppelin 中的步骤。或者有没有更好的方法(库)可用于在 Zeppelin(Scala) 中绘制直方图?

最佳答案

如果您有一个名为 plotTemp 的数据框,其中包含“id”、“degree”列,那么您可以执行以下操作:

  • 在 Scala 窗口中,将数据帧注册为临时表
  • plotTemp.registerTempTable("plotTemp")
  • 然后在新窗口切换到SQL解释器
    %sql
    select degree, count(1) nInBin
    from plotTemp
    group by degree
    order by degree

  • 然后,您可以单击条形图图标,您应该会看到您要查找的内容

    Example of distribution plot done in Zeppelin

    关于scala - 在 Scala 中与齐柏林飞艇一起使用 plotly,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38323164/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com