I went to the MANOVA video, and it said I needed to first understand the LDA video so now I am here, and now it says I have to go to the PCA video hehe
I greatly appreciate the video. I only have one question: Does this linear discriminant analysis approach rely on the Bayesian, Fisher or some other approach?
Well, the original discriminant analysis method was developed by Fisher, but note that LDA is not used to make any inference about a population (no p-value is calculated).
@@tilestats Thank you for your response. That being said, I would like to know to which specific category or approach the method presented in the video could be associated. This is considering that its primary function is to classify known data, without conducting broader inferential analyses. Could you provide additional information on how this particular approach would be classified?
I would say that it is a classification method. Have a look at this video where I group LDA with other methods. ruclips.net/video/XMZ_0aloVAc/видео.html
Hello, thank you for the excellent explanation! So a variable contributes more to the groups' separation when it has a high weight. How do we interpret the negative weights of the variables (in LDA)?
Thank you very much for these beneficial videos. However, you mentioned that you used software to calculate the Eigenvectors. Please recommend which software to use (the simpler, the better)? Again, thanks a lot for your videos
Hi I use R, which is free! You can compute the eigenvectors in R by: mat=matrix(c(2.05,14.15,0.16,0.96),2,2) eigen(mat) Note that I also have videos on how to understand and calculate the eigenvectors by hand: ruclips.net/video/9CT0jnem4vM/видео.html ruclips.net/video/JtcNe--fsyA/видео.html
Hello! great video, however, I have a question/need clarification: is LD1 found at 18:19 the actual line, on which when projected upon best seperates the two classes? And then the following calculations in the video is the data being projected on the line, or is this line found somewhere else? So to clarify; im looking specifically for the line that best seperates the two classes
The discriminant axis is given by the first eigenvector. If you like to plot the line on the centered data (unrotated data), plot the first eigenvector (0.15 0.989 or 0.11 0.7, both will give the same slope/direction of the line). Data points should project on this line.
In your calculation of matrix W, when the sizes of the classes or groups is UNEQUAL, what are the variables n_1 and n_2? (i.e. in the equation shown at 15:43). Also, thanks so much for these videos (and the PCA ones). Well explained, with good examples and you did it in half the time everyone else takes!
Thank you! n1 and n2 are the sample sizes of group 1 (group A) and group 2 (group B). In this example, you should set n1=6 and n2=6. Note that you should use the same formula at 19:22 if you like to normalize the weights when you have an unequal sample size.
@@tilestats Thanks very much... you guessed what my second question was going to be and answered it too! Looking forward to working my way through all your videos when I have some extra time.
Could you please check if the legend colors for bacterial and viral are correct on the figures (e.g. at 6:21)? With scikit-learn I get low values for bacterial and high values for viral data transformed samples. Therefore, viral data points, transformed with LDA, should be above the bacterial ones.
@@tilestats Hi Andreas, I managed to get the same picture as you. To do this I used the eigen solver (by default sklearn uses singular value decomposition). lda = LinearDiscriminantAnalysis(solver="eigen", shrinkage=0.003, n_components=1, store_covariance=True) Thank you for your
Hello! I would like to ask what the null hypothesis for LDA is or DA (Discrimination Analysis) in general? And also if you would know what the hypothesis is when MANOVA and DA together is used?
LDA or DA has no null hypothesis because it does not compute any p-value, in comparison to MANOVA. When you use LDA you can use some sort of validation method to check its performance. Have you seen my second video about LDA and the video about MANOVA?
the best explanation in all internet. Thank you a lot
Thanks for sharing. This is amazingly crafted and easy to follow. I finally understood the math behind LDA. Brilliant!
Thank you! That's great to hear.
I like your video always with subtitles so i can better understand what are you saying
really you are genius and your help always remembered until my last breath.
Thanks for your comment!
Beautiful explanation. Thanks
I went to the MANOVA video, and it said I needed to first understand the LDA video so now I am here, and now it says I have to go to the PCA video hehe
Great explanation.
Excellent video!!!
Your videos have been amazing, can you please upload content related to Bayesian analysis
Thank you for the video. Could you please make an extended video for LDA? I mean videos like what you did for PCA
Have you seen this one?
ruclips.net/video/9SuIE_tGF-g/видео.html
Very clear explanation!
I greatly appreciate the video. I only have one question: Does this linear discriminant analysis approach rely on the Bayesian, Fisher or some other approach?
Well, the original discriminant analysis method was developed by Fisher, but note that LDA is not used to make any inference about a population (no p-value is calculated).
@@tilestats Thank you for your response. That being said, I would like to know to which specific category or approach the method presented in the video could be associated. This is considering that its primary function is to classify known data, without conducting broader inferential analyses. Could you provide additional information on how this particular approach would be classified?
I would say that it is a classification method. Have a look at this video where I group LDA with other methods.
ruclips.net/video/XMZ_0aloVAc/видео.html
Hello sir, can you please explain why first eigen vector is considered for LDA?
Hello, thank you for the excellent explanation! So a variable contributes more to the groups' separation when it has a high weight. How do we interpret the negative weights of the variables (in LDA)?
Hi
Use the absolute values for interpretation, which means that values far away from zero are important for separation.
@@tilestats Thank you !
Thank you so much for this very useful video.
Thank you!
Thank you very much for these beneficial videos. However, you mentioned that you used software to calculate the Eigenvectors. Please recommend which software to use (the simpler, the better)?
Again, thanks a lot for your videos
Hi
I use R, which is free! You can compute the eigenvectors in R by:
mat=matrix(c(2.05,14.15,0.16,0.96),2,2)
eigen(mat)
Note that I also have videos on how to understand and calculate the eigenvectors by hand:
ruclips.net/video/9CT0jnem4vM/видео.html
ruclips.net/video/JtcNe--fsyA/видео.html
How to calculate score from to matrix
Hello! great video, however, I have a question/need clarification: is LD1 found at 18:19 the actual line, on which when projected upon best seperates the two classes? And then the following calculations in the video is the data being projected on the line, or is this line found somewhere else? So to clarify; im looking specifically for the line that best seperates the two classes
The discriminant axis is given by the first eigenvector. If you like to plot the line on the centered data (unrotated data), plot the first eigenvector (0.15 0.989 or 0.11 0.7, both will give the same slope/direction of the line). Data points should project on this line.
In your calculation of matrix W, when the sizes of the classes or groups is UNEQUAL, what are the variables n_1 and n_2? (i.e. in the equation shown at 15:43). Also, thanks so much for these videos (and the PCA ones). Well explained, with good examples and you did it in half the time everyone else takes!
Thank you! n1 and n2 are the sample sizes of group 1 (group A) and group 2 (group B). In this example, you should set n1=6 and n2=6. Note that you should use the same formula at 19:22 if you like to normalize the weights when you have an unequal sample size.
@@tilestats Thanks very much... you guessed what my second question was going to be and answered it too! Looking forward to working my way through all your videos when I have some extra time.
@@tilestats what if we have 3 or more classes? should the denumerator still n1+n2 - 2? or it change to n1+n2 - 3 and so on?
@@NN-if9lr Yes but n1+n2+n3-3
@@tilestats oh i forgot the n3, thank you for the reply.
Could you please check if the legend colors for bacterial and viral are correct on the figures (e.g. at 6:21)? With scikit-learn I get low values for bacterial and high values for viral data transformed samples. Therefore, viral data points, transformed with LDA, should be above the bacterial ones.
What values did you get for alpha 1 and alpha 2, using scikit?
@@tilestats [-0.3627029 -2.3969302]
import pandas as pd
from sklearn.discriminant_analysis import LinearDiscriminantAnalysis
import matplotlib.pyplot as plt
data = pd.DataFrame({
"infection":["Viral","Viral","Viral","Viral","Viral","Viral",
"Bacterial","Bacterial","Bacterial","Bacterial","Bacterial","Bacterial"],
"crp":[40.,11.1,30.,21.4,10.7,3.4,42.0,31.1,50.,60.4,45.7,17.3],
"temp":[36.,37.2,36.5,39.4,39.6,40.7,37.6,42.2,38.5,39.4,38.6,42.7]})
X, y = data[["crp","temp"]], data["infection"].ravel()
lda = LinearDiscriminantAnalysis(n_components=1, store_covariance=True)
X_t = lda.fit(X, y).transform(X)
colors = ["red", "green"]
plt.figure()
for color, cls in zip(colors, lda.classes_):
plt.scatter(["LDA"]*len(X_t[y==cls]), X_t[y==cls], alpha=0.8, color=color, label=cls)
plt.legend()
plt.show()
@@tilestats Hi Andreas, I managed to get the same picture as you. To do this I used the eigen solver (by default sklearn uses singular value decomposition).
lda = LinearDiscriminantAnalysis(solver="eigen", shrinkage=0.003, n_components=1, store_covariance=True)
Thank you for your
Great!
Can you please provide the dataset on which you worked
The data set is the same as shown in the video.
Hello! I would like to ask what the null hypothesis for LDA is or DA (Discrimination Analysis) in general? And also if you would know what the hypothesis is when MANOVA and DA together is used?
LDA or DA has no null hypothesis because it does not compute any p-value, in comparison to MANOVA. When you use LDA you can use some sort of validation method to check its performance. Have you seen my second video about LDA and the video about MANOVA?
hey can you tell me how you calculated 0.11 and 0.70?
It is explained later on in the video…
how you computed alpha1 and alpha2?
That is explained from 14:40 and forward.
How you assign alpha1 and alpha2 value?
Do you mean how they are calculated? That is explained from 11:30.
Thanks! This video is so helpful! Coffee on me :)
Thank you!
The visuals and the commentary are not in sync.
how to calculate covariance matrix of W?
Can you refer to the time point in the video?