In [1]:
from pml.api import *

In [2]:
data = load("iris.csv")

In [3]:
data.num_samples()


Out[3]:
150

In [4]:
data.feature_list()


Out[4]:
['sepal_length', 'sepal_width', 'petal_length', 'petal_width']

In [5]:
data.plot_radviz()



In [ ]: