funnel() got an unexpected keyword argument 'is_vertical'
时间: 2023-07-31 08:08:08 浏览: 71
funnel_potential:NAMD tclforces实施漏斗电位
如果你使用的是较早的版本的 plotly.express 库,可能不支持 `is_vertical` 参数,这时你可以使用 `orientation` 参数来实现漏斗图的竖向展示。
具体来说,你需要将 `orientation` 参数设置为 `"v"`,示例如下:
```
import plotly.express as px
data = dict(
number=[1000, 600, 400, 200],
stage=["访问网站", "注册账号", "付款", "购买"]
)
fig = px.funnel(data, x="number", y="stage", orientation="v")
fig.show()
```
在上述代码中,`orientation="v"` 参数指定漏斗图竖向展示。
阅读全文