Units of values in the data set
조회 수: 8 (최근 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에서 Text Data Preparation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!