How do you turn empty brackets ("[]") in a table into a NaN?
    15 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    BA
      
 el 19 de En. de 2023
  
    
    
    
    
    Comentada: BA
      
 el 19 de En. de 2023
            Hi, I have a large dataset that I'm having some troubles with. There are a lot of areas in the dataset where there are missing datapoints. The issue is that some of the analyses I'm trying to run won't do so on this dataset unless the empty brackets are turned into NaNs. 
I was trying to turn these empty brackets into NaNs using the isempty function, but on a table, it just doesn't work. Even if I call "isempty(dataset(i,j))" and i know it to be the empty brackets, MATLAB returns a logical 0, meaning no its not empty. 
The only way I've been able to get isempty to work on the dataset is by turning my entire table into a cell. Unfortunately, that's just not feasible because then I'll lose all the variables in my table when i run "table2cell(x)". This is the script though:
dataset = Data_EMA(:,14); %Data_EMA is the name of the master dataset. I took out just one row from it to run this test script
for i = 1:height(dataset)       %running script through i'th row, j'th column
    if isempty(dataset{i,1})==1 %running script through i'th row, j'th column
        dataset{i,1} = NaN;     %if the i,j is an empty cell, it sets it to a NaN
    end
end
The big issue here, as I've stated, is that I have to turn my table into a cell. Once I turn it back into a table, I'll lose all my variable names. I was thinking a solution here would be to write a giant for loop that runs through each column, saves the variable names, and then keeps concatenating each column to a new table and writes the old variable name back. This is obviously computationally expensive (going to take a very long time to run) so I'm wondering if anyone has any alterantive ways because I don't think its that big of an issue to where I would have to go down the route of using a loop that saves variable names, etc.
If someone has an idea, please let me know! I've attached the dataset to this post.
2 comentarios
  Stephen23
      
      
 el 19 de En. de 2023
				
      Editada: Stephen23
      
      
 el 19 de En. de 2023
  
			"Even if I call "isempty(dataset(i,j))" and i know it to be the empty brackets, MATLAB returns a logical 0, meaning no its not empty."
For the simple reason that a scalar cell array is not empty:
S = load('Data_EMA.mat')
S.Data_EMA.Data_EMA14
S.Data_EMA.Data_EMA14(6) % parentheses refer to the cell array itself.
Read what MATLAB is telling you: 1x1 cell array, it states very clearly. Is 1x1 empty? (hint: no).
However the content of a scalar cell array certainly might be empty:
S.Data_EMA.Data_EMA14{6} % curly braces returns the cell content
The different indexing to refer to a cell array and its content is explained here:
Respuesta aceptada
  Walter Roberson
      
      
 el 19 de En. de 2023
        load Data_EMA;
mask = cellfun(@isempty,Data_EMA.Data_EMA14);
Data_EMA.Data_EMA14(1:10)
Data_EMA.Data_EMA14(mask) = {NaN};
Data_EMA.Data_EMA14 = cell2mat(Data_EMA.Data_EMA14);
Data_EMA.Data_EMA14(1:10)
8 comentarios
  Walter Roberson
      
      
 el 19 de En. de 2023
				When you originally read the data from the files, it would have been better if you had done 
filename = 'AppropriateName.txt';
opts = detectImportOptions(filename);
opts = setvartype(opts, FIELDNUMBER, 'double');
table_for_this_file = readtable(filename, opts);
Más respuestas (0)
Ver también
Categorías
				Más información sobre Data Type Identification en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


