标签: python pandas visualization
有没有办法使用Pandas在Python中创建funnel plot? documentation似乎没有相关的东西。
答案 0 :(得分:0)
迟到总比没有好。 使用 plotly ,您可以执行渠道。这是一个简单的示例https://plot.ly/python/funnel-charts/
答案 1 :(得分:0)
到目前为止,我发现最好的解决方案是使用 matplotlib 库和 pandas 创建分段水平条形图。您需要添加一个虚拟类别才能将类别移动到中心。可以在here中找到详细的说明。
如果要使用非分段的条形图,则还有另一种解决方案,可以创建该函数,有关更多详细信息,请参见here。