Hi i have created options obs=1 for some use now i want to make the obs= default
options obs=1;
data w1;
input id;
cards;
1
2
3
4
5
6
7
8
9
10
run;
i have tryed to remove the options by giving
obs=;
by it was showing error i know the i can give max obs as 1099511627776 is the default but i want to make it to default..
Use options obs=max. The actual value will vary depending on the version of SAS and your hardware.
xx options obs=100;
xx %put %sysfunc(getoption(obs));
100
xx options obs=max;
9223372036854775807
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!