Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

histogram chart plotly

import plotly.express as px
df = px.data.tips()
fig = px.histogram(df, x="total_bill", nbins=20)
fig.show()
Source by plotly.com #
 
PREVIOUS NEXT
Tagged: #histogram #chart #plotly
ADD COMMENT
Topic
Name
4+6 =