gpt4 book ai didi

python - 按两个标准分组的直方图 [python]

转载 作者:太空宇宙 更新时间:2023-11-03 15:45:29 25 4
gpt4 key购买 nike

我有一个这样的数据集: enter image description here

我需要根据两个标准绘制此数据集:Churn 和 Cust_Value。

我可以使用seaborn做到这一点:

sns.barplot(x="Cust_Value", y="value", hue="Churn", data=merged)
plt.show()

结果给了我: enter image description here

如何将所有变量(值、年龄、重新加载、通话、持续时间、短信、gprs、非事件)添加到同一图表中作为条形图组?

最佳答案

对于这种输出,我建议使用plotly,

import plotly.plotly as py
import plotly.graph_objs as go

trace1 = go.Bar(
x=DF['Cust_Value'],
y=DF['value'],
name='value'
)
trace2 = go.Bar(
x=DF['Cust_Value'],
y=DF['age'],
name='age'
)
trace3 = go.Bar(
x=DF['Cust_Value'],
y=DF['calls'],
name='calls'
)

data = [trace1, trace2, trace3]
layout = go.Layout(
barmode='group'
)

fig = go.Figure(data=data, layout=layout)
py.iplot(fig, filename='grouped-bar')

示例输出:

enter image description here

引用:https://plot.ly/python/bar-charts/

希望对你有帮助!

如果它确实赞成:)

和平

关于python - 按两个标准分组的直方图 [python],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41790687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com