I'm getting the following error:
TypeError Traceback (most recent call last)
~/.local/share/miniconda3/lib/python3.6/site-packages/matplotlib/colors.py in to_rgba(c, alpha)
154 try:
--> 155 rgba = _colors_full_map.cache[c, alpha]
156 except (KeyError, TypeError): # Not in cache, or unhashable.
TypeError: unhashable type: 'numpy.ndarray'
The code in question is from a .ipynb downloaded from Coursera.
It works fine on their system, but it seems that I have a library versioning problem locally.
The code is:
plt.scatter(X[0, :], X[1, :], c=y, cmap=plt.cm.Spectral)