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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 3030 views
  • 0 likes
  • 3 in conversation