I was trying to load the iris dataset using panda.
I did the fllowing:
import pandas as pd
iris= pd.read_csv("data_path/iris.csv")
However this is not in matrix form and I cannot access elements like iris[0][2]
.
I'm wondering how to transform the the csv file into a say numpy array?