-
Notifications
You must be signed in to change notification settings - Fork 609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(blog): ibis + clickhouse + shiny for better pypi stats #9880
docs(blog): ibis + clickhouse + shiny for better pypi stats #9880
Conversation
Can we replace this Pie chart for a bar plot? It's very hard for the eye to distinguish the different of the small percentages, especially the smaller ones. (Also happy to provide more context on why pie-charts are not a good way of communicating data) Also the colors seem to be repeated, pip and conda look the same. Maybe plot just the top 5? |
will do -- it's actually not in the shiny app TODOs:
I probably also want to get the part 2 of this ready before publishing (it's 80% done) |
overall_t = ( | ||
overall_t.order_by(ibis.desc("count")) | ||
.limit(top_k) | ||
.mutate(rank=1 + ibis.row_number().over(order_by=ibis.desc("count"))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is adding one here necessary? It seems like you're just after the ordering, which is there without the addition of one.
Description of changes
Ibis + ClickHouse + Shiny for Python = better PyPI stats.
Adds a blog post showing an end-to-end Python analytics + BI stack on public data.
Issues closed