We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
df = pd.DataFrame({'A': [1, 2], 'B': [3, 4]}) c = np.array([1, 0]) df.plot(kind='scatter', x='A', y='B', c=c, cmap='spring')
fails with a TypeError.
we check elif c in self.data.columns which tries to hash the array.
elif c in self.data.columns
(I know I can just add the array as a column to the DataFrame)