Python-jupyter笔记本上的绘图图问题

时间:2020-07-14 14:35:22

标签: python jupyter-notebook plotly

我正在jupyter笔记本上绘制一个图。 实际图形应如下所示。enter image description here

但是,我明白了。 请我如何纠正这个问题。 enter image description here

请参见以下代码:

# Setting layout for our plot
layout = go.Layout(
    title='Stock Prices of Tesla',
    xaxis=dict(
        title='Date',
        titlefont=dict(
            family='Courier New, monospace',
            size=18,
            color='#7f7f7f'
        )
    ),
    yaxis=dict(
        title='Price',
        titlefont=dict(
            family='Courier New, monospace',
            size=18,
            color='#7f7f7f'
        )
    )
)

tesla_data = [{'x': tesla['Date'], 'y': tesla['Close']}]
plot = go.Figure(data=tesla_data, layout=layout)
#plot(plot) #plotting offline
iplot(plot)

请查看我的数据快照 enter image description here

0 个答案:

没有答案