Presentation is loading. Please wait.

Presentation is loading. Please wait.

HPR223 2008 Copyright © 1999-2008 Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and.

Similar presentations


Presentation on theme: "HPR223 2008 Copyright © 1999-2008 Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and."— Presentation transcript:

1 HPR223 2008 Copyright © 1999-2008 Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and international treaties. Unauthorized reproduction of this presentation, or any portion of it, may result in severe civil and criminal penalties and will be prosecuted to maximum extent possible under the law. HRP 223 - 2008 Topic 4 – Making and Looking at Data

2 HPR223 2008 Toy Data  While it is of little use in real life, SAS lets you manually enter data.  First make a library so the data will be permanently stored.

3 HPR223 2008 Toy Data  Tell it to make the dataset:

4 HPR223 2008

5 If you type a number as the first value of a character variable, EG converts the column to numeric. Right click on the column headings to change them back if this inadvertently happens.

6 HPR223 2008 Professional programmers equate 0 with “no” and 1 means “yes” but create a format to make reports pretty.

7 HPR223 2008 Open the data, then set it to be not read only by unchecking the option.

8 HPR223 2008 When you come back…  If you return to the project it will have forgotten about the formats you applied.  Add a one line program to tell it what libraries (folders) have formats stored in them. This little program shows the details on formats in a library.

9 HPR223 2008 These 4 records really represent 300 people. So if you were to do a frequency count on the cancer name variable, you would get the wrong count. Notice that it uses the labels.

10 HPR223 2008 If you find the label “The FREQ Procedure” annoying, turn it off in the options Tasks > Tasks General pane. This is the same as the code: ods noproctitle; You can also set or remove default titles and footnotes here.

11 HPR223 2008 Fix the title also:

12 HPR223 2008 Setting the Order  There are options to set the order that the results print. If the options don’t work, make a format.

13 HPR223 2008 Ordering the Information  When data is sorted in format order, the first “letter” of the alphabet is blank. So put a leading space in the format for the things you want listed first. I added a leading blank before the Y

14 HPR223 2008 One format is numeric. The other format is character.

15 HPR223 2008 Two Categorical Variables  You can do similar voodoo with two categorical variables: … no idea why Frequency count shows first on the task roles.

16 HPR223 2008 Specify What is a Row vs. a Column  Drag your outcome variable over first.  Drag the exposure variable over second. First

17 HPR223 2008 The character variable lists No before Yes.

18 HPR223 2008 Notice the leading space before the Y. You could go back and manually change the format by clicking on the column heading in the data set but I recommend just applying it in the analysis. This will replace values in a character variable so this a character format.

19 HPR223 2008 Be aware that all the common statistics are here so you do not need to learn the code. Use the Preview code button to see if you have the right options set.

20 HPR223 2008 Summarizing Numeric Data  Begin with a graphic. – Remember that you want to show both central tendency and variability. – You have already briefly seen the Summary Statistics and Distribution Analysis menu options (aka proc means and proc univariate).  I want you to know how to summarize large and small datasets.

21 HPR223 2008 Numeric Data  Say somebody tells you to simulate rolling dice. The formula to do this says: – generate a random number between 0 and 1 – multiply it by 6 – round up to the closest integer data die; *the 22 says which list of numbers between 0 & 1; aNumber = ranuni(22); die = ceil(6*aNumber); * Generate a random integer between 1 and 6.; dieDie = ceil(6*ranuni(78687632)); output; * write to the new dataset; return; * go to the top and try to read in data; run;

22 HPR223 2008 Doing Stuff Repeatedly  How to roll two dice: data dice; do x = 1 to 2 by 1; roll= ceil(6*ranuni(78687632)); output; end; return; * go to the top and try to read in data; run;

23 HPR223 2008 Craps…  In the dice game “craps” you throw two dice and the number you roll determines if you win or lose. How do you simulate rolling 10 pairs of dice? data craps ; do trial = 1 to 10; do dieNumber = 1 to 2; roll = ceil(6*ranuni(78687632)); output; end; return; run;

24 HPR223 2008 The Total  Calculate the sum across the rolls using Summary Statistics on the Describe menu.

25 HPR223 2008 Total on a Trial

26 HPR223 2008 Do the histogram on the summary data.

27 HPR223 2008 Crank up the number of simulations. Turn off the histograms for each trial. Generate a histogram based on the 1000 trials. I want to fix the way the histogram is binned. When the code is open, push any key and it will make a copy of the code which you can edit.

28 HPR223 2008

29

30

31

32 Do Loops  Loops are used whenever you need to repeatedly do something. Say you wanted to read in 24 lines of data, where the first 6 records are from 1 treatment, the next 6 are from a 2 nd, etc.

33 HPR223 2008 More Condensed  The group could be a counter that goes from 1 to 4.

34 HPR223 2008 How to Summarize  You can get a boxplot or a histogram with only 6 values but they will not be very informative.

35 HPR223 2008

36

37 Only a Few  If you only have a few data points, you should consider a mean and dot plot. SAS doesn’t have one built in so I made a macro to do it.  Macros are self contained blocks of code that do complex things. – A good Macro is like a function. You pass it a few arguments and it returns an answer. You don’t need to look at how its guts work.

38 HPR223 2008 The plotit Macro  You paste in the macro beginning with the macro line and ending in the mend line.  Then you invoke the macro using the name following the %macro statement:

39 HPR223 2008

40 Macro Stuff  Macros can do simple formulas like calculating an age.  Or really ugly stuff like validating dates.

41 HPR223 2008

42 Function Help  The books for the class have lists of frequently used functions but you probably want to bookmark the function help in EG as well as using onlineDoc.

43 HPR223 2008 Add it to the favorite page.  Highlight a word in the right windowpane and then type control-f to find words.

44 HPR223 2008 Dummy records in the HW  Recall there was a dummy record at the beginning of the Homework datasets. Why? – Columns of data in Excel are allowed to take arbitrary widths. So if you have a “last-name” column it will import into a database as having the width of the longest name. – If you import a second dataset and it has a different length and you try to append them together a database will choke. – You can use a dummy record to make sure the columns have the same length.

45 HPR223 2008 Combine two datasets

46 HPR223 2008

47


Download ppt "HPR223 2008 Copyright © 1999-2008 Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and."

Similar presentations


Ads by Google