/****************************************************************************** * Programme : Ejemplo 5: Describir un conjunto de datos SAS * Reference : EJEMPL3525 * Source : https://www.wearecas.eu/en/sampleCode/EJEMPL3525 ******************************************************************************/ /* --- BLOC 1 --- */ options pagesize=40 linesize=80 nodate pageno=1; LIBNAME health 'SAS-library'; proc datasets library=health nolist; contents data=group (read=green) out=grpout; title 'The Contents of the GROUP Data Set'; run; quit;