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
x
4
1
pd.options.plotting.backend = "matplotlib"
2
df = pd.DataFrame({"a": [1,2,3,4], "b": [4,3,1,2]})
3
df.plot(style={"a":"--", "b":"-"})
4
which allows me to select the linestyle for each column. The output is:
Plotly backend:
With plotly I can do
JavaScript
1
4
1
pd.options.plotting.backend = "plotly"
2
df = pd.DataFrame({"a": [1,2,3,4], "b": [4,3,1,2]})
3
df.plot()
4
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
1
3
1
fig = df.plot()
2
fig.data[0].line.dash = 'dash'
3
And you’ll get:
Other options are:
JavaScript
1
2
1
['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot']
2
Complete code:
JavaScript
1
7
1
import pandas as pd
2
pd.options.plotting.backend = "plotly"
3
df = pd.DataFrame({"a": [1,2,3,4], "b": [4,3,1,2]})
4
fig = df.plot()
5
fig.data[0].line.dash = 'dash'
6
fig.show()
7