BookmarkSubscribeRSS Feed
AminB
Fluorite | Level 6

The simplest answer is a combination of 2 answers:

data have;

input Subject $ Value1    value2 value3  value4;

datalines;

10001     3        4       5       8

10007     4        6       4       9

10009     4        9      10       3

run;
data need;

   set have;

   value = max(of value1 - value4);

run;

the dataset NEED will look as follows:

10001     3        4       5       8     8

10007     4        6       4       9     9

10009     4        9      10       3     10

Message was edited by: Amin Bardai

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 15 replies
  • 3705 views
  • 0 likes
  • 8 in conversation