Bivariate

From Rice Wiki
Revision as of 06:24, 19 March 2024 by Admin (talk | contribs)

Bivariate data consider two variables instead of the usual one; each value of one of the variables is paired with a value of the other variable. We will be using to denote the two random variables throughout this page.

Summary Statistics

To summarize bivariate data, we use covariance and correlation in addition to the statistics detailed in Summary Statistics.

Covariance

The covariance measures the total variation of two RVs and their centers. It indicates the relationship of two variables whenever one changes, measuring how much the two vary together.

We have sample covariance

A good way of thinking about covariance is by cases:

If x increases as y increases, the signs of both terms of the covariance calculation is the same. Therefore, covariance is positive.

If x decreases as y increases, the signs are different. Therefore, covariance is negative.

If x does not clearly vary with y, the signs are sometimes different, sometimes the same. Overall, it should cancel out to zero.

Correlation

The correlation of two random variables measures the line dependent between and

Correlation is always between -1 and 1. When r = 1, the relationship between X and Y is perfect positive linear. When r = -1, it is perfect negative linear. If it is 0, there is no linear relationship. This doesn't mean that there is no relationship. Notably, any symmetric scatter plot has a correlation of 0.

Bivariate Normal

The bivariate normal (aka. bivariate gaussian) is one special type of continuous random variable.

is bivariate normal if

  1. The marginal PDF of both X and Y are normal
  2. For any , the condition PDF of given is Normal
    • Works the other way around: Bivariate gaussian means that condition is satisfied

Predicting Y given X

Given bivariate normal, we can predict one variable given another. Let us try estimating the expected Y given X is x

There are three main methods

  • Scatter plot approximation
  • Joint PDF
  • 5 statistics

5 Parameters

We need to know 5 parameters about and

If follows bivariate normal distribution, then we have

The left side is the predicted Z-score for Y, and the right side is the product of correlation and Z-score of X = x

The variance is given by

Due to the range of , the variance of Y given X is always smaller than the actual variance. The standard deviation is just rooted that.

Regression Effect

Regression effect demonstrated by SD line and Regression line

The regression effect is the phenomenon that the best prediction of given is less rare for than ; Future predictions regress to mediocrity.

When you plot all the predicted , you get the linear regression line. The regression effect can be demonstrated by also plotting the SD line (where the correlation is not applied).

Linear Regression

Assumption

  1. X and Y have a linear relationship
  2. A random sample of pairs was taken
  3. All pairs of data are independent
  4. The variance of the error is constant.
  5. The average of the errors is zero.
  6. The errors are normally distributed.

Procedure

where the are regression coefficients (slope, intercept) based on the population, and is error for the i-th subject.

We want to estimate the regression coefficients.

Let be an estimation of ; a prediction at , with

We can measure the vertical error

The overall error is the sum of squared errors . The best fit line is the line minimizing SSE.

Using calculus, we can find that the line has the following scope and intercept:

where is the strength of linear relationship, and is the deviations of the sample. They are basically the sample versions of

Interpretation

(the slope) is the estimated change in when changes by one unit.

(the intercept) is the estimated average of when . If cannot be 0, this may not have a practical meaning.

(coefficient of determination) measures how good the line fits the data.

The bottom is total variance. The top is reduced. The value is the proportion of variance in that is explained by the linear relationship between and .