Ibis - Querying every file in every release on the Python Package Index (redux) #7584
-
Ibis - Querying every file in every release on the Python Package Index (redux)https://ibis-project.org/posts/querying-pypi-metadata-compiled-languages/ |
Beta Was this translation helpful? Give feedback.
Answered by
NickCrews
Nov 20, 2023
Replies: 1 comment 3 replies
-
I copy the final code to Jupyter lab, and get the following error:
ibis version is 7.1.0 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or, if you can't upgrade altair (which contains a feature that makes altair work with any
__dataframe__()
-compatible library, such as ibis or vaex), then the other option is to execute the ibis expression to a pandas DF before passing to altair: changealt.Chart(full_query)
toalt.Chart(full_query.to_pandas())