dmib
Results
1
issues of
dmib
Step to reproduce: ``` import plotly.express as px tips = px.data.tips() tips = tips[tips["size"].isin([1,4,6])] fig = px.histogram(tips, x="size", y="tip", histfunc='count') fig.show() ``` output:  expect result:  Thanks.