フィルターのクリア

How to fix table variable related error?

30 ビュー (過去 30 日間)
Sanchit
Sanchit 2023 年 7 月 25 日
I am using the following matlab code
MdlReduced = fitrensemble(XX(:,{'td' 'ssr' 'tp'}),MPG,'Method','Bag', ...
'NumLearningCycles',200,'Learners',t);
But this is giving the following error
Error using ()
Unrecognized table variable name 'td'.
Please suggest me how to fix it?
Sanchit
  2 件のコメント
Saurabh Chaudhary
Saurabh Chaudhary 2023 年 7 月 25 日
can you provide data for XX? Also look the documentation of fitrensemble.
Sanchit
Sanchit 2023 年 7 月 25 日
Thank you very much for your kind suggestion. I have attached sample data file along with code in previous comment. I request you to kindly have look on it and suggest me how to fix it.
Sanchit

サインインしてコメントする。

採用された回答

Mrutyunjaya Hiremath
Mrutyunjaya Hiremath 2023 年 7 月 25 日
Here It is ...
clc;
clear all;
close all;
data = readtable('sample.csv');
X = data(:, 1:end);
% Get the current variable names
currentVariableNames = data.Properties.VariableNames;
% Define the new variable names (use as many names as you have variables)
newVariableNames = {'d2m','t2m','ev','pev','ssr','ssrd','tp','vpd','rh','gpp'};
% Create a new table with the new variable names
data = array2table(data{:,:}, 'VariableNames', newVariableNames);
t = templateTree('PredictorSelection','interaction-curvature','Surrogate','on', ...
'Reproducible',true); % For reproducibility of random predictor selections
MdlReduced = fitrensemble(data(:,{'d2m' 'ssr' 'tp'}),data(:,'gpp'),'Method','Bag', ...
'NumLearningCycles',200,'Learners',t);
%Compute the R2 of the reduced model.
yHatReduced = oobPredict(MdlReduced);
r2Reduced = corr(MdlReduced.Y,yHatReduced)^2
  2 件のコメント
Sanchit
Sanchit 2023 年 7 月 25 日
Thank you very much for your kind help. It worked well. Can I request you to kindly help me in one more code with same sample input file. I am attaching the code for your kind help.
Sanchit
Mrutyunjaya Hiremath
Mrutyunjaya Hiremath 2023 年 7 月 27 日
Welcome .. :)

サインインしてコメントする。

その他の回答 (1 件)

Steven Lord
Steven Lord 2023 年 7 月 25 日
You expected for your table XX to contain a variable named td, but it doesn't. If you were trying to adapt another example to your needs perhaps the table in the example had that variable but yours does not. You can check if XX has that variable name:
listOfVariableNames = XX.Properties.VariableNames
Does listOfVariableNames contain 'td'?
ismember('td', listOfVariableNames)
Without seeing how you constructed XX it's difficult to offer concrete suggestions for how to solve the problem. If you read the data in from a file perhaps the file headers were not what you expected them to be? If you constructed that table variable using an expression [like td(:, 1)] instead of a plain variable name [like td] then the table variable would not be named using the variable name. Setting the variable name using renamevars could be an option in that scenario.
  1 件のコメント
Sanchit
Sanchit 2023 年 7 月 25 日
Thank you very much for your prompt suggestions. I am attaching the matlab code along withsample input file. I request you to kindly have a look on it and suggest me how to fix it.
I appreciate your kind help.
Sanchit

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeTables についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by