I want to generate a dummy for my dataset. I have a (48x1 cell called category)
dummy=[];
for i=1:1:48
if isequal(category(i), 'Beef & Pork')
dummy(i)=1
else
dummy(i)=0
end
end

 Réponse acceptée

Guillaume
Guillaume le 28 Juin 2018

1 vote

dummy = strcmp(category, 'beef & Pork')

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by