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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 713 views
  • 0 likes
  • 2 in conversation