BookmarkSubscribeRSS Feed
tahaahsin
Calcite | Level 5

Hi All,

 

So I'm running a program to inset empty values for all variables except date values between two observations that have a gap in their date interval. For example, an observation that has 1999Q1 and the next one has 2000Q3.

 

Also I want to do this across bygroups in my dataset--I have a set of quarterly observations for a given individual.

 

I'll impute the date that goes missing after "expansion" later, but right now my main concern is getting the additional observations with the missing dates.

 

Thank you for the help and suggestions!

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16
Could you please provide sample data and expected output
Thanks,
Jag
PGStats
Opal | Level 21

Here is how to do this with proc expand:

 

data have;
input id qtr :yyq6. x;
format qtr yyq6.;
datalines;
1 2009Q1 1
1 2009Q3 2
2 2010Q1 3
2 2011Q1 4
2 2011Q2 5
;

proc expand data=have out=want to=qtr method=none;
by id;
id qtr;
run;

proc print data=want noobs; run;
PG

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2868 views
  • 0 likes
  • 3 in conversation