prophetEasy Examples

Facebook's time series forecasting with seasonality and holidays

Getting started with prophet

Installation and basic usage of prophet.

python
# Install: pip install prophet
import prophet

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

prophet is a third-party package. Facebook's time series forecasting with seasonality and holidays. Install with: pip install prophet

Common prophet operations

Frequently used features of prophet.

python
# Install: pip install prophet
import prophet

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

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

Want to try these examples interactively?

Open Easy Playground