Final answer:
To determine if LDA or QDA performs better, compare their performance metrics on both test and training sets using a validation technique like cross-validation. LDA assumes same covariance across classes, while QDA does not. Measure training error, but consider test set performance for true model generalization.
Step-by-step explanation:
To determine whether Linear Discriminant Analysis (LDA) or Quadratic Discriminant Analysis (QDA) performs better on a test or training set, you would typically compare their accuracy or another performance metric using a validation technique, such as cross-validation. LDA assumes that the different classes have the same covariance matrix, whereas QDA allows for each class to have its own covariance matrix. You would run both LDA and QDA on the same dataset and compare the results.
For a training set, you could measure performance by analyzing the training error, which is the error rate of the model on the data used to train it. However, a low training error might not always be a good indicator of real-world performance due to the risk of overfitting. Thus, the performance on a test set, which the model has not seen during training, provides a more realistic evaluation of how well the model will generalize.
Moreover, if your dataset has a high dimensionality, LDA might perform better since it is less likely to overfit compared to QDA. However, if the assumption of a common covariance matrix is very wrong, QDA may be the better choice. To make an informed decision, look at metrics such as precision, recall, F1-score, ROC curves, and AUC scores from both the test and training sets.