4
私は色をいくつかの配列にプロットしようとしていて、値の一部をnp.nan(解釈しやすいように)に変換してプロットしたとき(白?)、カラーバー。プロットの色NaNの値
#this is before converted to nan
array = np.random.rand(4,10)
plt.pcolor(array)
plt.colorbar(orientation='horizontal')
#conditional value converted to nan
array = np.random.rand(4,10)
array[array<0.5]=np.nan
plt.pcolor(array)
plt.colorbar(orientation='horizontal')
任意の提案?