/****************************************************************************** * Programme : Regression Analysis and SASHELP Metadata Exploration * Reference : REGRES07EE * Source : https://www.wearecas.eu/en/sampleCode/REGRES07EE ******************************************************************************/ /* --- BLOC 1 --- */ proc reg data=sashelp.class; model weight = height; quit; /* --- BLOC 2 --- */ ods select none; proc contents data=sashelp._all_; ods output members=m; run; ods select all; /* --- BLOC 3 --- */ proc print; where memtype = 'DATA'; run; /* --- BLOC 4 --- */ proc contents data=sashelp._all_; run;