@@ -73,7 +73,7 @@ This package contains everything you need to write figures to standalone HTML fi
7373
7474``` python
7575import plotly.express as px
76- fig = px.bar(x = [" a" , " b" , " c" ], y = [1 ,2 , 3 ])
76+ fig = px.bar(x = [" a" , " b" , " c" ], y = [1 , 3 , 2 ])
7777fig.write_html(' first_figure.html' , auto_open = True )
7878```
7979
@@ -129,15 +129,15 @@ and display plotly figures inline using the `plotly_mimetype` renderer...
129129
130130``` python
131131import plotly.express as px
132- fig = px.bar(x = [" a" , " b" , " c" ], y = [1 ,2 , 3 ])
132+ fig = px.bar(x = [" a" , " b" , " c" ], y = [1 , 3 , 2 ])
133133fig.show()
134134```
135135
136136or using ` FigureWidget ` objects.
137137
138138``` python
139139import plotly.express as px
140- fig = px.bar(x = [" a" , " b" , " c" ], y = [1 ,2 , 3 ])
140+ fig = px.bar(x = [" a" , " b" , " c" ], y = [1 , 3 , 2 ])
141141
142142import plotly.graph_objects as go
143143fig_widget = go.FigureWidget(fig)
@@ -184,15 +184,15 @@ and display plotly figures inline using the notebook renderer...
184184
185185``` python
186186import plotly.express as px
187- fig = px.bar(x = [" a" , " b" , " c" ], y = [1 ,2 , 3 ])
187+ fig = px.bar(x = [" a" , " b" , " c" ], y = [1 , 3 , 2 ])
188188fig.show()
189189```
190190
191191or using ` FigureWidget ` objects.
192192
193193``` python
194194import plotly.express as px
195- fig = px.bar(x = [" a" , " b" , " c" ], y = [1 ,2 , 3 ])
195+ fig = px.bar(x = [" a" , " b" , " c" ], y = [1 , 3 , 2 ])
196196
197197import plotly.graph_objects as go
198198fig_widget = go.FigureWidget(fig)
0 commit comments