Back to the iris example, we now store the first two features (columns) of the observations as X and the target as y, a convention in the machine learning community:
X = iris.data[:, :2] y = iris.target