SlideShare a Scribd company logo
1 of 12
Download to read offline
Multilevel Model - A very brief tutorial
Kamarul Imran M
8 December 2015
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 1 / 12
Motivation
You may collect data from groups
These groups may be selected from different levels or hierarchy
The elements of members in a particular group share more similar
features or characteristics.
For example
Level 3 districts
Level 2 schools (school)
Level 1 pupils (case)
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 2 / 12
Our data
caseid - pupils in school - Level 1
schoolid - schools where pupils belong - Level 2
setwd("/Volumes/DATA/RandSpatialAndArcGISNotes/MixedModels")
mydata <- read.table("5.1.txt", sep = ",", header = TRUE)
summary(mydata)[, c(1, 2)]
## caseid schoolid
## "Min. : 1 " "Min. : 1.0 "
## "1st Qu.: 8532 " "1st Qu.:123.0 "
## "Median :17318 " "Median :256.0 "
## "Mean :18466 " "Mean :254.4 "
## "3rd Qu.:29428 " "3rd Qu.:386.0 "
## "Max. :38192 " "Max. :511.0 "
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 3 / 12
Variables
Dependent variable is score
Covariate is cohort90 (different cohorts of pupils in schools)
summary(mydata)[,c(3,4)]
## score cohort90
## "Min. : 0.00 " "Min. :-6.0000 "
## "1st Qu.:19.00 " "1st Qu.:-4.0000 "
## "Median :33.00 " "Median :-2.0000 "
## "Mean :31.09 " "Mean : 0.2767 "
## "3rd Qu.:45.00 " "3rd Qu.: 6.0000 "
## "Max. :75.00 " "Max. : 8.0000 "
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 4 / 12
Dataframe
A glimpse of our data
head(mydata,4)[,1:4]
## caseid schoolid score cohort90
## 1 18 1 0 -6
## 2 17 1 10 -6
## 3 19 1 0 -6
## 4 20 1 40 -6
tail(mydata,4)[,1:4]
## caseid schoolid score cohort90
## 33985 6493 511 20 -6
## 33986 6496 511 48 -6
## 33987 6494 511 10 -6
## 33988 6495 511 0 -6
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 5 / 12
Random intercept (RI) model
we will fit an RI model using a linear mixed model
model with only 1 covariate (for simplicity) - cohort90
## Loading required package: Matrix
ri1<-lmer(score~cohort90+(1|schoolid),data=mydata,REML=FALSE)
fixef(ri1)
## (Intercept) cohort90
## 30.559151 1.214955
VarCorr(ri1)
## Groups Name Std.Dev.
## schoolid (Intercept) 6.7815
## Residual 14.8084
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 6 / 12
The RI results
On average, the score at baseline was 30.6
On average, with 1 unit increase in cohort, the score increases for 1.22
We will see the plot.
The y axis is the score (dependent)
The x axis is the cohort (covariate=beta1)
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 7 / 12
Each schools have different scores at baseline (SD for intercept=6.8)
Each school has the same slope (beta1=1.215)
cohort90
predscore1
10
20
30
40
50
60
−5 0 5
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 8 / 12
Random slope (RS) model
Each schools have different score at baseline (SD for intercept=6.5)
Each school has the different slope (SD for beta1=0.40)
rs1 <- lmer(score ~ cohort90 + (1 + cohort90 | schoolid),
data = mydata, REML = FALSE)
fixef(rs1)
## (Intercept) cohort90
## 30.609633 1.233903
VarCorr(rs1)
## Groups Name Std.Dev. Corr
## schoolid (Intercept) 6.54660
## cohort90 0.40074 -0.390
## Residual 14.68807
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 9 / 12
Intercept and slope correlation
The average score for schools at baseline = 30.6 (SD=6.5)
The average slope for schools with 1 unit increase in cohort = 1.233
(SD=0.39)
The intercept-slope correlation = -0.390
Negative correlation means
Schools with lower baseline score have higher slope
Schools with higher baseline score have lower slope
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 10 / 12
xyplot(predscore ~ cohort90, data = mydata
, groups = schoolid, type = c("p","l"), col = "blue",lwd=0.2)
cohort90
predscore
10
20
30
40
50
−5 0 5
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 11 / 12
Summary
Multilevel data needs special treatment
Random variations between members in different levels
variations at baseline
variations for slope
Linear mixed model provides more useful information than linear
regression
Linear mixed model more accurately reflects our data than linear
regression
THANKS
Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 12 / 12

More Related Content

Similar to Brief Tutorial on Multilevel Model

Course Project for Coursera Practical Machine Learning
Course Project for Coursera Practical Machine LearningCourse Project for Coursera Practical Machine Learning
Course Project for Coursera Practical Machine Learning
John Edward Slough II
 
Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...
Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...
Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...
TELKOMNIKA JOURNAL
 

Similar to Brief Tutorial on Multilevel Model (20)

Data science with R - Clustering and Classification
Data science with R - Clustering and ClassificationData science with R - Clustering and Classification
Data science with R - Clustering and Classification
 
Course Project for Coursera Practical Machine Learning
Course Project for Coursera Practical Machine LearningCourse Project for Coursera Practical Machine Learning
Course Project for Coursera Practical Machine Learning
 
Clustering K means and Hierarchical - NLP
Clustering K means and Hierarchical - NLPClustering K means and Hierarchical - NLP
Clustering K means and Hierarchical - NLP
 
Customer analytics for e commerce
Customer analytics for e commerceCustomer analytics for e commerce
Customer analytics for e commerce
 
Overfitting.pptx
Overfitting.pptxOverfitting.pptx
Overfitting.pptx
 
SQL
SQLSQL
SQL
 
Chapter 02-logistic regression
Chapter 02-logistic regressionChapter 02-logistic regression
Chapter 02-logistic regression
 
5 Steps to Master Microsoft Excel: Workbooks
5 Steps to Master Microsoft Excel: Workbooks5 Steps to Master Microsoft Excel: Workbooks
5 Steps to Master Microsoft Excel: Workbooks
 
Building and deploying analytics
Building and deploying analyticsBuilding and deploying analytics
Building and deploying analytics
 
MS SQL SERVER: Decision trees algorithm
MS SQL SERVER: Decision trees algorithmMS SQL SERVER: Decision trees algorithm
MS SQL SERVER: Decision trees algorithm
 
MS SQL SERVER: Decision trees algorithm
MS SQL SERVER: Decision trees algorithmMS SQL SERVER: Decision trees algorithm
MS SQL SERVER: Decision trees algorithm
 
DSE-complete.pptx
DSE-complete.pptxDSE-complete.pptx
DSE-complete.pptx
 
Tutorial Knowledge Discovery
Tutorial Knowledge DiscoveryTutorial Knowledge Discovery
Tutorial Knowledge Discovery
 
Machine Learning - Splitting Datasets
Machine Learning - Splitting DatasetsMachine Learning - Splitting Datasets
Machine Learning - Splitting Datasets
 
Knowledge discovery claudiad amato
Knowledge discovery claudiad amatoKnowledge discovery claudiad amato
Knowledge discovery claudiad amato
 
Data Mining Project for student academic specialization and performance
Data Mining Project for student academic specialization and performanceData Mining Project for student academic specialization and performance
Data Mining Project for student academic specialization and performance
 
Post Graduate Admission Prediction System
Post Graduate Admission Prediction SystemPost Graduate Admission Prediction System
Post Graduate Admission Prediction System
 
Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...
Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...
Rank Computation Model for Distribution Product in Fuzzy Multiple Attribute D...
 
Big data project
Big data projectBig data project
Big data project
 
R markdown
R markdownR markdown
R markdown
 

Recently uploaded

Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
amitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
AroojKhan71
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
amitlee9823
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 

Recently uploaded (20)

Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 

Brief Tutorial on Multilevel Model

  • 1. Multilevel Model - A very brief tutorial Kamarul Imran M 8 December 2015 Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 1 / 12
  • 2. Motivation You may collect data from groups These groups may be selected from different levels or hierarchy The elements of members in a particular group share more similar features or characteristics. For example Level 3 districts Level 2 schools (school) Level 1 pupils (case) Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 2 / 12
  • 3. Our data caseid - pupils in school - Level 1 schoolid - schools where pupils belong - Level 2 setwd("/Volumes/DATA/RandSpatialAndArcGISNotes/MixedModels") mydata <- read.table("5.1.txt", sep = ",", header = TRUE) summary(mydata)[, c(1, 2)] ## caseid schoolid ## "Min. : 1 " "Min. : 1.0 " ## "1st Qu.: 8532 " "1st Qu.:123.0 " ## "Median :17318 " "Median :256.0 " ## "Mean :18466 " "Mean :254.4 " ## "3rd Qu.:29428 " "3rd Qu.:386.0 " ## "Max. :38192 " "Max. :511.0 " Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 3 / 12
  • 4. Variables Dependent variable is score Covariate is cohort90 (different cohorts of pupils in schools) summary(mydata)[,c(3,4)] ## score cohort90 ## "Min. : 0.00 " "Min. :-6.0000 " ## "1st Qu.:19.00 " "1st Qu.:-4.0000 " ## "Median :33.00 " "Median :-2.0000 " ## "Mean :31.09 " "Mean : 0.2767 " ## "3rd Qu.:45.00 " "3rd Qu.: 6.0000 " ## "Max. :75.00 " "Max. : 8.0000 " Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 4 / 12
  • 5. Dataframe A glimpse of our data head(mydata,4)[,1:4] ## caseid schoolid score cohort90 ## 1 18 1 0 -6 ## 2 17 1 10 -6 ## 3 19 1 0 -6 ## 4 20 1 40 -6 tail(mydata,4)[,1:4] ## caseid schoolid score cohort90 ## 33985 6493 511 20 -6 ## 33986 6496 511 48 -6 ## 33987 6494 511 10 -6 ## 33988 6495 511 0 -6 Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 5 / 12
  • 6. Random intercept (RI) model we will fit an RI model using a linear mixed model model with only 1 covariate (for simplicity) - cohort90 ## Loading required package: Matrix ri1<-lmer(score~cohort90+(1|schoolid),data=mydata,REML=FALSE) fixef(ri1) ## (Intercept) cohort90 ## 30.559151 1.214955 VarCorr(ri1) ## Groups Name Std.Dev. ## schoolid (Intercept) 6.7815 ## Residual 14.8084 Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 6 / 12
  • 7. The RI results On average, the score at baseline was 30.6 On average, with 1 unit increase in cohort, the score increases for 1.22 We will see the plot. The y axis is the score (dependent) The x axis is the cohort (covariate=beta1) Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 7 / 12
  • 8. Each schools have different scores at baseline (SD for intercept=6.8) Each school has the same slope (beta1=1.215) cohort90 predscore1 10 20 30 40 50 60 −5 0 5 Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 8 / 12
  • 9. Random slope (RS) model Each schools have different score at baseline (SD for intercept=6.5) Each school has the different slope (SD for beta1=0.40) rs1 <- lmer(score ~ cohort90 + (1 + cohort90 | schoolid), data = mydata, REML = FALSE) fixef(rs1) ## (Intercept) cohort90 ## 30.609633 1.233903 VarCorr(rs1) ## Groups Name Std.Dev. Corr ## schoolid (Intercept) 6.54660 ## cohort90 0.40074 -0.390 ## Residual 14.68807 Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 9 / 12
  • 10. Intercept and slope correlation The average score for schools at baseline = 30.6 (SD=6.5) The average slope for schools with 1 unit increase in cohort = 1.233 (SD=0.39) The intercept-slope correlation = -0.390 Negative correlation means Schools with lower baseline score have higher slope Schools with higher baseline score have lower slope Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 10 / 12
  • 11. xyplot(predscore ~ cohort90, data = mydata , groups = schoolid, type = c("p","l"), col = "blue",lwd=0.2) cohort90 predscore 10 20 30 40 50 −5 0 5 Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 11 / 12
  • 12. Summary Multilevel data needs special treatment Random variations between members in different levels variations at baseline variations for slope Linear mixed model provides more useful information than linear regression Linear mixed model more accurately reflects our data than linear regression THANKS Kamarul Imran M Multilevel Model - A very brief tutorial 8 December 2015 12 / 12