Convert tablet to matrix

13 visualizaciones (últimos 30 días)
Nils Hammarsten Brywe
Nils Hammarsten Brywe el 5 de Nov. de 2021
Comentada: Nils Hammarsten Brywe el 14 de Nov. de 2021
My code:
filename='Excelspreadsheet.xlsx';
Data=readtable(filename)
7×3 table
Classes Hours Grades
{'CHM' } 3 {'C'}
{'Calc' } 4 {'A'}
{'CHM lab' } 2 {'F'}
{'College comp'} 4 {'D'}
{'ECAL' } 1 {'A'}
{'MHCS' } 1 {'B'}
{'EGE' } 1 {'A'}
A=4;B=3;C=2;D=1;F=0;
Problem:
What I'm trying to do is to either convert the characters under grades to something which allows me to convert this table into a matrix. Or my other solution would be to convert the grades to the corresponding numbers which I have written in the code. However, I can't get it to work.
  3 comentarios
Cris LaPierre
Cris LaPierre el 5 de Nov. de 2021
Why can't you keep it a table?
Nils Hammarsten Brywe
Nils Hammarsten Brywe el 5 de Nov. de 2021
Because I need to multiply the array with hours with the array with grades. The goal is to calculate a gpa

Iniciar sesión para comentar.

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 5 de Nov. de 2021
Editada: Cris LaPierre el 5 de Nov. de 2021
There may be an easier way, but here's what I came up with.
  1. Read in your grades as categoricals
  2. Rename the categories for grades from letters to numbers
  3. Convert your categorical grades to doubles
  4. Perform your calculation for gpa
% Step 1
opts = detectImportOptions('https://www.mathworks.com/matlabcentral/answers/uploaded_files/790884/Excelspreadsheet.xlsx');
opts = setvartype(opts,[1,3],'categorical');
T = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/790884/Excelspreadsheet.xlsx',opts)
T = 7×3 table
Classes Hours Grades ____________ _____ ______ CHM 3 C Calc 4 A CHM lab 2 F College comp 4 D ECAL 1 A MHCS 1 B EGE 1 A
% Step 2
T.Grades = renamecats(T.Grades,categories(T.Grades),["4","3","2","1","0"])
T = 7×3 table
Classes Hours Grades ____________ _____ ______ CHM 3 2 Calc 4 4 CHM lab 2 0 College comp 4 1 ECAL 1 4 MHCS 1 3 EGE 1 4
% Step 3
T.Grades = str2double(string(T.Grades))
T = 7×3 table
Classes Hours Grades ____________ _____ ______ CHM 3 2 Calc 4 4 CHM lab 2 0 College comp 4 1 ECAL 1 4 MHCS 1 3 EGE 1 4
% Step 4 (example calculation)
T.Sum = T.Hours + T.Grades
T = 7×4 table
Classes Hours Grades Sum ____________ _____ ______ ___ CHM 3 2 5 Calc 4 4 8 CHM lab 2 0 2 College comp 4 1 5 ECAL 1 4 5 MHCS 1 3 4 EGE 1 4 5
  6 comentarios
Cris LaPierre
Cris LaPierre el 14 de Nov. de 2021
Editada: Cris LaPierre el 14 de Nov. de 2021
As long as you know the grading system is A-F, you can define that in the code before the sheet is loaded. That is what I was trying to show you how to do. That code will work even when not all the categories appear in the spreadsheet.
Feel free to test it out. That's the only way I would be convinced it works. And it's faster than waiting for replies here.
Nils Hammarsten Brywe
Nils Hammarsten Brywe el 14 de Nov. de 2021
Aha okay. Thank you so much!

Iniciar sesión para comentar.

Más respuestas (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 5 de Nov. de 2021
You can consider to convert it into cell array and matrix arrays, e.g.:
CLS = table2array(T(:,1)) % Cell Array
HRS = table2array(T(:, 2)) % Matrix Array
GRD = table2array(T(:,3)) % Cell Array

Nils Hammarsten Brywe
Nils Hammarsten Brywe el 5 de Nov. de 2021
Thank you! However, I uploaded the wrong excel file. In the actual one, the grades are characters. I'm trying to make a multiplication between the 'Hours' and the 'Grades" but it's unable to do it since the numbers are numeric and the grades are not only characters but they are also in cells.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by