BookmarkSubscribeRSS Feed
art297
Opal | Level 21

How long before the mead is ready for consumption?

Linlin
Lapis Lazuli | Level 10

This is wine from grapes with a little bit honey added. I am going to make mead(only use honey and water) in December.

PGStats
Opal | Level 21

You can also get rid of the random access (POINT=) and read the data only once, using arrays :

%let regSize=200;

data rCars(keep=grp engineSize horsepower) / view=rCars;
array es{&regSize} _temporary_;
array hp{&regSize} _temporary_;
set sashelp.cars;
st = 1 + mod(_n_-1, &regSize);
es{st} = engineSize;
hp{st} = horsePower;
if _n_ >= &regSize then do;
     grp = 1 + _n_ - &regSize;
     do i = st+1 to &regSize, 1 to st;
          engineSize = es{i};
          horsePower = hp{i};
          output;
          end;
     end;
run;

proc reg data=rCars outest=eCars;
by grp;
model horsePower = enginesize;
run;

PG

PG

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
  • 18 replies
  • 4505 views
  • 1 like
  • 7 in conversation