BookmarkSubscribeRSS Feed
Mattress58
Fluorite | Level 6

 

how can I get these on the same row to look like this

 

Region  Vehicle  year1  color1   year2  color 2

South   impala    2014    blue     2015     black

 

 

Region  Vehicle  year1  color1   year2  color 2

South   impala    2014   blue

South   impala                              2015     black

 

2 REPLIES 2
LinusH
Tourmaline | Level 20
Depends on how the rest of your data set look like.
How did you get this layout? It looks like a transpose that went wrong.
I would prefer a normalized table design, which is more flexible to most reporting requirements. That would mean to transpose columns to rows, having one year, and one colour column. For your particular example it would be a quite simple use of the coalesce () function.
Data never sleeps
Astounding
PROC Star

Here's an approach that doesn't require you to spell out all the variables you need to work with:

 

proc sort data=have;

by region vehicle;

run;

 

data want;

update have (obs=0) have;

by region vehicle;

run;

 

Good luck.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1230 views
  • 2 likes
  • 3 in conversation