Effacer les filtres
Effacer les filtres

Units of values in the data set

3 vues (au cours des 30 derniers jours)
Nandhu mol M. V
Nandhu mol M. V le 7 Juin 2023
Commenté : Ronit le 15 Juin 2023
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

Réponse acceptée

Ronit
Ronit le 7 Juin 2023
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 commentaires
Nandhu mol M. V
Nandhu mol M. V le 15 Juin 2023
unitdataset
Error using readtable
Unable to find or open 'engine_dataset.csv'. Check the path and filename or file permissions.
Error in unitdataset (line 1)
engine_table = readtable('engine_dataset.csv');
Ronit
Ronit le 15 Juin 2023
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().

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2014b

Community Treasure Hunt

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

Start Hunting!

Translated by