Creating new dataset corresponding to certain name within a variable column

1 vue (au cours des 30 derniers jours)
Clara Woodie
Clara Woodie le 22 Mar 2019
Commenté : Clara Woodie le 22 Mar 2019
I have a dataset with four columns: day, bottle, species finalC. Attached is a screenshot for reference. In the bottle column, there are many types of bottle names I reference. I wish to create a new dataset corresponding only to a specific name of bottle, for example "C-a"
Desired outcome looks as follows:
day bottle species finalC
1 'C-a' 'Colp' 1077.58620700000
2 'C-a' 'Colp' 86525.1499800000
2 'C-a' 'Colp' 208333.333300000

Réponses (1)

the cyclist
the cyclist le 22 Mar 2019
Here is one possible way. (It assumes your table's variable name is tbl.)
outcome = tbl(ismember(tbl.bottle,'C-a'),:);
  1 commentaire
Clara Woodie
Clara Woodie le 22 Mar 2019
Thank you so much! I had been stuck for so long! May I ask you a follow-up question?
I don't know if this is even possible to do in Matlab, but what I'm trying to do is this in words:
% for day = 1 and bottle = C-a or C-b or C-c or C-d,
insert a new row with day=1, species="Colp", bottle="Colp_avg"
and finalC = the average of finalC values for C-a,C-b,C-c,and C-d

Connectez-vous pour commenter.

Catégories

En savoir plus sur Red 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!

Translated by