dic={-0.018273:"cluster0",0.473295:"cluster2",30.07545:"cluster1",0.05741:"cluster0"}
如果我的字典如上所述,但有很多元素,我使用下面的python代码来绘制它
import matplotlib.pyplot as plt
plt.hist(data.keys(),bins=20)
plt.show()
颜色对应于字典的值
例如: 红色代表cluster0和 blue代表cluster1
我应该对代码做出哪些更改?