What visualization library are you using in Python?
Using Altair for most of my visualization in Python
21–30 of 75 posts
Re: Using Altair for most of my visualization in Python
#22What visualization library are you using in Python?
Re: Using Altair for most of my visualization in Python
#23Earlier quoted context omitted.
Can you speak more about this? Are you saying that Altair's speed scales poorly with dataset size?
It throws an error if you try to plot more than 5000 datapoints by default, internally altair produces a JSON representation (vega-lite) that is larger than the data you plot (because it contains the data you plot, plus formatting information). If you save this output, for example in an ipython notebook, it gets phat pretty quickly. Altair is still great though, but this issue makes it occasionally annoying.
Re: Using Altair for most of my visualization in Python
#24Pretty cool. > Sadly, in Python, we do not have a ggplot2. I've got to ask, though: why is that the case?
Re: Using Altair for most of my visualization in Python
#25What visualization library are you using in Python?
Re: Using Altair for most of my visualization in Python
#26I'm partial to plotnine ( https://github.com/has2k1/plotnine ). It is an implementation of grammar of graphics in python (like ggplot2). It provides a stateless layer like interface which feels intuitive, and avoids bugs due to global state. But, it is built on top of matplotlib. So, if plotnine cannot do something, you can go back to the matplotlib way of doing things and take advantage of the large number of blogs,…
Performance is a huge concern for us and we are working on some improvements in that area. We will first focus on pushing computation and aggregation down into the Python kernel.
Re: Using Altair for most of my visualization in Python
#27Altair is incredible until you realise your plots are bigger than your data. It's annoying, but overall still very good.
Re: Using Altair for most of my visualization in Python
#28I'm looking for an interactive visualization tool that I could have site visitors access via a github blog page. Does Altair manage client-side processing? I'm still pretty new in the search but like Altair's adoption of Vega-lite.