ExamplesΒΆ
Transforming Features In The Iris Dataset
This is a version of part of thesklearn
example Feature importances with forests of trees. It illustrates retaining the semantic meaning of features as they are transformed.
Feature Importance In The Iris Dataset
This is a version of thesklearn
example Feature importances with forests of trees. It illustrates the consistent use ofpandas
data structures throughout the process.
Plotting Cross-Validated Predictions In The Boston Dataset
This is a version of thesklearn
example Plotting Cross-Validated Predictions. It further illustrates the consistent use ofpandas
data structures andseaborn
, as well as usingibex.xgboost
.
Confidence Intervals In The Digits Dataset
This is a version of thesklearn
example Pipelining: chaining a PCA and a logistic regression. It illustrates the use of pipelines.
Simple Row-Aggregating Features In The Movielens Dataset
This shows how to usepandas
-munging estimators utilizing features which span multiple rows (instances). Pandas excels (no pun intended) in these kinds of operations.
Nonnegative Matrix Farcotization In The Movielens Dataset
This shows how to usepandas
-munging estimators utilizing features which span multiple rows (instances), this time using nonnegative matrix factorization.
Tensorflow/Keras Classification In The Iris Dataset
This example shows how to useibex.tensorflow.contrib.keras.wrappers.scikit_learn.KerasClassifier
.