Skip to content
Advertisement

Plotly: How to add trendline to a bar chart?

I am trying to add trendline to bar plot which is plotted by plotly

Code:

JavaScript

Error:

JavaScript

Here is the data

How can I add a trendline successfully to this plot?

Advertisement

Answer

px.bar has no trendline method. Since you’re trying trendline="ols" I’m guessing you’d like to create a linear trendline. And looking at your data, a linear trendline might just not be the best description of your dataset:

enter image description here

So you’ll have to add a trendline yourself. You can still have your bar chart using go.Bar, but maybe consider displaying the trendline as a line and not more bars.

A closer look into scikit or statsmodels should be well worth your while regarding non-linear trends. One simple approach is to estimate a log-linear trend after a recoding of your dataset. You’ll see that this ‘captures’ the exponential increase of your variable better than a simple linear trend does:

enter image description here

But is that good enough? I’ll let that decision be up to you. And as I’ve said, you should take a closer look at the linked resources.

Code for plot 1:

JavaScript

Code for plot 2:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement