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

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1681 views
  • 0 likes
  • 2 in conversation