6月8日日记
matplotlib.pyplot as pltimport seaborn as sns import numpy as np from matplotlib.colors import LinearSegmentedColormap # 数据 data = np.array([ [0.89, 0.21, 0.15], [0.87, 0.18, 0.12], [0.85, 0.23, 0.11], [0.25, 0.82, 0.19], [0.18, 0.79, 0.22], [0.21, 0.75, 0.17], [0.13, 0.24, 0.68], [0.11,...
more...