Open
Description
There is a one issue about predicted values in candisc.
data(iris)
iris.mod = lm(cbind(Sepal.Length,Sepal.Width,Petal.Length,Petal.Width)~Species,data=iris)
iris.can = candisc(iris.mod, data=iris)
pred = predict(iris.can)
Error in UseMethod("predict") :
no applicable method for 'predict' applied to an object of class "candisc"
I try same thing with MASS lda
iris.lda = lda(iris[,1:4],iris$Species,data=iris)
pred = predict(iris.lda)
iris.table = table(iris$Species,pred$class)
iris.table
it gives this table.
You can add this function in your package.
Metadata
Metadata
Assignees
Labels
No labels