Attachment 2.1.1  Sorting out 16 portfolios (ticker)

*Access to the IBES data-set on Oracle;

libname ibes '/u51/business/gcao/IBES';
proc access dbms=oracle;
create ibes.sig.access;
user=gcao;
orapw=dog78dy;
table=sig;
path="@RLIMS_DB";
assign=yes;
list all;

create ibes.sig.view;
select all;
run;

proc gchart data=ibes.sig;
hbar sectname / discrete;
title 'Data described by IBES.SIG';
run;

proc print data=ibes.sig (obs=20);
title 'Twenty Observations';
run;

proc freq data=ibes.sig;
tables sectname;
title 'Data described by IBES.SIG';
run;


This page hosted by Get your own Free Home Page