Skip to content

Commit e15d722

Browse files
committed
fix pandas example
1 parent 0768685 commit e15d722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: doc/python/pandas-backend.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import pandas as pd
5555
pd.options.plotting.backend = "plotly"
5656

5757
df = pd.DataFrame(dict(a=[1,3,2], b=[3,2,1]))
58-
fig = df.plot(title=dict(text="Pandas Backend Example"), template="simple_white",
58+
fig = df.plot(title="Pandas Backend Example", template="simple_white",
5959
labels=dict(index="time", value="money", variable="option"))
6060
fig.update_yaxes(tickprefix="$")
6161
fig.show()

0 commit comments

Comments
 (0)