BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
chennupriya
Quartz | Level 8

HI ,

I have a dataset like below which has itemid and itemname Diff is Difference

So for id id 123 Amount_1 and Amount_2 are off and for id 456 Amount_1 and Amount_2 are off but for 678 Amount_1,

Amount_2,Amount_3,Amount_4 are off how can we best show in a graph for all the three . Can anyone please help

 

itemid itemname Diff
123 Amount_1 1
123 Amount_2 1
456 Amount_1 1
456 Amount_2 1
456 Amount_3 1
678 Amount_1 1
678 Amount_2 1
678 Amount_3 1
678 Amount_4 1

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

I think a two-way table would do just as well

 

data have;
input itemid itemname $ Diff;
datalines;
123 Amount_1 1 
123 Amount_2 1 
456 Amount_1 1 
456 Amount_2 1 
456 Amount_3 1 
678 Amount_1 1 
678 Amount_2 1 
678 Amount_3 1 
678 Amount_4 1 
;

proc tabulate data=have format=5.0;
class itemid itemname;
var diff;
table itemname, diff*itemid*max="";
run;
PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

I think a two-way table would do just as well

 

data have;
input itemid itemname $ Diff;
datalines;
123 Amount_1 1 
123 Amount_2 1 
456 Amount_1 1 
456 Amount_2 1 
456 Amount_3 1 
678 Amount_1 1 
678 Amount_2 1 
678 Amount_3 1 
678 Amount_4 1 
;

proc tabulate data=have format=5.0;
class itemid itemname;
var diff;
table itemname, diff*itemid*max="";
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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 954 views
  • 2 likes
  • 2 in conversation