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

I'm trying to create

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

That is not what dataset would generally look like. A data set consists of variables and values,

So it might be:

 

Old   New

1      0

1      0

1      1

1      1

0      1

 

 What type of operation are you going to do with the resulting data set?

 

View solution in original post

3 REPLIES 3
ballardw
Super User

Are you saying that currently you have a text document that you need to create data from?

I would expect 'Good' and 'Bad' to be LEVELS of the Variables Old and New (or OldClaim and NewClaim) or such.

 

Can you provide a few rows of what you might want this to actually look like.

 

Here's a guess of one way:


data want;
  do i=1 to 243;
    old= 0;
    new= 0;
    output;
  end;
  do i=1 to 49;
    old= 0;
    new= 1;
    output;
  end;
  do i=1 to 71;
    old= 1;
    new= 0;
    output;
  end;
  do i=1 to 40;
    old= 1;
    new= 1;
    output;
  end;
  drop i;
run;

   
   
Rafa0001
Calcite | Level 5

Hi

 

I've attached the table.

ballardw
Super User

That is not what dataset would generally look like. A data set consists of variables and values,

So it might be:

 

Old   New

1      0

1      0

1      1

1      1

0      1

 

 What type of operation are you going to do with the resulting data set?

 

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

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
  • 3 replies
  • 577 views
  • 0 likes
  • 2 in conversation