簡體   English   中英

如何在 plot 和顏色映射表之間設置空間(python)

[英]How to set space between plot and colormap table (python)

我正在使用輔助 y 軸和 cmap 顏色,但是當我將 plot 一起使用時,顏色條交叉到我的 plot

這是我的代碼

fig,ax1=plt.subplots()


ax1 = df_Combine.plot.scatter('Parameter2', 'NPV (MM €)', marker='s', s=500,   ylim=(-10,60),  c='Lifetime1 (a)', colormap='jet_r', vmin=0, vmax=25, ax=ax1)
graph.axhline(0, color='k')
plt.xticks(rotation=90)


ax2 = ax1.twinx()
ax2.plot(df_Combine_min_select1["CumEnergy1 (kWH)"])


plt.show()

這是我的陰謀

在此處輸入圖像描述

任何人都可以幫助如何解決這個問題?

謝謝

當您讓 pandas 自動創建顏色條時,您沒有定位選項。 因此,您可以在單獨的步驟中創建顏色條並提供pad=參數來設置更寬的間隙。 默認情況下, pad0.05 ,表示子圖寬度的 5%。

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

fig, ax1 = plt.subplots()

df_Combine = pd.DataFrame({'Parameter2': np.random.rand(10) * 10,
                           'NPV (MM €)': np.random.rand(10),
                           'Lifetime1 (a)': np.random.rand(10) * 25,
                           })
ax1 = df_Combine.plot.scatter('Parameter2', 'NPV (MM €)', marker='s', s=500, ylim=(-10, 60), c='Lifetime1 (a)',
                              colormap='jet_r', vmin=0, vmax=25, ax=ax1, colorbar=False)
plt.colorbar(ax1.collections[0], ax=ax1, pad=0.1)

ax2 = ax1.twinx()
ax2.plot(np.random.rand(10))

plt.show()

示例圖

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM