Live data from Hacker News

Plotly.py 5.0

community.plotly.com

11–20 of 38 posts

Re: Plotly.py 5.0

#11

Dash is really the go-to library if you want to build some complex, flexible dashboards. I found for highly customized dashboards it's a lot easier just to program your own instead of squeezing Tableau's rules.

Have similar experience with Plotly + Streamlit when PowerBI starts to collapse under its own weight :)

It’s also way simpler to just pull everything in and manipulate it in Pandas, if your data is not pristine from the get-go.

Re: Plotly.py 5.0

#13

Dash is really the go-to library if you want to build some complex, flexible dashboards. I found for highly customized dashboards it's a lot easier just to program your own instead of squeezing Tableau's rules.

How does Dash compare to Streamlit?

Sorry never played with Streamlit.

Re: Plotly.py 5.0

#14

Dash is really the go-to library if you want to build some complex, flexible dashboards. I found for highly customized dashboards it's a lot easier just to program your own instead of squeezing Tableau's rules.

Have similar experience with Plotly + Streamlit when PowerBI starts to collapse under its own weight :) It’s also way simpler to just pull everything in and manipulate it in Pandas, if your data is not pristine from the get-go.

Yeah man. With Python you have access to huge amount of libraries (and have better code quality TBH) while in Tableau you have to use whatever they give you.

That said, Tableau is still useful for the "ordinary" dashboards, e.g. it's a lot easier if you just need to do some simple calculations and get your KPI. Tableau is still way faster than any other programming language.

Re: Plotly.py 5.0

#15
I can attest first hand to how great Plotly is. I'm building Mito[1], an interactive spreadsheet that converts every edit you make into the equivalent Python code, it's also a Jupyter extension. We use Plotly for all of our visualizations -- letting users configure bar plots, histograms, scatter plots, etc similar to how you could in Excel. Plotly's API is really simple to use and it allows for interactivity right out of the box. It would have taken us months to recreate their functionality that we were able to get in days of implementation instead.

[1] https://trymito.io/hn

Re: Plotly.py 5.0

#16

I can attest first hand to how great Plotly is. I'm building Mito[1], an interactive spreadsheet that converts every edit you make into the equivalent Python code, it's also a Jupyter extension. We use Plotly for all of our visualizations -- letting users configure bar plots, histograms, scatter plots, etc similar to how you could in Excel. Plotly's API is really simple to use and it allows for interactivity right ou…

I’m wondering. How does that work in terms of pricing and license? Do you need to pay a fee to plotly?

Re: Plotly.py 5.0

#17

I can attest first hand to how great Plotly is. I'm building Mito[1], an interactive spreadsheet that converts every edit you make into the equivalent Python code, it's also a Jupyter extension. We use Plotly for all of our visualizations -- letting users configure bar plots, histograms, scatter plots, etc similar to how you could in Excel. Plotly's API is really simple to use and it allows for interactivity right ou…

I’m wondering. How does that work in terms of pricing and license? Do you need to pay a fee to plotly?

Plotly.py is MIT-licensed and totally free for anyone for any purpose :)

Re: Plotly.py 5.0

#18
What do people here think of plotly when compared to matplotlib? I've read through some of the api documentation and have created graphs with the latter, but don't have much experience with plotly.

Re: Plotly.py 5.0

#20

What do people here think of plotly when compared to matplotlib? I've read through some of the api documentation and have created graphs with the latter, but don't have much experience with plotly.

It's really nice for exploring data. I find whenever I have ~5+ series on a single axis on mpl I start to struggle to differentiate colours & lines etc. I sort of addressed that by getting creative with dash styles etc, but still it's not ideal. Plotly is much more dynamic & I love the call outs etc. I do find it much less intuitive and less well documented than mpl and it's fussy about the shape of the data you give it. Maybe this new version improves on those things.
Post reply on HN