Data set: Iris
How to compute the confusion matrix on the data set for an LDA (Linear Discriminant Analysis) model?
>iris.lda = lda(Species ~ . , data = iris)
>table(predict(iris.lda, type="class"), iris$Species)
Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Have you called 'sort' on a list?
Try this one