为什么会这样:
1.4em/1.4em
但是import pandas as pd
import matplotlib.pyplot as plt
df = pd.DataFrame({
'A':{'A':1,'B':2,'C':3},
'B':{'A':4,'B':5,'C':6},
'C':{'A':7,'B':8,'C':9}})
plt.pcolor(df)
不起作用?具体来说,我得到了这个错误:
plt.pcolormesh(df)
我更喜欢AttributeError: 'DataFrame' object has no attribute 'ravel'
而不是pcolormesh
,因为它更快。我了解here我可以做pcolor
,但我仍然很想知道为什么plt.imshow(df, interpolation='nearest')
无效。