I am trying to convert this Python code section to pandas dataframe:
iris = datasets.load_iris()
x = iris.data
y = iris.target
I will like to import Iris data on my local machine instead of loading the data from Scikit library. Your kind suggestions would be highly appreciated.