How to Convert a big cell char array With in Table form in Each Column in MATLAB

2 visualizaciones (últimos 30 días)
Hello. I have import Data from website. I need to convert the Char array in Table with Values in Each Column
For Example In the following data I have 2x8 cell. The first Cell Predicted Class is the Column name and Cat is the Value.
The second Cell in first will be Column name Maximum, Minimum and Mean Value corresponding to there Values.
The Third Cell in first Row Predicted Class is the Column name and Fighter is the Value. The fourth Cell Fighter Levels, Fighter Values, Maximum, Minimum and Mean Value
The first row is C1 is the first Class and the 2nd row is C2 is the Second Class so it should be in loop to save the data for multiple classes.
Can anybody help me with that.
as shown in the following picture

Respuestas (1)

Dr. JANAK TRIVEDI
Dr. JANAK TRIVEDI el 3 de Feb. de 2023
Editada: Walter Roberson el 3 de Feb. de 2023
You can use the split and str2double functions in MATLAB to split the data and convert the values to a table. Here's an example:
data = {'Predicted Class','Cat','Maximum','Minimum','Mean Value',...
'Predicted Class','Fighter','Levels','Values','Maximum','Minimum','Mean Value'};
% Split the data by the delimiter ','
splittedData = split(data,',');
% Get the number of rows and columns from the splitted data
[rows,cols] = size(splittedData);
% Initialize a cell array to store the table data
tableData = cell(rows/2, cols/2);
% Loop through the splitted data and store the values in the tableData cell array
for i = 1:2:rows
for j = 1:2:cols
tableData{(i+1)/2, (j+1)/2} = splittedData{i,j};
end
end
% Convert the values in the tableData cell array to a table
table = cell2table(tableData);
% Convert the values in the table to numeric if possible
table.Variables = str2double(table{:,:});
  2 comentarios
Hammad Younas
Hammad Younas el 3 de Feb. de 2023
@Dr. JANAK TRIVEDI it is not working. Have you check the dataset.
Please provide solution for the attached Dataset
Hammad Younas
Hammad Younas el 6 de Feb. de 2023
@Walter Roberson @Dr. JANAK TRIVEDI this code does not work because my data has no comma ',' Can you please modified this?

Iniciar sesión para comentar.

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by