Python Forum
selecting only october to march from monthly data u - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: selecting only october to march from monthly data u (/thread-19781.html)



selecting only october to march from monthly data u - Staph - Jul-14-2019

I have array of monthy data. I want to select monthly values starting from october to march like this
my data = starts from [1950-01,1950-02,1950-03, ...]

this is what I want
selection = [1950-10, 1950-11, 1950-12, 1960-1,1960-2, 1960-3, ...] # notice it continues to 1960

thanks


RE: selecting only october to march from monthly data u - Larz60+ - Jul-14-2019

what have you tried?