Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

compare bayesian linear regression VS linear regression [closed]

Recently I learnt the bayesian linear regression model, but what I'm confused is that in which situation we should use the linear regression, and when to use the bayesian version. How about the performance of these two? And is the bayesian logistic regression and logistic regression the same? I read a paper about using bayesian probit regression to predict ads CTR, I just wonder why using bayesian version?

like image 535
FindBoat Avatar asked Nov 07 '12 22:11

FindBoat


People also ask

Why is Bayesian regression better than linear regression?

Doing Bayesian regression is not an algorithm but a different approach to statistical inference. The major advantage is that, by this Bayesian processing, you recover the whole range of inferential solutions, rather than a point estimate and a confidence interval as in classical regression.

What are some advantages to using Bayesian linear regression?

Bayesian linear regression allows a useful mechanism to deal with insufficient data, or poor distributed data. It allows you to put a prior on the coefficients and on the noise so that in the absence of data, the priors can take over.

What is Bayesian linear regression explain?

Bayesian linear regression is a type of conditional modeling in which the mean of one variable is described by a linear combination of other variables, with the goal of obtaining the posterior probability of the regression coefficients (as well as other parameters describing the distribution of the regressand) and ...

What is the advantage of the Bayesian approach?

A major advantage of the Bayesian MCMC approach is its extreme flexibility. Using MCMC techniques, it is straightforward to fit realistic models to complex data sets with measurement error, censored or missing observations, multilevel or serial correlation structures, and multiple endpoints.


1 Answers

In your two cases, linear regression and logistic regression, the Bayesian version uses the statistical analysis within the context of Bayesian inference, e.g., Bayesian linear regression.

Per wikipedia,

This (ordinary linear regression) is a frequentist approach, and it assumes that there are enough measurements to say something meaningful. In the Bayesian approach, the data are supplemented with additional information in the form of a prior probability distribution. The prior belief about the parameters is combined with the data's likelihood function according to Bayes theorem to yield the posterior belief about the parameters.

The usual way of Bayesian analysis (adding the Bayesian taste):

  1. Figure out the likelihood function of the data.
  2. Choose a prior distribution over all unknown parameters.
  3. Use Bayes theorem to find the posterior distribution over all parameters.

Why Bayesian version? [1]

  • Bayesian models more flexible, handles more complex models.
  • Bayesian model selection probably superior (BIC/AIC).
  • Bayesian hierarchical models easier to extend to many levels.
  • Philosophical differences (compared to frequentist analysis).
  • Bayesian analysis more accurate in small samples (but then may depend on priors).
  • Bayesian models can incorporate prior information

This hosts some good lecture slides about Bayesian analysis.

like image 91
greeness Avatar answered Sep 19 '22 20:09

greeness