Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 Python 制作一个 imshow 图。
在最后的情节中,我有数据条/列,它们之间根本没有数据——有点像条形码。
目前,我没有数据,我只是将所有值设置为零。因此,这些无数据区域的颜色是我的颜色栏中代表零的任何颜色 - 在我的情况下为绿色。
我真正想要的是这些列/条只是白色的,并真正清楚地表明这些是没有数据的区域。
我意识到我可以更改颜色条以使零为白色,但我真的想将没有数据的区域与数据中可能存在的任何零区分开来。
谢谢你。
尝试将这些值设置为np.nan( 或float('nan'));您可能还想作为参数传递interpolation='nearest'给。imshow
np.nan
float('nan')
interpolation='nearest'
imshow