Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a histogram with plotly for a single variable

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