Hello (new here so excuse if my jargon sounds odd) For my panel data (going from 1st Jan 2012 - 30 December 2013) I want to plot the values for a variable x for the 5th and 25th day of each month, starting in July 2012. I managed to drop the months before July 2012 with
Code:
drop x_201201* x_201202* x_201203* x_201204* x_201205* x_201206*
Code:
gen date = date(day, "YMD") format date %td]
Comment