ods html file="C:\Users\mithe\Škola\MV011 Statistika I --- výuka 2014\SAS\cars2.html"; proc print data=CV3.cars; var make model horsepower; where type='Truck'; run; ods html close; ods rtf file="C:\Users\mithe\Škola\MV011 Statistika I --- výuka 2014\SAS\cars2.rtf"; proc print data=CV3.cars; var make model horsepower; where type='Truck'; run; ods rtf close; ods pdf file="C:\Users\mithe\Škola\MV011 Statistika I --- výuka 2014\SAS\cars2.pdf"; proc print data=CV3.cars; var make model horsepower; where type='Truck'; run; ods pdf close;