I'm running a linear discriminant analysis with 2 variables and 2 groups in R, i.e.,
ldares <- lda(dat[,2:3], grouping=dat[,1])
Next, I would like to obtain the formula for the decision bound that separates the groups. I know that I can output the coefficients of the linear discriminant with:
coef(ldares)
However, given that the decision bound is described by:
a*v1 + b*v2 + c = 0,
how do I get the bias or threshold weight c?