I run the following code, and get the following error:
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import pandas as pd
wines = pd.read_csv('Wine.csv')
plt.scatter(wines['alcohol'],wines['hue'],c=wines['class'])
plt.xlabel('alcohol')
plt.ylabel('hue')
plt.show()
And get the following error:
FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison if self._edgecolors == str('face'):
The graph still shows up, no problem...I'm not sure what is going on. Just updated my version of numpy, pandas, and matplotlib to the latest version available through anaconda...
How do I get rid of this error? I am not even aware that I am doing any elementwise comparisons...