am trying to cluster my data but matlabs keeps on indicating that Unrecognized table variable name 'sub_metering_1'.
1 次查看(过去 30 天)
显示 更早的评论
>> 'C:\Users\Vlad\Downloads\household_power_consumption_2007';
>> data = readtable(file_path, 'Delimiter', ';');
X = data{:, {'sub_metering_1', 'sub_metering_2', 'sub_metering_3'}};
Error using {}
Unrecognized table variable name 'sub_metering_1'.
3 个评论
回答(1 个)
Dyuman Joshi
2023-10-7
Variable names in MATLAB, independently or of a data type, are case sensitive. You need to use the variable name with the proper case as it is defined.
For your case, that would be -
X = data{:, {'Sub_metering_1', 'Sub_metering_2', 'Sub_metering_3'}};
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!