要使用Plotly的Histogram类,可以按照以下步骤操作:
import plotly.graph_objs as go
data = [1, 1, 2, 3, 4, 4, 4, 5, 6]
histogram = go.Histogram(x=data)
layout = go.Layout(title='Histogram Plot', xaxis=dict(title='Value'), yaxis=dict(title='Frequency'))
fig = go.Figure(data=[histogram], layout=layout)
fig.show()
通过上述步骤,您就可以使用Plotly的Histogram类创建直方图并显示在Jupyter Notebook或Web应用程序中。您还可以根据需要调整直方图的样式、颜色等属性。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Plotly怎么获取图表架构信息