Units of values in the data set
2 次查看(过去 30 天)
显示 更早的评论
I am using this data for my project. I want to know the units of the values inside this data set. That if torque, emission,speed and fuel injection rate units. Kindly help
engine_dataset
0 个评论
采纳的回答
Ronit
2023-6-7
To check the units of the data set engine_dataset variables, we can use the table function in MATLAB to create a table from the data set.
% creating table for the variables
engine_table = table(engine_dataset.Torque, engine_dataset.Emission, ...
engine_dataset.Speed, engine_dataset.FuelInjectionRate);
% displaying the variable units
disp(engine_table.Properties.VariableUnits);
7 个评论
Ronit
2023-6-15
Check the path for the file 'engine_dataset.csv' then copy and paste it and add '\engine_dataset.csv'. After doing this put this path in readtable().
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!