要使用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類創(chuàng)建直方圖并顯示在Jupyter Notebook或Web應(yīng)用程序中。您還可以根據(jù)需要調(diào)整直方圖的樣式、顏色等屬性。