1 / 47

HRP 223 - 2008

HRP 223 - 2008. Topic 4 – Data Manipulation. Why Code. Data step advantages Splitting data into many subsets Tasks that require looping Quickly subsetting Complex retains Minor tweaks with nice pay offs Adding Page Numbers Inserting Group Names in Titles

verlee
Télécharger la présentation

HRP 223 - 2008

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HRP 223 - 2008 Topic 4 – Data Manipulation

  2. Why Code • Data step advantages • Splitting data into many subsets • Tasks that require looping • Quickly subsetting • Complex retains • Minor tweaks with nice pay offs • Adding Page Numbers • Inserting Group Names in Titles • Title and Footnote Justification • Conditional Highlighting • Including parameters

  3. Common Ground … where The first week of class you saw that you can point-and-click with EG or write data step code or PROC SQL statements to subset data.

  4. where • The syntax for where is identical in SQL and data steps. • Differences vs. if statements: • main points work in where only • sub points work in either • x between y and z • x >= y and x <= z • y <= x <= z • string1 ? string2 or string1 contains string2 • index(string1,string2) > 0 • string1 =* string2 • soundex(string1) = soundex(string2) • x is null or x is missing • missing(x) • String1 like “U%of%A%” • use regular expressions (PRX)

  5. Why bother? • First run the analysis on the complete data. • Right click the node and choose open last submitted code. • (Tell it to keep all variables.) • Scroll to the procedure and add in the where. • If you can use the GUI to write the subsets, why bother learning the code? • It takes time to make a new dataset. If all you want is to subset for an analysis, it is a LOT faster to add the whereinto the analysis code.

  6. Keep All Data Before the analysis code, SAS puts in instructions to subset the data. Tell it to include all variables by adding the variable in the where statement or just use a *. More on this in a bit.

  7. where Syntax • The where statement, like all SAS statements, begins with a keyword (where) and ends in a semicolon. • whereisDead = "false"; • whereisDead ne "true"; • where missing(gender); • where salary > 100000; • where country in ("USA", "Japan", "UK"); • where country in ("USA""Japan""UK");

  8. where Syntax • Arithmetic • where salary/12 > 10000; • where (salary /12) * 1.20 ge 9900; • where salary + bonus < 120000; • Logical • where gender ne "M" and salary >= 50000; • where gender ne "M" or salary >= 50000; • where country = "UK" or country = "UTAH"; • where country not in ("USA", "AU");

  9. Make Decisions • SAS has many operations available to help you make decisions. • = eq, ~= ne, < lt, > gt, <= le, >= ge, in ( ) • Not • requires the expression following it to not be true. • & And, | or, in • & Requires both operands to be true. • | Requires one operand to be true. • In () requires at least one comparison to be true. • Math operations: • + - * / **.

  10. Logical Decisions & Compound Expressions • Use the List Data … option on the Describe menu to choose what variables to report, then include validity checks on the data. • Common tests and common problems: where YODeath < YOBirth; whereSex = "M"andnumPreg > 0; whereSex="M"andnumPreg > 0orageLMP > 0; *** bad ***; whereSex="M"and (numPreg > 0orageLMP > 0); *** good ***; • Moral: Use parentheses generously with ands and ors.

  11. Looking at Data • The traditional way to look at data is with proc print. procprintdata=parity; vargender numBirthsyoBirthyoDeathageLMP; run; • You can print out the corners of your data table. SAS should have called this lastobs. procprintdata=parity(firstobs=6obs=6); vargenderageLMP; run;

  12. Moving Stuff in EG Last time somebody asked me how to move stuff between process flows and I said that I just copied the entire project. Actually, you can copy a bunch of stuff then right click and choose “Move to > somewhere”.

  13. Data Step There are a few things that can be done in a data step that can’t be done in SQL. Most SAS programmers do not know SQL and I need you to be able to look at their code.

  14. Data Step Parts Data steps begin with a data statement. The second statement is usually a set statement or an input statement. There are any number of additional statements after the set or input line. The data step ends with a run statement or (if the programmer is too lazy to type run;) at the beginning of the next data step or procedure.

  15. About that second line… • set blah; • Says you are going to read data from an existing SAS data set (called blah in this case) into your new data set. • input gender $ age; • Means that you are going to read existing data from this page of code or from a text file. Typically the input statement appears with a datalines statement (for reading from this file) or an infile statement (for reading from another text file). • “gender $” means that one variable is a character string • Age does not have a $. So this signifies a numeric variable.

  16. Those lines after the 2nd line Commands that you are likely to see after the set line include: where statements are used to select what records to include based on the values in the source file. if-then-else statements are used to check simple logic to assign new values. select statements are used to perform complex checking and choosing from a list.

  17. How SAS Processes a Dataset • When you create a SAS data set with data step code, SAS does the following things: • It figures out what variables it needs to track and it sets aside some space in the computer’s working memory (RAM) to hold the variables. This space is called the Program Data Vector (PDV). • It sets the values in the PDV to missing. • Then it does all the instructions you tell it to do, in the order you have written them. • Then it writes all the variables out to the new dataset. • It then repeats the process if there is more data.

  18. Manipulating Data • Say you have a dataset with a bunch of variables. How does SAS keep track of the data and allow you to manipulate it? • Say this is the dataset called “OLD”.

  19. The variables id, race, case, refage and lname are put into the new dataset. The variables id, race, case, refage and lname are put into the PDV. Manipulating Data • When you do a data step every variable on the set or input lines are added to the PDV for the life of the data step. data new; set old; run; • If you don’t tell SAS to do something different, every1 variable in the PDV is output to the new dataset.

  20. How SAS Really WorksThe Program Data Vector • SAS processes information a record at a time in the PDV. The PDV tracks variable names and their contents, plus a couple of automatic variables. The automatic ones don’t get output. • SAS forgets what is in the vector when it reads the next record but you can force it to remember without too much effort.

  21. Id, race, case, refage, lname and isMale are put into the new dataset . isMale is added to PDV. Working With Variables • It is easy to add variables to the PDV. • You can create a variable called isMale and set it to a value for everyone in a dataset like this: data new; set old; isMale = ‘yes’; run; or you can conditionally assign a variable’s value with an if statement: ifrefAge < 50thenisYoung = 1;

  22. if then (else) statements If you want to do something if a condition is true, use an if-then statement. Remember you need both words, if and then . data males females; set parity; if gender = "m" thenoutput males; elseoutput females; run;

  23. What could possibly go wrong? If you send the people who have a gender of “m” to one dataset and everyone else to another, you will be dealing with major headaches later. The “female” records plus all the “Males”, “ ”, and every misspelling of male and female goes into that second file. I do use if-then statements but very rarely do I use simple else statements.

  24. select-when-otherwise-end I use select statements instead of complex else logic. The first condition in the block that is true is executed and the rest are ignored. data males females others; set parity; select (gender); when ("M") output males; when ("F") output females; otherwise output others; end; run;

  25. Creating a Variable data x; input grade $ @@; datalines; A B C D F ; run; data y; set x; select (grade); when ("A") score = "Woop!!!!"; when ("B", "C") score = "Bah"; when ("D", "F") score = "Ut oh"; end; run;

  26. Note: NO THEN Note: Select ends with end; Complex Decisions dataovary.affected; setovary.rptca; select; when (refage =. ) agegr = .; when (refage <60) agegr = 1; when (refage <65) agegr = 2; when (refage <70) agegr = 3; when (refage >=70) agegr = 4; end; run; missing is negative infinity so check for missing before your first < The first condition that is true is done and the rest are ignored. So get thing in the correct order.

  27. I use select statements to track known problems in a dataset. data alice2 missingStuff badAge ageThing; set alice; select; *These are FATAL data errors each dataset should have 0 observations; *no year blood draw, yob, age at entry in study; when (missing(yr_bl_dr) or missing(birthyr) or missing(dadage)) output missingStuff; *age from blood draw inconsistent with reported age; when ((yr_bl_dr-birthyr)-dadage > 2) output badAge; * blood draw before age at birth; when (yr_bl_dr - birthyr < 0) output ageThing; otherwise output alice2; end; run; * NOTE: this does not notice multiple errors;

  28. No Otherwise If you leave off the otherwise statement, SAS will generate an error if the data is not “trapped” by one of the other conditions. This is very helpful because it makes it easy to see problems.

  29. Adding New Variables As it scans down the page containing a data step, SAS figures out if new variables are character or numeric by looking for quotation marks. The first time it sees a new variable it sets the width in the PDV.

  30. Playing with Character Variables • If you manipulate character strings you want to remember these things: • upcase() • lowercase() • What variables and contents are in the new dataset? data case; band = "Skinny Puppy"; uBand = upcase(band); output; band = "Assemblage 23"; lBand = lowcase(band); output; run;

  31. Length Be sure to set the length of the variable to be wide enough to hold your data. data case2; length band $50.; band = "Skinny Puppy"; uBand = upcase(band); output; uBand = ""; band = "Assemblage 23"; lBand = lowcase(band); output; run;

  32. EG Helps

  33. Combining • EG 4.1 does not have all the functions in SAS 9.1.3 listed. A couple important missing functions are the CATs. • CAT Function • Concatenates character strings without removing leading or trailing blanks • CATS Function • Concatenates character strings and removes leading and trailing blanks • CATT Function • Concatenates character strings and removes trailing blanks • CATX Function • Concatenates character strings, removes leading and trailing blanks, and inserts separators

  34. Compressing • Often you will a variable which has extra characters in it and you want to get rid of them. • Check digits in medical record numbers. • Use the function compress() to remove the – and spaces.

  35. "- "

  36. Splitting Strings • If you need to break a string of letters into words use the scan function() • Specify the original string, comma, the word number, comma, an optional list of word delimiters.

  37. The First Word

  38. Example of Character Functions

  39. Variable Order • There are times when you will want to move a variable to the beginning of the PDV and therefore, to the left side of a dataset. I do this if I am calculating values and I do not want to scroll to the end of the spreadsheet (viewtable) to check a value. • Just reference the variable before the set statement.

  40. data life; input subj_id yob yod @@; datalines; 1000100 1920 1942 1000101 1921 1942 1000102 1930 1995 ; run; data span; * move age to head of pdv by referencing it before it is read in the set statement; age = 0; set life; age=yod-yob; run;

  41. Importing Datafrom External Text Files • You also use the keyword input to get data from a stored text file. Specify an infile statement to define the source of your data and do not use datalines. data life; infile ‘c:\projects\blah\life.txt’; inputsubj_idyob dob; run;

  42. This variable is written as a seven digit number with no decimal places. Here you tell SAS that this variable is going to hold 10 characters. Importing Data…the Hard Way • You can specify what column has the data you want as well as how wide it is: datarawblah; infile ‘c:\projects\pam\prostate.dat’; input @1 id 7. @3 race 1. @2 case 1. @24refage2. @99l_name $10.; run;

  43. Importing Data… the Hard Way • If you have fixed length character variables, specify them with a dollar sign and an informat like this: • input l_name $10.; • If your character variables are of variable length and you want to read them up to a maximum length or a delimiter, include a : in the specification: • input l_name : $10.; • This is handy if you are reading tab-delimited data with character variables with imbedded blanks.

  44. Comments • Comment the heck out of the code you write. • Two syntaxes you have seen: • * blah; • /* blah */ • You can also select a block of code and push • Control / to comment it out • Control shift / • Turns the comment back into code.

  45. What is a bug anyway? • When you write a program and it doesn’t work the way that you intended, it is described as having a bug. • There are many types of bugs. Syntax and semantic errors are relatively easy to find and fix. When these errors happen, SAS can not figure out what you want done. Conceptual errors happen when SAS understands the words you give it but it does not do what you intended. These can be very, very hard to find and fix. • Spotting syntax and semantic bugs is easy. You just need to look in the SAS log.

  46. Syntax Errors • As you try to write code you will see syntax errors and lots of red in the log. Look at the line it marks first. If you can’t see the problem, look for problems (especially a missing semicolon) on the line above where the red begins. • Misspelled keywords • Unmatched quotation marks • Missing semicolons • Invalid options

  47. What is a bug anyway? (2) • You will look in the log window to find out if SAS found any syntax errors. * oops forgot the "then";

More Related