Borrar filtros
Borrar filtros

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

5 visualizaciones (últimos 30 días)
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,[],[],...

Respuesta aceptada

Walter Roberson
Walter Roberson el 6 de Dic. de 2020
Editada: Walter Roberson el 6 de Dic. de 2020
You are using 'KFold' so you are creating a classification partitioned object and need to use kfoldPredict() instead of predict()
  1 comentario
Tejal Mehta
Tejal Mehta el 6 de Dic. de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by