MATLAB R2018B documents the commands oobPermutedPredictorImportance and predictorImportance but these commands are not recognized by MATLAB, neither at the command nor in m-code.
2 ビュー (過去 30 日間)
古いコメントを表示
MATLAB R2018B documents the commands oobPermutedPredictorImportance and predictorImportance but these commands are not recognized by MATLAB. This is true for both the command line and when running m-code.
I have developed an tree ensemble model and I need to determine the predictor variables importances.
0 件のコメント
回答 (1 件)
Steven Lord
2019 年 1 月 27 日
It is a method of that class, not a plain old function. It will only work when its first input is one of those objects. You can't, for example, say oobPermutedPredictorImportance(magic(4)) because magic(4) returns a double array, not a RegressionBaggedEnsemble object.
The same general answer holds for predictorImportance, though it may be a different class or a different set of classes that define this method.
参考
カテゴリ
Help Center および File Exchange で Classification Ensembles についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!