BookmarkSubscribeRSS Feed
George_S
Fluorite | Level 6

how to get need from have(move variable y upward two cells)  in one data step.

Thanks!

data have;

input x y;

cards;

1

2

3 a

4 b

5 c

;

run;

need:

x y

1 a

2 b

3 c

4

5

1 REPLY 1
Linlin
Lapis Lazuli | Level 10

Hi George,

Try this:

data have;

infile cards missover;

input x y $;

cards;

1

2

3 a

4 b

5 c

;

run;

data need;

merge have(keep=x) have(firstobs=3 keep=y);

run;

proc print;run;

Linlin

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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