Hello Stata users;
I do have this data:
The first variable is the ID of the Month, it is just a time variable variable, the second variable is the month itself, the third variable is the number of passenger transported per month. So this data shows the distribution of the pax demand by month. I wanna study this distribution even more, as you can see, it could have some seasonality in it, so I wanna show that seasonality, I would like to have some statistics about the number of seasons that could be the best to use for this kind of data and the amount of the demand that each season has.
Is there any help please?
I do have this data:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input byte Mois_ID str12 Mois long Nombre_de_Voyageurs 1 "janvier-22" 111486 2 "février-22" 114215 3 "mars-22" 177130 4 "avril-22" 120772 5 "mai-22" 161773 6 "juin-22" 157110 7 "juillet-22" 187646 8 "août-22" 184216 9 "septembre-22" 164731 10 "octobre-22" 162189 11 "novembre-22" 141468 12 "décembre-22" 170008 end
Is there any help please?