【发布时间】:2020-06-16 17:05:33
【问题描述】:
我正在做 GUI,其中应该有一个带有以下情节的小部件:
import plotly.express as px
df = px.data.tips()
fig = px.box(df, x="day", y="total_bill", color="smoker")
fig.update_traces(quartilemethod="exclusive") # or "inclusive", or "linear" by default
fig.show()
你能提出一些建议吗?
【问题讨论】: