sktimeEasy Examples

Time series machine learning: classification, regression, forecasting

Getting started with sktime

Installation and basic usage of sktime.

python
# Install: pip install sktime
import sktime

# Basic sktime usage
print(f"Using sktime")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: sktime)

sktime is a third-party package. Time series machine learning: classification, regression, forecasting. Install with: pip install sktime

Common sktime operations

Frequently used features of sktime.

python
# Install: pip install sktime
import sktime

# Common sktime patterns
print(f"sktime version: {sktime.__version__}")

These are the most commonly used features of sktime in everyday development.

Want to try these examples interactively?

Open Easy Playground