Published on :
Général INTERNAL_CREATION

Sans titre

This code is also available in: Deutsch Español
Data Analysis

Type : INTERNAL_CREATION


The examples use generated data (datalines) or SASHELP.

1 Code Block
Copied!
1DATA example;
2 DO i=1 to 10;
3 x=i + 1;
4 OUTPUT;
5 END;
6r­un;
7 
8PROC PRINT DATA=example; RUN;
2 Code Block
Copied!
1 
2PROC PRINT
3DATA=example (firstobs=2 obs=4);
4 
5where i > 5;
6RUN;
7 
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.