Effacer les filtres
Effacer les filtres

Grabbing Years of table data to Create New Tables

1 vue (au cours des 30 derniers jours)
Josh Morell
Josh Morell le 28 Août 2020
Commenté : Peter O le 29 Août 2020
I have a table with two collumns. The first collumn is dates. The second collumn is the data. Is there an easy way to grab all the data from each year and create new tables?

Réponses (1)

Peter O
Peter O le 29 Août 2020
A fast solution might be to use the Timestamp to extract the date for each row and then use the group capabilities of tables.
[G, yrs] = findgroups(year(T.date))
Then you can iterate through each group, to get new tables. I'll place them into cells here, for simplicity and extnesibility. If you have a large number of years you may want to preallocate the cell.
newTablesByYear = cell(numel(yrs),1)
for ix=1:numel(yrs)
newTablesByYear{ix} = T(G==ix,:)
end
  1 commentaire
Peter O
Peter O le 29 Août 2020
  • This solution assumes the first column is formatted as a datetime. If it's a date string then you may have to do a little extra formatting on the input before the YEAR() function knows what to do with it. See the help on datetime and datestr for some guidance.

Connectez-vous pour commenter.

Tags

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by