gpt4 book ai didi

python - 带有颜色图的散点图使 X 轴消失

转载 作者:太空狗 更新时间:2023-10-29 22:28:46 25 4
gpt4 key购买 nike

我想散点图以下 pandas.DataFrame 的前两列,第三列作为颜色值。

>>>df = pd.DataFrame({'a': {'1128': -2, '1129': 0, '1146': -4, '1142': -3, '1154': -2,
'1130': -1, '1125': -1, '1126': -2, '1127': -5, '1135': -2},
'c': {'1128': 5300, '1129': 6500, '1146': 8900, '1142': 8900,
'1154': 9000, '1130': 5600, '1125': 9400, '1126': 6000, '1127': 7200,
'1135': 7700}, 'b': {'1128': -3, '1129': -10, '1146': -6, '1142': -3,
'1154': -7, '1130': -2, '1125': -7, '1126': -7, '1127': 0, '1135': -1}}


>>>df
a b c
did
1125 -1 -7 9400
1126 -2 -7 6000
1127 -5 0 7200
1128 -2 -3 5300
1129 0 -10 6500
1130 -1 -2 5600
1135 -2 -1 7700
1142 -3 -3 8900
1146 -4 -6 8900
1154 -2 -7 9000

如果我尝试:

>>>df.plot('a', 'b', kind='scatter', color=df['c'], colormap='YlOrRd')

我明白了

Plot with no X axis

X 轴消失了。

我尝试了 ax.set_axis_on()ax.axis('on') 但没有成功。

最佳答案

您可以使用sharex=False:

df.plot('a', 'b', kind='scatter', color=df['c'], colormap='YlOrRd', sharex=False)

想法来自 github .

graph

关于python - 带有颜色图的散点图使 X 轴消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48187280/

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