File size: 242 Bytes
42ee455
 
 
 
b699ae9
 
 
 
 
 
 
 
42ee455
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import vizro.plotly.express as px

tips = px.data.tips()

fig = px.histogram(
    tips,
    y="day",
    x="total_bill",
    color="sex",
    barmode="group",
    orientation="h",
    category_orders={"day": ["Thur", "Fri", "Sat", "Sun"]},
)