Simply ML

What is Multiple Regression?

Multiple Linear Regression extends simple regression by allowing you to predict a continuous outcome variable (Y) based on multiple predictor variables (X₁, X₂, X₃, ...). The equation is: Y = β₀ + β₁X₁ + β₂X₂ + ... + βₙXₙ + ε

When to Use Multiple Regression

How to Use in Simply ML

  1. Load Your Data: Click "Select File" or drag and drop your CSV/Excel file
  2. Select Model: Choose "Multiple Regression" from the ML Model dropdown
  3. Choose Y Variable: Select the variable you want to predict
  4. Choose X Variables: Check multiple predictor variables from the list
  5. Set Train/Test Split: Default is 80% training, 20% testing
  6. Click Run: The model will train and show diagnostic plots

Understanding the Results

Visualizations:

Key Metrics:

Regression Coefficients Table

The coefficients table shows:

Making Predictions

After running the model, enter comma-separated values for all your X variables in order (e.g., "1500, 3, 2, 10" for size, bedrooms, bathrooms, age) and click "Predict".

Tips & Best Practices