Results 1 issues of Kemal Dahha

Hi, I try to run the code below (Example 1 from the [StackingClassifier documentation](https://rasbt.github.io/mlxtend/user_guide/classifier/StackingClassifier/)): ```python from sklearn import datasets iris = datasets.load_iris() X, y = iris.data[:, 1:3], iris.target from sklearn...