LogoLogo
Log InSign UpHomepage
  • đź‘‹Welcome
  • Account and Team Setup
    • Sign up
    • Subscription Plans
    • Profile information
    • Account information
    • Roles
    • Users
    • Tags
    • Logs
  • FAQ
  • UNDERSTANDING MACHINE LEARNING
    • What is Graphite Note?
      • Graphite Note Insights Lifecycle
    • Introduction to Machine Learning
      • What is Machine Learning
      • Data Analitycs Maturity
    • Machine Learning concepts
      • Key Drivers
      • Confusion Matrix
      • Supervised vs Unsupervised ML
  • Demo datasets
    • Demo Datasets
      • Ads
      • Churn
      • CO2 Emission
      • Diamonds
      • eCommerce Orders
      • Housing Prices
      • Lead Scoring
      • Mall Customers
      • Marketing Mix
      • Car Sales
      • Store Item Demand
      • Upsell
    • What Dataset do I need for my use case?
      • Predict Cross Selling: Dataset
      • Predict Customer Churn: Dataset
      • Predictive Lead Scoring: Dataset
      • Predict Revenue : Dataset
      • Product Demand Forecast: Dataset
      • Predictive Ads Performance: Dataset
      • Media Mix Modeling (MMM): Dataset
      • Customer Lifetime Value Prediction : Dataset
      • RFM Customer Segmentation : Dataset
    • Dataset examples - from online sources
      • Free datasets for Machine Learning
  • Datasets
    • Introduction
    • Prepare your Data
      • Data Labeling
      • Expanding datasets
      • Merging datasets
      • CSV File creating and formatting
    • Data sources in Graphite Note
      • Import data from CSV file
        • Re-upload or append CSV
        • CSV upload troubleshooting tips
      • MySQL Connector
      • MariaDB Connector
      • PostgreSQL Connector
      • Redshift Connector
      • Big Query Connector
      • MS SQL Connector
      • Oracle Connector
  • Models
    • Introduction
    • Preprocessing Data
    • Machine Learning Models
      • Timeseries Forecast
      • Binary Classification
      • Multiclass Classification
      • Regression
      • General Segmentation
      • RFM Customer Segmentation
      • Customer Lifetime Value
      • Customer Cohort Analysis
      • ABC Pareto Analysis
      • New vs Returning Customers
    • Advanced ML model settings
      • Actionable insights
      • Advanced parameters
      • Model Overview
      • Regressors
      • Model execution logs
    • Predict with ML Models
    • Improve your ML Models
  • Notebooks
    • What is Notebook?
    • My first Notebook
    • Data Visualization
  • REST API
    • API Introduction
    • Dataset API
      • Create
      • Fill
      • Complete
    • Prediction API
      • Request v1
        • Headers
        • Body
      • Request v2
        • Headers
        • Body
      • Response
      • Usage Notes
    • Model Results API
      • Request
        • Headers
        • Body
      • Response
      • Usage Notes
      • Code Examples
    • Model Info API
      • Request
        • Headers
        • Body
      • Response
      • Usage notes
      • Code Examples
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Models
  2. Advanced ML model settings

Regressors

What Are Regressors in Time Series Forecasting?

In machine learning, regressors (also called external regressors or exogenous variables) are additional features that help improve the accuracy of a model’s predictions. They represent outside influences—factors that may not be part of your target or time column, but that still affect the outcome you’re trying to forecast.

For time series models, regressors are often used to account for real-world conditions that can influence trends. These might include:

  • Marketing Spend (e.g., ad campaigns that drive demand)

  • Weather Conditions (e.g., temperature affecting ice cream sales)

  • Holiday Flags or Events (e.g., Black Friday spikes)

  • Competitor Pricing or economic indicators

  • Stock Levels, seasonal promotions, or other business-specific signals


Why Use Regressors?

Adding regressors allows your time series model to go beyond simply looking at past values. Instead, it starts to understand the why behind patterns. Benefits include:

  • Improved Forecast Accuracy: The model can better explain variations in the data.

  • Causal Insights: You get clearer visibility into which external factors are driving changes.

  • Smarter Planning: You can simulate what might happen if certain inputs (like budget or weather) change in the future.


When Should You Use Regressors?

Use regressors when:

  • You know that external factors strongly affect the target value.

  • You want to improve your forecast by modeling the impact of these factors.

  • You can provide future values for the regressors during prediction (important!).

For example, if you’re forecasting product demand and you know that advertising spend or pricing will change next month, including those as regressors gives the model a much better chance of anticipating that change.

You can select up to 5 regressor columns when training your Time series model in Graphite Note.

Once a model includes regressors, it requires future values of those regressors to make forecasts. Because entering those values manually in the UI isn’t practical, forecasts for Graphite Note models with regressors can only be generated via the Prediction API.

PreviousModel OverviewNextModel execution logs

Last updated 2 days ago

Was this helpful?