Live data from Hacker News

Plotnine

plotnine.org

1–10 of 83 posts

Re: Plotnine

#5
`from plotnine import *`

... I love the idea of a new python plotting library, but why is this anti-pattern so common with plotting libs?

Re: Plotnine

#6
post #5

`from plotnine import *` ... I love the idea of a new python plotting library, but why is this anti-pattern so common with plotting libs?

> a new python plotting library

Whilst it's still not yet at 1.0.0, it's not that new: the first (0.1.0) release was in 2017: https://pypi.org/project/plotnine/#history

Re: Plotnine

#7
Back when I did a lot of data stuff I used ggplot in R because it seemed to be popular, but I was just copy/pasting examples. Then one day I finally started to "get it" and actually read the manual. Learning the grammar of graphics was like a super power. I got to the point I could open pretty much anything people sent me and visualise it in a matter of seconds.

Although I've used Python professionally a lot more than R, I still felt like R was better at this. Somehow opening files in Python always feels a bit more "heavy". I don't really know why, though.

Re: Plotnine

#10
post #6
post #5

`from plotnine import *` ... I love the idea of a new python plotting library, but why is this anti-pattern so common with plotting libs?

> a new python plotting library Whilst it's still not yet at 1.0.0, it's not that new: the first (0.1.0) release was in 2017: https://pypi.org/project/plotnine/#history

matplotlib's first release was in 2003, making it more than twice as old.
Post reply on HN