Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

plotly vertical bar chart

import plotly.express as px
df = px.data.tips()
fig = px.bar(df, x="total_bill", y="day", orientation='h')
fig.show()
Source by plotly.com #
 
PREVIOUS NEXT
Tagged: #plotly #vertical #bar #chart
ADD COMMENT
Topic
Name
7+4 =