BookmarkSubscribeRSS Feed
ysyeda
Calcite | Level 5

Hi,

Can anybody explian this program:

data work.bp;
input variable$ type$ len label$;
datalines;
Diabp num 8  Diolastic blood Pressure
Pno Char 4  Patient no
sysbp num 8  Systolic blood pressure
;
run;
ods select Extremeobs;
proc univariate data=work.bp;
var Diabp;
by pno;
run;

Yasmin Syeda
1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yes.

You have a datastep which reads in some data from datalines.

Then a proc univariate is run.

The bit you are probably confused with is the ods select.  What happens is behind the scenes with procedures like univariate, is that certain tables are created.  You can see what each procedure creates by putting:
ods trace on;

http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#p1fpt3uuow90o3n155hs...

Before your procedure.

This will show in the log each object created by the procedure, giving the name and some other information.  You can then tell SAS to keep those objects by using the:

ods select <objectname>;

SAS Docs help here:

http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#p1b72ff70v3obrn16aan...

http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#p0oxrbinw6fjuwn1x23q...

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 916 views
  • 0 likes
  • 2 in conversation