Hi Team,
Greetings
I am new to SAS and just wondering meaning of below lines written in one of existing SAS program
proc freq data=strat.master noprint;
table flag * month / list missing out=strat.rep;
table flag2 * month2 / list missing out=strat.rep2;
run;
Can someone please explain me what these lines actually doing ?
Thanks In Advance
Your best bet is to read the manual, it will explain in great detail better than we can what each of the paramters and options do:
A real rough start: PROC says that a SAS procedure is being called. The word following is the name of the procedure, FREQ in this case.
Look in the online help for the procedure name.
Also depending on your install you can select the procedure name and hit F1 and tha will open the help for that statement.
The SAS online help is usually pretty good with examples for many options.
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!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.