How to categorize month/day/year into a period of months

4 vues (au cours des 30 derniers jours)
Aj Jebelli
Aj Jebelli le 18 Juin 2021
Commenté : SALAH ALRABEEI le 18 Juin 2021
I have data that looks like this:
Value Date
1 1/10/2018
2 1/14/2018
3 1/21/2018
4 2/22/2018
. .
. .
. .
16 4/21/2020
I want to categorize the days in Jan-2018 for example to be labeled "1', Feb-2018 would be labeled "2" etc. I am hoping my data would look like this:
Value Month
1 1
2 1
3 1
4 2

Réponses (1)

SALAH ALRABEEI
SALAH ALRABEEI le 18 Juin 2021
Assuming your date array is called A. This might work
Achar = char(A);
lab = A(:,1);
  2 commentaires
Aj Jebelli
Aj Jebelli le 18 Juin 2021
???
SALAH ALRABEEI
SALAH ALRABEEI le 18 Juin 2021
sorry, this is the correct.
Achar = char(A);
lab = Achar(:,1);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Type Identification dans Help Center 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