Table, delete columns with zero
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
newbie9
le 27 Août 2019
Réponse apportée : Walter Roberson
le 19 Juil 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 commentaires
Plus de réponses (1)
Walter Roberson
le 19 Juil 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 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!