I would like to automatically do Exploratory Data Analysis using Azure Databricks, and I have seen the potential it has as shown for example in this post:
但是,在遵循数据中的同一步骤时不启用扩展名。我已经测试了这样的事情:
import bamboolib as bam
import pandas as pd
还测试添加以下几行以启用扩展名:
bam.enable()
# Jupyter Notebook extensions
!python -m bamboolib install_nbextensions
我还读到,班布里布(Bamboolib)与databricks“加入力量”,但仍然找不到它是否尚未可用或有关此集成的任何文档。
如果有人知道如何使用databricks,我真的很感激
I would like to automatically do Exploratory Data Analysis using Azure Databricks, and I have seen the potential it has as shown for example in this post: https://towardsdatascience.com/the-easy-way-to-do-data-exploration-22b4b8e1dc20
But when following the same steps in Databricks the extension is not enabled. I have tested something like this:
import bamboolib as bam
import pandas as pd
Also testing adding the following lines to enable the extension:
bam.enable()
# Jupyter Notebook extensions
!python -m bamboolib install_nbextensions
I have also read that bamboolib is "joining forces" with Databricks but still don't find if it is not yet available or any documentation regarding this integrations.
I would really appreciate if anyone knows how to use bamboolib with Databricks
发布评论
评论(3)
我在Databricks的团队中工作了Bamboolib集成,我很高兴您想带Bamboolib进行旋转。
更新:截至2022年9月13日,BAMBoolib在Databricks笔记本中的公共预览中,使用DBR 11或更高(GCP上的DBR 11.1或更高)。
链接到AWS Docs
I am on the team at Databricks working on the bamboolib integration and I am excited that you want to take bamboolib for a spin.
Update: As of September 13 2022 bamboolib is in public preview within Databricks notebooks that use DBR 11 or higher (DBR 11.1 or higher on GCP).
Link to the AWS docs
对我而言,将数据链机运行时设置为11.0版本后,该问题得到了解决。在此处阅读有关BAMBOOLIB在Databricks上的要求的更多信息:(DBR 11.0是最低要求)
For me the issue was solved after setting the Databricks Runtime to 11.0 version. Read more about the requirements of bamboolib on Databricks here: https://learn.microsoft.com/en-us/azure/databricks/notebooks/bamboolib#requirements (DBR 11.0 is the minimum requirement)
您可以使用以下2种方法安装BAMBOOLIB库。
pip install bamboolib
- link您可以参考此 rahul agarwal
You can install bamboolib library using below 2 approach.
pip install bamboolib
- linkYou can refer this article by Rahul Agarwal