(Simplified) Linear Mixed Model in R with lme()

  Рет қаралды 62,034

LiquidBrain Bioinformatics

LiquidBrain Bioinformatics

Күн бұрын

Statistical modeling helps to compress the raw data we have into a simple mathematical formula that we can use for understanding the relationship between two or more variables, or in some situation, use to predict data from new input.
Simple linear model could easily help to model the relationship between two directly correlated variables, but in most cases, the world is too complicated to simple linear model. In this case, linear mixed model comes into play. Incorporating both fixed effects and random effects, this modeling technique attempt to prevent a false negative correlation between the variables, or mis interpretation of the trends.
This video is attempting to summarize the concept of modeling and how you can run LMM in R.
Scripts
github.com/brandonyph/Basics-...
Slides
docs.google.com/presentation/...
Original tutorial
bodowinter.com/tutorial/bw_LM...
Email: liquidbrain.r@gmail.com
Website: www.liquidbrain.org/videos
Patreon: / liquidbrain

Пікірлер: 79
@salmaasghar1674
@salmaasghar1674 2 жыл бұрын
you saved me dear. if i did not find this video i would quit my Ph.D. i am working in R and my experiments are also based on frequencies and their effect on the tone of the word. this solved my problem. i have no words to say thanks to you.
@andreanarayan4947
@andreanarayan4947 2 жыл бұрын
I've never learned stats so easily, thank you so much for making this video!
@charliebielby8786
@charliebielby8786 2 жыл бұрын
Most clear and concise lmem summary I've seen, showing the syntax makes it so clear to do it on r, no other videos I've seen do this
@patrycjakasperska7272
@patrycjakasperska7272 Жыл бұрын
So great content! Thank you a lot. No one had ever explained LM to me in such a simple way before.
@christine_ko
@christine_ko Жыл бұрын
The video is of great use! Can't wait to watch more videos concerning R studio🥰
@genelad1720
@genelad1720 Жыл бұрын
You made my life easier with this explanation! Thank you so much.
@veronicawardhani6453
@veronicawardhani6453 Жыл бұрын
Thank you so much for your video! It really helped me during my master thesis. All the best for you :)
@DANICOG18
@DANICOG18 Жыл бұрын
Hi, very useful and clear, thanks! When you have several fixed factors (e.g. 4 fixed factors), how do you set the null model to test the anova? Should you remove predictors one by one? Run anovas one by one with each null model with -1 predictor?
@muali
@muali 2 жыл бұрын
thank you so much for this intro! one of the best explanations I’ve come across!`
@jacobkenning5926
@jacobkenning5926 Ай бұрын
insanely helpful, very clear explanation and workshop!
@laurenfindsaway
@laurenfindsaway 6 ай бұрын
Thank you for this video! Your explanation of running the models in R is very intuitive. When writing up your model results, do you ever report statistical significance of your fixed effects? I tried publishing by comparing model fit alone and got strong push-back from reviewers. Thanks!
@ngasefa1162
@ngasefa1162 2 жыл бұрын
Thank you so much for sharing this, it was an interesting piece of work.
@jcmt8178
@jcmt8178 Жыл бұрын
Hi, awsome video! How would you approach a slightly more complex model, with more fixed effects and their interactions? How one approaches random slopes in that case? Here you only focus on 1 effect in your research question/model and the rest is only accounting for what we know about the data (scenarios/sex etc.). But what if I have 2 or 3 fixed effects and I'm interested in their interaction? How would you write a code for random slope of subject in that case? Do I need that for all fixed effects separately?
@ytz8840
@ytz8840 Жыл бұрын
such a clear video! thank you!
@nuary120896
@nuary120896 Ай бұрын
Super useful, super clear. Thank you so much 😁
3 ай бұрын
Thank you for the video. It helped me a lot.
@jaquelinearagoni5226
@jaquelinearagoni5226 2 жыл бұрын
Very good! Thank you for that!!
@kennedygolfhead4356
@kennedygolfhead4356 Жыл бұрын
Thank you for creating this video!! So easy to understand the LMM model. Just one question, how did you set your screen so that it shows the script and output all in one screen? That looks so intuitive and easy to look at!!! Thank you for your help!!!
@kamilkakverkova4715
@kamilkakverkova4715 Жыл бұрын
I noticed that too! And it seems he doesn't use R script, but R notebook format :) I'll definitely start using that!
@Victorrr6R
@Victorrr6R 10 ай бұрын
Thank you very much! You helped me a lot! :)
@MrJegerjeg
@MrJegerjeg 10 ай бұрын
(1 | random1) means that it is going to calculate a separate intercept for each one of the categories in "random1"
@ghd_henu
@ghd_henu Жыл бұрын
Thank you so much Sir for helpful tutorial. Could you show us how can we visualize mixed effect model with more than 1 predictors in R Please ?
@elenaflores4746
@elenaflores4746 2 жыл бұрын
Thank you! This is great! Do you have any videos on how to plot (or visualize) results of Linear mixed models??
@LiquidBrain
@LiquidBrain 2 жыл бұрын
I suppose you can extract the individual intercepts from the model and plot them individually on the plot, similar to those plots in 17:57 . But I don't think there's a way to do it without a custom functions. Might need to code it for the data.
@DM-qb6jm
@DM-qb6jm 2 жыл бұрын
Really great video! I think regularized regression techniques are outside of GLMs. Generalized linear models have a somewhat rigid statistical definition that is based on the form of the exponential family. Binomial regression, poisson regression, beta regression, gamma regression, etc. are all exponential family, which allows us to develop a GLM regression from those distributions. Regularization involves adding a penalty term that penalizes large coefficients, which does not match the exponential family distributional form. Regularization is a machine learning technique that starts to move away of traditional statistical techniques. At least, this is my understanding of how those ideas fit together!
@stretch8390
@stretch8390 Жыл бұрын
Important to distinguish between General Linear Models and Generalized Linear Models too! Stats terminology and Machine learning terminology can be quite annoying to navigate
@dr.navidsoltani4326
@dr.navidsoltani4326 2 жыл бұрын
Thank you for the tutorial - how do you handle zeros in the dependant variable? And do you add a independent|id on the random effect for each independant variable you add on the fixed side of the equation?
@LiquidBrain
@LiquidBrain 2 жыл бұрын
Do you mean zeros in data, or missing data in general? For 0 that is causig error I suppose you could just add 1 to all data , and for missing I just uploaded a video on imputation for raw data :) . I am not too sure what you mean for the independent|Id questions though, do you mean should each random effect be specific each?
@stes5429
@stes5429 2 жыл бұрын
Good content, keep going ;)
@johnkals1411
@johnkals1411 9 ай бұрын
Very good content !
@sophiekayne2471
@sophiekayne2471 Жыл бұрын
Amazing video! And I have a question that how can we control a confounding factor which is not our interest but do influence the dependent variable in the lmm model? thx
@LiquidBrain
@LiquidBrain Жыл бұрын
Ya, that's a hard question. The easiest way might be a better experiment design? Otherwise might be depending if you have enough samples to allow you select different groups that allow the factor to be normalized in the comparison.
@fathurrochman1555
@fathurrochman1555 Жыл бұрын
Dear brother, how to determine whether random effect variables or fixed effect variables because in my case, I had a lot of variables in my topic? thanks for your answer
@AnkitCogn
@AnkitCogn Жыл бұрын
Well...never thought a fellow 9gager would one day teach me LMM...thanks op
@matiwostoli9207
@matiwostoli9207 Жыл бұрын
I want to know more about how to calculate 95%CI and odd ratio for the linear mixed model in R.
@irenebernardi3954
@irenebernardi3954 Жыл бұрын
THANK YOU !!!!!!!!!!!!!! ICONIC
@pastramiking
@pastramiking Жыл бұрын
A quadratic model is a linear model, (look up polynomial regression). Linear doesn't mean line, it means the model can be expressed as a linear combination of weights and variables. Transforming the predictor variables does not make it non-linear because the model is Y given X so the predictors are always assumed to be fixed. If the coefficient has a square though then that is non-linear.
@jiancanliu1473
@jiancanliu1473 2 жыл бұрын
Hi, thanks for the video, what if I want to post hoc compare following the mixed effect model, like comparing is there a significant difference between the Female vs Male effect on frequency? how to do it in lme4?
@LiquidBrain
@LiquidBrain Жыл бұрын
I am not too sure how to actually do such analysis in this context, do you mean which gender would have a bigger impact on the frequency? you can tell that from looking at the intercepts and the gradient of the linear model~ :) -Brandon
@fazlfazl2346
@fazlfazl2346 9 ай бұрын
Great lecture. At 8.01, why will it be a problem to define race as 0,1,2,3? Please explain.
@liancheefoong4309
@liancheefoong4309 2 жыл бұрын
Interesting !
@brainhammin5476
@brainhammin5476 2 жыл бұрын
Great video! Could you maybe explain how to deal with NA values and the LMM?
@LiquidBrain
@LiquidBrain 2 жыл бұрын
For NA it really depends on the source of the data, In this example there are removed to simplified the process. For data imputation, you will need to understand the nature of those errors. Some data, for example, environmental temperature might be able to use a simple moving average for its imputation, but for drug interactions, it might be easier to just remove the sample if you have enough data.
@sharonm1261
@sharonm1261 Жыл бұрын
Hi, this is really helpful, thanks! I'm trying to watch as many linear mixed model videos as possible to understand the background. If you have time, can I ask, why do you use 1+ attitude/subject and 1+ attitude/scenario, but not 1+gender/subject and 1+gender/scenario, is this because you don't expect slope to change with gender? If so, do you happen to know what equation I would use if I did expect slope to change with gender? To model bat_body_temp. I currently have two fixed effects (ambient_temp and fed_notFed and one random effect individual _bat, just trying to work out what the best equation to use is if I want to assume that the slope might vary for the different individual bats).... thanks!!
@LiquidBrain
@LiquidBrain Жыл бұрын
There is actually a lot more background from the study I didn't mange to put into the video, you can refer to the intention of the author here: bodowinter.com/tutorial/bw_LME_tutorial2.pdf I am not exactly sure about the bat situation, but if you set individual bats as your random variable, would it hurts your statistical power since you only have 1 data point per bat? or are you working with longitudinal data in your study? equation: bat_body_temp ~ gender + ambient_temp + fed_notFed + (1|individual _bat)
@sharonm1261
@sharonm1261 Жыл бұрын
@@LiquidBrain thanks very much for the reply, I'll have a look. I have several (~6 or 7) bat_body_temp points per bat for various different ambient temperatures and for both fed/not_fed conditions. I don't actually have male and female bats they were all male, just was wondering hypothetically about the equation. I think if I read more I will understand. Need some spare time to work on it!! Thanks again :)
@sarahbobbitt7852
@sarahbobbitt7852 Жыл бұрын
Hi, this is a great video! Can someone help me understand why frequency is the independent variable here? If you are measuring frequency based on scenarios with different politeness, aren't you manipulating the scenarios, meaning scenario would be the independent variable and frequency the dependent variable? Maybe I'm just missing something here, any help would be appreciated! :)
@LiquidBrain
@LiquidBrain Жыл бұрын
Not sure if I am saying it wrongly in the video, but you are correct that frequency is the dependent variable here: For example; pitch ~ politeness + sex + (1|subject) + ε this equation model the concepts on how politeness, sex in different subject affect the final pitch(frequency), so perhaps the sex can be understand as the independent and the pitch as the dependent; the other could be the controlled variable in this experiment.
@WuttHmoneKyi
@WuttHmoneKyi 15 күн бұрын
Can I compare more than 2 scenarios (more than just formal, informal, etc..) with LLM?
@georgewanjala4605
@georgewanjala4605 Жыл бұрын
Secondly, you mentioned somewhere that if one of the explanatory variables is a factor or categorical, we use generalized linear function not linear. I suppose lmer is also linear but with random variables. Can you please elaborate why you used lmer when yiu had attitude as factor.
@LiquidBrain
@LiquidBrain Жыл бұрын
I believe there isn't always a correct answer to which model to use on which analysis, glm might be a better fit for the data, but might also resulted in over fitting. So, a linear model was used here to illustrate this example.
@kyliepark2265
@kyliepark2265 Жыл бұрын
THANK YOU
@georgewanjala4605
@georgewanjala4605 Жыл бұрын
I want to join the membership here but seems like it's not possible, please advise
@LiquidBrain
@LiquidBrain Жыл бұрын
I think you might have to check with KZbin in your country perhaps its not supported there
@MohammadSaleem-vl8sn
@MohammadSaleem-vl8sn 2 жыл бұрын
Please make toturial on how we can use random forest and bortula in R software for analysis with regression and classifier
@LiquidBrain
@LiquidBrain 2 жыл бұрын
That sounds like an interesting idea :) Let me see what i can do
@aungmyohtut21
@aungmyohtut21 Жыл бұрын
I want to know the name of dark theme you used in R
@LiquidBrain
@LiquidBrain Жыл бұрын
It's Tomorrow Night Bright 😎
@laxmanbisht2638
@laxmanbisht2638 Жыл бұрын
Are linear mixed model same as random parameter models?
@LiquidBrain
@LiquidBrain Жыл бұрын
Sorry not super familiar with random parameter models, perhaps other view can help to answer this question
@interwebzful
@interwebzful 3 ай бұрын
i'm no expert but when you discuss linear model with multiple x (slide with the hyperplane) isn't that the General Linear Model but when you discuss ridge regression and such isn''t that Generalized Linear Modeling?
@AqleemAbbas
@AqleemAbbas 2 жыл бұрын
Liquid brain, Many terms I couldnot understand. What is difference between linear, regression, and correleation
@LiquidBrain
@LiquidBrain 2 жыл бұрын
To oversimplified a bit, Linear = a line, or line like stuff Regression = trying to fit a model into a data correlation= does the two dataset looks similar to each other
@user-sl5ds8kn5x
@user-sl5ds8kn5x Ай бұрын
What’s the name of the song
@AkbarAto
@AkbarAto 2 жыл бұрын
"Not the worst thing in the world." (7:46) 😂😂
@AqleemAbbas
@AqleemAbbas 2 жыл бұрын
How can I use these models in plant diseases
@LiquidBrain
@LiquidBrain 2 жыл бұрын
Well, it depends on the raw data, what's the dataset you are dealing with now?
@AqleemAbbas
@AqleemAbbas 2 жыл бұрын
@@LiquidBrain I am dealing with microbiome
@Jonathan-sz8wj
@Jonathan-sz8wj 2 жыл бұрын
@@AqleemAbbas Same! My lab has been studying swine microbiome, but we have built a few models that you can look at and apply to your own data (Microbial composition differs between production systems and is associated with growth performance and carcass quality in pigs). Christian Maltecca is the first author. Go through some of his published microbiome papers if you want to see how he built microbiome into classical genetic models. Remember, its crucial to determine the factors (fixed and random) that play a role in your data.
@AqleemAbbas
@AqleemAbbas 2 жыл бұрын
@@Jonathan-sz8wj Great Sir
@shuyingsha9023
@shuyingsha9023 5 ай бұрын
I think it is generalized linear model, not general linear model
@user-ib3pi6cq7o
@user-ib3pi6cq7o 8 ай бұрын
As someone who teaches MLM to students, I appreciated your systematic and sequential approach to explaining this complicated approach. However, as someone with a hearing disability I found the background music distracting and it masked my ability to hear your speech at times. Respectful suggestion: just do without the music and let us listen to you without distraction.
@user-mu6cm5he2c
@user-mu6cm5he2c 5 ай бұрын
Its called multivariate model
@alextjflorida
@alextjflorida Жыл бұрын
Your model has two levels. It would be better to talk about linear mixed model by levels and also show people the regression equations by levels.
@denisfitzpatrick6781
@denisfitzpatrick6781 Жыл бұрын
The music is distracting.
@z-0-x584
@z-0-x584 2 жыл бұрын
Gas brain?
@johnshepherd9402
@johnshepherd9402 4 ай бұрын
Good explanations, but please delete the backgound noise soundtrack. It is unnecessary and annoying.
@dle3528
@dle3528 7 ай бұрын
the song is not necessary. It is so hard for non-native speakers to understand your lesson with the song. This is only a suggestion.
Mixed Effects Models: A Conceptual Overview Using R
35:03
PsychED
Рет қаралды 6 М.
Lecture 9.1 Introduction to Mixed Effects Models
11:13
IxD Online: UCSD & Coursera
Рет қаралды 49 М.
格斗裁判暴力执法!#fighting #shorts
00:15
武林之巅
Рет қаралды 90 МЛН
ПЕЙ МОЛОКО КАК ФОКУСНИК
00:37
Masomka
Рет қаралды 10 МЛН
小路飞姐姐居然让路飞小路飞都消失了#海贼王  #路飞
00:47
路飞与唐舞桐
Рет қаралды 95 МЛН
How to interpret (and assess!) a GLM in R
17:36
Chloe Fouilloux
Рет қаралды 22 М.
Having Fun with Random Effects in Mixed Models (GLMMs)
12:37
Chloe Fouilloux
Рет қаралды 1,3 М.
Linear mixed effects models
18:37
Matthew E. Clapham
Рет қаралды 214 М.
An Introduction to Linear Mixed Effects Models
52:25
mohammad momenian
Рет қаралды 17 М.
Linear mixed effects models - the basics
11:27
TileStats
Рет қаралды 58 М.
Mixed effects models with R
21:55
Christoph Scherber
Рет қаралды 190 М.
Fixed and random effects with Tom Reader
8:09
University of Nottingham
Рет қаралды 181 М.
Adding variables to your multiple regression model
28:40
R Programming 101
Рет қаралды 2,9 М.