How do we create a lift chart for Naive Bayes classifier?
2 ビュー (過去 30 日間)
古いコメントを表示
I can get the scores using these 2 functions: %Naive Bayes Classifier nb_model2 = fitcnb(SC5(cv2.training,:),NBSCM(cv2.training));
%Using Predict function
[nb_train_class2,score,Cost] = predict(nb_model2, SC5(cv2.training,:));
%Using resubPredict function
[~,score_nb] = resubPredict(nb_model2);
Which function should I choose for the scores and how do I sort it in descending order? Then how do I obtain the list of Actual class and then add them up? I have spent a whole day looking for answers.
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Naive Bayes についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!