If I use from sklearn import * or from skleanr import datasets, then I can use datasets in the following way: iris = datasets.load_iris().
However, import sklearn and import sklearn as sk do not work as I expect. For example I cannot use sklearn.datasets.import_iris() or sk.datasets.import_iris(). Do I misinterpret the import syntax? And it it is the case, what is the correct way to use import.