-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Description
Plotting offline in Jupyter Lab produces a line chart instead of a bar chart.
Using this code in Jupyter Lab (0.27.0):
import plotly.plotly as py
import plotly.graph_objs as go
from plotly.offline import init_notebook_mode, iplot
init_notebook_mode(connected=True)
data = [go.Bar(
x=['giraffes', 'orangutans', 'monkeys'],
y=[20, 14, 23]
)]
iplot(data, filename='basic-bar')
Metadata
Metadata
Assignees
Labels
No labels