Filter löschen
Filter löschen

Check for missing argument or incorrect argument data type in call to function 'predict'.

5 Ansichten (letzte 30 Tage)
I am trying to predict values of cross-validated model using training data.But I am getting this error -
Check for missing argument or incorrect argument data type in call to function 'predict'.
The code I am using is as below -
mdlCv= fitctree(bank_Train,'y','KFold',10); %bank_Train is the training data
[label,scores] = predict(mdlCv,bank_Test); %bank_Test is the testing data
If I try to use below code then also I am getting the error
[label,scores] = predict(mdlCv.Trained{1},bank_Test);
Error using classreg.learning.internal.table2PredictMatrix>makeXMatrix (line 97)
Table variable job is not a valid predictor.
Error in classreg.learning.internal.table2PredictMatrix (line 47)
Xout = makeXMatrix(X,CategoricalPredictors,vrange,pnames);
Error in classreg.learning.classif.CompactClassificationTree/predict (line 894)
X = classreg.learning.internal.table2PredictMatrix(X,[],[],...

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 6 Dez. 2020
Bearbeitet: Walter Roberson am 6 Dez. 2020
You are using 'KFold' so you are creating a classification partitioned object and need to use kfoldPredict() instead of predict()
  1 Kommentar
Tejal Mehta
Tejal Mehta am 6 Dez. 2020
Thanks .
If I want to predict using test data then do I have to create model on test data and then use kfoldPredict ?
I cannot directly use predict function with test_data?
Like I saw somewhere this below code works if all columns are numeric -
[label,scores] = predict(mdlCv.Trained{1},bank_Test); %bank_Test is the testing data
for me this is not working as I have got few categorical columns as well and it is throwing error stating
Error using classreg.learning.internal.table2PredictMatrix>makeXMatrix (line 97)
Table variable job is not a valid predictor.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by