Skip to content
Advertisement

Select plot linestyle with plotly pandas backend

I want to be able to select the linestyle with the pandas plot method with the plotly backend.

Matplotlib:

When I use the matplotlib backend in pandas, I can do:

JavaScript

which allows me to select the linestyle for each column. The output is:

enter image description here

Plotly backend:

With plotly I can do

JavaScript

enter image description here

How can I select the linestyle of a given line (or even a single line), with the plotly backend?

Advertisement

Answer

In your example just use:

JavaScript

And you’ll get:

enter image description here

Other options are:

JavaScript

Complete code:

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