SAS Programming In 90 Days | SAS Tutorial For Beginners | SAS Training | Day - 2

Sharma ji ka Gyan & Tricks
Sharma ji ka Gyan & Tricks
2 هزار بار بازدید - 3 سال پیش - SAS Programming In 90 DaysDay
SAS Programming In 90 Days

Day - 2

This video will also introduce you to Data Analytics and SAS Programming concepts.

/*SAS Programming in 90 Days

SAS Data Types
SAS in Global Statments
OBS Statement
Keep & Drop Statments

*/

title "Class Report";
footnote "Class Report End Here &sysdate9";
proc report data=sashelp.class;
run;

* OBS statement with options;

options firstobs=1 obs=10;
proc print data=sashelp.class;
run;

options firstobs=5 obs=15;
proc print data=sashelp.class;
run;

proc print data=sashelp.class(firstobs=1 obs=15);
run;

proc print data=sashelp.class noobs;
run;

*Keep and Drop Statment;

proc print data=sashelp.class (keep= Name Age Height);
run;

proc print data=sashelp.class (drop= Height Age);
run;

Proc Report data=sashelp.class;
columns name age sex;
run;

Proc tabulate data=sashelp.class;
class sex;
var height weight;
table sex*(height weight),mean;
run;


Proc Copy in=sashelp out=work;
select cars;
run;



#SAS
#SASBase
#SASProgramming
#Sharmajikagyan
3 سال پیش در تاریخ 1400/08/19 منتشر شده است.
2,039 بـار بازدید شده
... بیشتر