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

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