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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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