feature-engine — Easy Examples
Feature engineering and selection for scikit-learn pipelines
Getting started with feature-engine
Installation and basic usage of feature-engine.
python
# Install: pip install feature-engine import feature_engine # Basic feature-engine usage print(f"Using feature-engine") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: feature_engine)
feature-engine is a third-party package. Feature engineering and selection for scikit-learn pipelines. Install with: pip install feature-engine
Common feature-engine operations
Frequently used features of feature-engine.
python
# Install: pip install feature-engine import feature_engine # Common feature-engine patterns print(f"feature-engine version: {feature_engine.__version__}")
These are the most commonly used features of feature-engine in everyday development.
Want to try these examples interactively?
Open Easy Playground