BookmarkSubscribeRSS Feed
varmac
Calcite | Level 5

Hi all,

The raw data in my dataset is something like:

x variable(character):    y variable(number)    siteid(number)

cohort b                                   40                          1

cohort a                                   50                          2

                                               60                          1

roll_in                                      18                          3

roll_inb                                      5                          4

                                                2                          1

roll_inc                                      5                          1

                                                6            

roll_ind                                      8

When I use the following code, I'm getting a warning message that 26 observations were omitted due to missing id values. Do you have any suggestions on how to correct this?

proc transpose data=tor1 out=tor2;

id x;

by siteid;

var y;

run;

1 REPLY 1
Ksharp
Super User

You can't do this for the sake of missing value in these variables.

So What output do you need after transposing dataset ?

Ksharp

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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