gpt4 book ai didi

pandas - 我应该使用哪种可视化图?

转载 作者:行者123 更新时间:2023-12-02 09:48:28 27 4
gpt4 key购买 nike

我有如下数据,我想创建像添加图片一样的绘图。我想像样例图一样可视化这些数据。我搜索了seaborn和matplotlib库,但找不到我想要的东西。

同样在示例图中,交点为 0。但我需要更改此点。例如,成本的交点为 30,服务的交点为 25。

有人可以帮我解决这个问题吗?

enter image description here

enter image description here

最佳答案

这是使用 matplotlib 的简单实现:

cost=[50,40,30,20,10]
service=[60,30,25,10,20]
fig, (ax) = plt.subplots()

ax.spines['left'].set_position(('data', 25))
ax.spines['bottom'].set_position(('data', 30))
# Eliminate upper and right axes
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')

ax.scatter(cost,service)

Output for above code snippet

您还可以引用:How to draw axis in the middle of the figure?

关于pandas - 我应该使用哪种可视化图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60447766/

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