Open links in new tab
  1. Why are regression problems called "regression" problems?

    I was just wondering why regression problems are called "regression" problems. What is the story behind the name? One definition for regression: "Relapse to a less perfect or developed state."

  2. Difference between linear regression and neural network

    Nov 8, 2018 · Linear regression works from mathmatical formula through taking data points (inputs) and finding a formula (using formulae) - coefficients, weights, to fit a data model.

  3. regression - When is R squared negative? - Cross Validated

    Also, for OLS regression, R^2 is the squared correlation between the predicted and the observed values. Hence, it must be non-negative. For simple OLS regression with one predictor, this is equivalent to …

  4. correlation - What is the difference between linear regression on y ...

    The Pearson correlation coefficient of x and y is the same, whether you compute pearson(x, y) or pearson(y, x). This suggests that doing a linear regression of y given x or x given y should be the ...

  5. Why is Poisson regression used for count data?

    I understand that for certain datasets such as voting it performs better. Why is Poisson regression used over ordinary linear regression or logistic regression? What is the mathematical motivation ...

  6. Is Logistic Regression a classification or prediction model?

    Jun 30, 2023 · Explicitly, a logistic regression does no classification, instead returning predicted probabilities of event occurrence. However, the machine learning terminology seems to refer to …

  7. How to do 4-parametric regression for ELISA data in R

    I am a biology student. We do many Enzyme Linked Immunosorbent Assay (ELISA) experiments and Bradford detection. A 4-parametric logistic regression (reference) is often used for regression these …

  8. regression - Maximum likelihood method vs. least squares method

    What is the main difference between maximum likelihood estimation (MLE) vs. least squares estimaton (LSE) ? Why can't we use MLE for predicting $y$ values in linear ...

  9. Regression - What to do with insignificant variables?

    Sep 2, 2015 · What is the problem? What do you want to do? Will the model be used for prediction in the future, and avoid measuring those 8 variables will save money? If not, I cannot see any problem with …

  10. How do I fit a constrained regression in R so that coefficients total ...

    I see a similar constrained regression here: Constrained linear regression through a specified point but my requirement is slightly different. I need the coefficients to add up to 1. Specifically...