Table, delete columns with zero
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
newbie9
el 27 de Ag. de 2019
Respondida: Walter Roberson
el 19 de Jul. de 2021
I have a table with many rows and columns. How can I delete a column if any row contains zero? (I found a million ways to delete rows, but not columns, when dealing with tables.)
0 comentarios
Más respuestas (1)
Walter Roberson
el 19 de Jul. de 2021
N = T.Properties.VariableNames;
nvar = length(N);
mask = true(1,nvar);
for K = 1 : nvar
if isnumeric(T.(N{K})) && any(T.(N{K}) == 0, 'all')
mask(K) = false;
end
end
newT = T(:,mask);
0 comentarios
Ver también
Categorías
Más información sobre Logical 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!