Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood...

47
Regression: Part II

Transcript of Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood...

Page 1: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Regression: Part II

Page 2: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Linear Regression

y~N X ,2

Data Model

Process Model

Parameter Model

Y

β , σ2

Β0,V

β s

1,s

2

X

Page 3: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Assumptions of Linear Model

● Homoskedasticity● No error in X variables● Error in Y variables is measurement error● Normally distributed error● Observations are independent● No missing data

Page 4: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Heteroskedasticity

Page 5: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Solutions

1) Transform the data

1) Pro: No additional parameters

2) Cons: No longer modeling the original data, likelihood & process model have different meaning, backtransformation non-trivial (Jensen's Inequality)

2) Model the variance

1) Pro: working with original data and model, no tranf.

2) Con: additional process model and parameters (and priors)

Page 6: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Heteroskedasticity

y~N 12 x ,12 x 2

Data Model

Process Model

Parameter Model

Y

β , α

Β0,V

β A

0,V

α

X

Page 7: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Example: Linear varying SD

y~N 12 x ,12 x 2

LnL = function(theta,x,y){ beta = theta[1:2] alpha = theta[3:4] -sum(dnorm(y,beta[1]+beta[2]*x,alpha[1]+alpha[2]*x,log=TRUE))}

model{ for(i in 1:2) { beta[i] ~ dnorm(0,0.001)} ## priors for(i in 1:2) { alpha[i] ~ dlnorm(0,0.001)} for(i in 1:n){

prec[i] <- 1/pow(alpha[1] + alpha[2]*x[i],2)mu[i] <- beta[1]+beta[2]*x[i]y[i] ~ dnorm(mu[i],prec[i])

}}

Bayes (WinBUGS)

Likelihood (R)

Page 8: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Likelihood

Page 9: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Bayes

Page 10: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Additional thoughts onmodeling variance

● Need not be linear● Can model in terms of sd, variance, or precision● Can vary with treatments/factors or categorical

variables– e.g. can relax the ANOVA assumptions of equal

variance among treatments

Page 11: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Assumptions of Linear Model

● Homoskedasticity● No error in X variables● Error in Y variables is measurement error● Normally distributed error● Observations are independent● No missing data

Page 12: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Errors in Variables

Regression model assumes all the error is in the Y

Often know there is non-negligable error in the measurement of X

Page 13: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Errors in Variables

=12 x Process model

y~N ,2 Data model for y

xo~N x ,2

Data model for x

~N B0,V B Prior for beta

2~IG s1, s2 Prior for sigma

2~IG t1, t2 Prior for tau

x~N X 0,V X Prior for X

Page 14: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Errors in Variablesy~N X ,2

Data Model

Process Model

Parameter Model

Y

β , σ

X0,V

x Β

0,V

β s

1,s

2

X(o)

X

xo~N x ,2

Page 15: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

p ,2 ,2 , X∣y , X o∝N y∣01 x ,2

N xo∣x ,2

N ∣B0,V B

IG 2∣s1, s2 IG

2∣t1, t2

N x∣X0,V X

Full Posterior

p ∣∝N y∣01 x ,2N ∣B0,V B

Conditionals

p 2∣∝N y∣01 x ,2

IG 2∣s1, s2

p 2∣∝N xo

∣x ,2 IG

2∣t1, t2

p X∣∝N xo ∣x ,2

N x∣X0,V X

Page 16: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

model { ## priors for(i in 1:2) { beta[i] ~ dnorm(0,0.001)} sigma ~ dgamma(0.1,0.1) tau ~ dgamma(0.1,0.1) for(i in 1:n) { xt[i] ~ dunif(0,10)}

for(i in 1:n){ x[i] ~ dnorm(xt[i],tau) mu[i] <- beta[1]+beta[2]*x[i] y[i] ~ dnorm(mu[i],sigma) }}

Page 17: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 18: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 19: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 20: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Conceptually within the MCMC

● Update the regression model given the current values of X

● Update the observation error in X based on the difference between the current and observed values of X

● Update the values of X based on the observed values of X and the regression model

● Overall, integrate over the possible values of X

Page 21: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Additional Thoughts on EIV

● Errors in X's need not be Normal● Errors need not be additive● Can account for known biases

xo~g x∣

xo~N 01 x ,2

Page 22: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Additional Thoughts on EIV

● Errors in X's need not be Normal● Errors need not be additive● Can account for known biases

● Observed data can be a different type (proxy)● Very useful to have informative priors

xo~g x∣

xo~N 01 x ,2

Page 23: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Latent Variables● Variables that are not directly observed● Values are inferred from model

– Parameter model: prior on value

– Data and Process models provide constraint

● MCMC integrates over (by sampling) the values the unobserved variable could take on

● Contribute to uncertainty in parameters, model● Ignoring this variability can lead to falsely

overconfident conclusions

pX∣∝N y∣01 x ,2N xo∣x ,2N x∣X0,V X

Page 24: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Assumptions of Linear Model

● Homoskedasticity Model variance● No error in X variables Errors in variables● Error in Y variables is measurement error● Normally distributed error● Observations are independent● No missing data

Page 25: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Missing data models

● Let's assume a standard multiple regression model (homoskedastic, no error in X)

● If some of the y's are missing– Can just predict the distribution of those values

using the model PI

● What if some of the X's are missing– The observed y is more likely to have come from

some values of X than others

y~N X ,2

Page 26: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

More Likely

Less Likely

Page 27: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Missing Data

=X Process model

y~N ,2 Data model for y

~N B0,V B Prior for beta

2~IG s1, s2 Prior for sigma

xmis~N X0,V X Prior for missing X

p xmis∣∝N X ,2N x∣X0,V X

Page 28: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Missing Data Model

y~N X ,2

Data Model

Process Model

Parameter Model

Y

β , σ

X0,V

x Β

0,V

β s

1,s

2

X

Xmis

Page 29: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Conceptually within the MCMC

● Update the regression model based on ALL the rows of data conditioned on the current values of the missing data

● Update the missing data based on the current regression model and the values that all other covariates take on

● Overall, integrate over the uncertainty in missing X's

● Model uncertainty increases, but less so than if whole rows of data was dropped (partial info.)

Page 30: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

ASSUMPTION!!

● Missing data models assume that the data is missing at random

● If data is missing SYSTEMATICALLY it can not be estimated

Page 31: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

BUGS example: Simple Regression

model{ ## priors for(i in 1:2) { beta[i] ~ dnorm(0,0.001)} sigma ~ dgamma(0.1,0.1) for(i in mis) { x[i] ~ dunif(0,10)}

for(i in 1:n){ mu[i] <- beta[1]+beta[2]*x[i] y[i] ~ dnorm(mu[i],sigma) }}

Vector giving indices of missing values

X Y4.68 8.462.95 8.559.09 7.018.15 9.061.76 11.384.23 9.127.73 7.32.43 8.026.46 8.454.06 8.952.42 9.620.6 9.15

8.17 7.510.22 10.84.93 9.782.99 10.718.36 8.896.4 8.21

8.17 6.226.46 5.41.82 10.059.52 7.962.44 9.636.84 7.057.42 8.73

NA 7.5

Page 32: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Example

Page 33: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Assumptions of Linear Model

● Homoskedasticity Model variance● No error in X variables Errors in variables● No missing data Missing data model● Normally distributed error● Error in Y variables is measurement error● Observations are independent

Page 34: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Generalized Linear Models

● Retains linear function● Allows for alternate PDFs to be used in

likelihood● However, with many non-Normal PDFs the

range of the model parameters does not allow a linear function to be used safely– Pois(λ): λ > 0

– Binom(n,θ) 0 < θ < 1

● Typically a link function is used to relate linear model to PDF

Page 35: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Link Functions

Distribution Link Name Link Function Mean FunctionNormal IdentityExponential

InverseGammaPoisson LogBinomialMultinomial

Xb = µ µ = Xb

Xb = µ-1 µ = (Xb)-1

Xb = ln(µ) µ = exp(Xb)

Logit Xb=ln

1− =exp Xb

1expXb

● “Canonical” Link Functions

● Can use most any function as a link function but may only be valid over a restricted range● Many are technically nonlinear functions

Page 36: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Logit

● Interpretation: Log of the ODDS RATIO● logit(0.5) = 0.0

Xb=ln 1−

Page 37: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Logistic Regression

● Common model for the analysis of boolean data (0/1, True/False, Present/Absent)

● Assumes a Bernoulli likelihood– Bern(θ) = Binom(1,θ)

● Likelihood specification

● Bayesian

y~Bern

logit =X

~N B0,V B

Data Model

Process Model

Parameter Model

Page 38: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Logistic Regression

y~Binom 1, logit−1X

Data Model

Process Model

Parameter Model

Y

β

Β0,V

β

X

Page 39: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 40: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 41: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Logistic Regression in R

● Option 1 – built in function

glm(y ~ x, family = binomial(link=”logit”))

● Option 2 – homebrew

lnL = function(beta){ -dbinom(y,1,ilogit(beta[0] + beta[1]*x),log=T)}

Page 42: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 43: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Call:glm(formula = y ~ x, family = binomial())

Deviance Residuals: Min 1Q Median 3Q Max -2.3138 -0.6560 -0.2362 0.6169 2.4143

Coefficients: Estimate Std. Error z value Pr(>|z|) (Intercept) -3.85078 0.48091 -8.007 1.17e-15 ***x 0.73874 0.08779 8.415 < 2e-16 ***---Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

(Dispersion parameter for binomial family taken to be 1)

Null deviance: 345.79 on 249 degrees of freedomResidual deviance: 209.40 on 248 degrees of freedomAIC: 213.40

Page 44: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 45: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Alternative link functions

● “probit” – Normal CDF● “cauchit” - Cauchy CDF● “log” -- ● “cloglog” - Complimentary log-log

– Asymmetric, often used for high or low probabilities

● If you code yourself, any function that projects from Real to (0,1)

=1−exp −exp X

=exp X

Page 46: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and
Page 47: Regression: Part II - Biology at the University of ... · PDF fileBayes (WinBUGS) Likelihood (R) Likelihood. Bayes. Additional thoughts on modeling variance ... regression model and

Coming next...

● GLM– Bayesian Logistic

– Poisson Regression

– Multinomial

● Continuing our exploration of relaxing the assumptions of linear models