Linear Regression Calculator

Find the y = ax + b line of best fit with this free online linear regression calculator

Accepts csv, parquet, arrow, json and tsv


How to perform linear regression online

Linear regression
  1. Upload your dataset
  2. Use the inputs on the left to configure the regression
  3. The regression analysis will be performed
  4. Download, share or embed the results

Supercharge your data exploration

Open csv, parquet, arrow, json and tsv files straight from your desktop

Or


Share and embed

Share your graphs and data sets.

Share your graphs and data sets. Or embed them directly into web pages.


Work straight from Google Drive

Open csv, parquet, arrow, json and tsv files directly from Drive, Gmail and Classroom by installing the Google Workspace App

This linear regression calculator uses a straight line to model the relationship between two input variables.

Linear Regression is useful when there appears to be a straight-line relationship between your input variables.

When to use linear regression

This linear regression calculator is useful when you want to perform regression analysis and there appears to be a straight-line relationship between your input variables.

A scatter plot can be useful for taking a first look at the data for relationships.

The polynomial regression calculator is useful if the relationship appears to be a polynomial. The exponential regression calculator is useful if the relationship looks like an exponential curve.

A linear regression model describes the relationship between a predictor (xx) and a response variable (yy) as a linear equation. Sometimes the predictor is called the independent variable and the response is called the dependent variable.

The first order simple linear regression equation looks like:

y=ax+by = ax + b

Where

  • aa is the gradient of the line of best fit,
  • bb is the y intercept fo the line of best fit

Sometimes the gradient is called the slope coefficient and the intercept is called the intercept coefficient.

This linear regression calculator only calculates a linear line of best fit like the one above.

Linear regression models can also fit polynomials. E.g. the second order simple linear regression formula looks like:

y=ax2+bx+cy = ax^2 + bx + c

The regression line equation also generalizes to the nth power:

y=anxn+...+a1x+by = a_nx^n + ... + a_1x + b

What is a Prediction Interval

Regression models provide an estimate for the y values given x values. Sometimes the uncertainty of the prediction can be modeled, this is called a prediction interval.

The prediction interval shows the range of y values that the model believes would occur for an x value. The interval is often stated as a confidence interval.

For example, the predicted value of y for a given x could be 10 with a 95% chance that it is between 8 and 12. The prediction interval is [8, 12].

What Is the Difference Between Linear and Quadratic Regression

The difference between linear and quadratic regression depends on whether you are interested in the regression equation, or the shape of the line of best fit.

Fitting a quadratic line of best fit to input data is often considered quadratic regression.

The regression equation for fitting a quadratic function or a straight line is shown below.

y=anxn+...+a1x+by = a_nx^n + ... + a_1x + b

Notice how the predicted dependent variable y is made from a linear combination of the regression coefficients (the a's) and the predictor variable xx. This means that the regression model for linear and quadratic regression is linear.

Statisticians consider both Linear and quadratic regression analysis to be linear because they both use a linear model to find the line of best fit.

What are the Assumptions of Linear Regression

A Linear regression model makes four assumptions about the input data:

  1. The relationship between the independent variable x and the dependent variable y is linear.
  2. The variance of the residual of the fit model is the same for any value of x. This can be checked with a residual plot.
  3. The input x, y data points are independent of each other
  4. For any fixed value of the predictor xx, the response y is normally distributed

Linear Regression Prediction

After you have fit a model to input data, you can predict the value of new points. Prediction works best when the model fits the data well (r squared value close to 1) and the new data point is close to data points that were in your input data set.

To manually make a prediction without using a calculator you can pick a value on the regression line.

Confidence Interval of the Prediction

Sometimes it is useful to know how confident the regression model is in its prediction. If the regression assumptions hold for the input data set, then it is possible to calculate a confidence interval for predictions.