/******************************************************************************
 * Programme : Opción de conjunto de datos INDEX=
 * Reference : OPCIONF70A
 * Source    : https://www.wearecas.eu/de/sampleCode/OPCIONF70A
 ******************************************************************************/

/* --- BLOC 1 --- */
data new(index=(ssn));
/* ... more SAS code ... */
run;

/* --- BLOC 2 --- */
data new(index=(cityst=(city state)));
/* ... more SAS code ... */
run;

/* --- BLOC 3 --- */
data new(index=(ssn cityst=(city state)));
/* ... more SAS code ... */
run;

/* --- BLOC 4 --- */
data new(index=(ssn /unique));
/* ... more SAS code ... */
run;

/* --- BLOC 5 --- */
data new(index=(ssn /nomiss));
/* ... more SAS code ... */
run;

/* --- BLOC 6 --- */
data new(index=(ssn /unique/nomiss cityst=(city state) /unique/nomiss));
/* ... more SAS code ... */
run;

