Skip to content

Terminology: Multiple Regression versus multivariate Regression

4 messages · strinz at freenet.de, (Ted Harding), Peter Dalgaard +1 more

#
Hello R-Members,

can anyone explain the difference between
multiple and multivariate regression to me 
in terms of the terminology and eventually 
its respect to the mathematical foundation 
respectively ?

Is multiple regression perhaps more related to GLM
and multivariate Regression rather applied,
if there are no explizit numeric factor levels ?

Thanks for elucidations on that topic.

Many thanks and best regrads
Bjoern




Heute schon ge"freeMail"t?
Jetzt kostenlose E-Mail-Adresse sichern!
http://email.freenet.de/dienste/emailoffice/produktuebersicht/basic/mail/index.html?pid=6831
#
On 24-Apr-09 08:14:34, strinz at freenet.de wrote:
This is indeed a question of terminology and usage, and there
is a degree of variability in it.

As far as I am concerned (and others, though not all), "multivariate
regression" refers to regression where the dependent ("outcome")
variable is mutltivariate:

  Y ~ X

where each instance of Y is a multivariate observation. For example,
suppose G (growth) consists of two pieces of data: height and weight,
and A is Age. Then a multivariate regression model would look like

  G ~ A  or  (Ht,Wt) ~ Age

(two variables on the left, one variable on the right). This allows
for correlation between Ht and Wt to be part of the model.

What is generally meant by "multiple regression" is regression
of a single variable (on the left) on more than one variable
(on the right), for example

  Wt ~ Ht + Age

If you must make a distinction, there is the term "simple regression"
(nowadays rarely used) for when there is only one variable on the right:

  Wt ~ Age

Whether this is a linear model (use lm()) or a generalised linear
model (use glm()) has nothing to do with the termonology.

There is an unfortunate (in my view) tendency for people to use
"multivariate regression" whden talking about what I call "multiple
regression" above (i.e. more than 1 independent variable). I think
this should be reserved for regression where the left-hand side is
multivariate.

But maybe I'm in a minority ...
Ted.

--------------------------------------------------------------------
E-Mail: (Ted Harding) <Ted.Harding at manchester.ac.uk>
Fax-to-email: +44 (0)870 094 0861
Date: 24-Apr-09                                       Time: 10:00:23
------------------------------ XFMail ------------------------------
#
(Ted Harding) wrote:

            
If so, a minority of at least two...

Part of the problem is that people will often (for better or worse)
screen a set of predictors by "univariate regression", which should
probably be the rather less catchy "single-predictor regression". (As
far as I remember, SPSS, "canonicalizes" the term in its menu system.)
#
Peter Dalgaard wrote:
Another approach (maybe more correct?) that I have seen in some papers, 
is to use "multivariable regression" for more than one predictors, and 
"univariable regression" for just a single one.


Best,
Dimitris