1 / 25

Formats to the Rescue

Formats to the Rescue. Gary McQuown Data and Analytic Solutions Inc. Fairfax, VA. Combining Data. MERGE. A. SQL JOIN. Key. C. B. Combining Data. INDEX. A. C. B. Combining Data. A. HASHING. C. B. Combining Data. A. B. Key W. C. FORMATS. D. Key X. Key Y. Key Z. C.

cleo
Télécharger la présentation

Formats to the Rescue

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. Formats to the Rescue Gary McQuown Data and Analytic Solutions Inc. Fairfax, VA.

  2. Combining Data MERGE A SQL JOIN Key C B

  3. Combining Data INDEX A C B

  4. Combining Data A HASHING C B

  5. Combining Data A B Key W C FORMATS D Key X Key Y Key Z C E G I F H J

  6. Issues • Sorts or Index are Impractical • Many “Small” Tables • Frequently Used Process • Efficiency • Ease of Use

  7. Formats Table lookup Associate one value with another format date date9.; 09OCT2006 format zip cityz. ; New York

  8. put ( start , $myfmt. ) First Name, Last Name, DEA #, EIN, SSN, DOB, Specialty, Complaints, Office Address, Home Address, States Licensed, Drug Class Allowed, Sanctions, etc. Drug Names, Drug Category, Drug Class Latitude, Longitude, City, County, State

  9. Advantages No Sorting of Primary File Sort Smaller Files Unique Start Values

  10. Advantages Efficient (where=( put(start, $myfmt.) = “1” )) Reads only selected rows

  11. Advantages Flexible var = put(start, $myfmt.); if put(start, $myfmt.) = “XX” format (start, myfmt.)

  12. Advantages Reusable (library = library) Catalogs Reduces Coding (replaces if then !) Easily Update

  13. Numeric proc format; value SexNum 1=“Male“ 0=“Female”; run; Character proc format; value $ SexChar ‘1’=“Male“ ‘0’=“Female”; run; Easy to Create

  14. proc sort data= FOO nodupkey; by FROM_VAL; run; data MYFMT (keep = fmtname hlo label start type); retain fmtname “MYFMT” type “N”; set FOO; end = lastrec; start = FROM_VAL; label = TO_VAL; output; if lastrec then do; hlo = “O”; label = “0”; output; end; run; proc format cntlin = MYFMT library=library; run;

  15. FMTNAME= name TYPE= “C”“N”“I”“J”“P” START=values to be converted. LABEL=values to become. HLO= “H”“L”“O”

  16. proc sort data= FOO nodupkey; by FROM_VAL; run;

  17. data MYFMT (keep = fmtname hlo label start type); retain fmtname “MYFMT” type “N”; set FOO; end = lastrec; start = FROM_VAL; label = TO_VAL; output;

  18. if lastrec then do; hlo = “O”; label = “0”; output; end; run;

  19. Other, HI and LOW Dept_Num =put(EMPID, Department_Number.); Dept_Name =put(Dep_num, Department_Name.); Grade_Level =put(EMP_ID, Grade_Level.); Full_Name =put(EMPID, Full_Name.);

  20. Other, HI and LOW Dept_Num =put(EMPID, Department_Number.); Dept_Name =put(Dep_num, Department_Name.); Grade_Level =put(EMP_ID, Grade_Level.); Full_Name =put(EMPID, Full_Name.);

  21. Other, HI and LOW Dept_Num =put(EMPID, Department_Number.); Dept_Name =put(Dep_num, Department_Name.); Grade_Level =put(EMP_ID, Grade_Level.); Full_Name =put(EMPID, Full_Name.);

  22. OPTIONS • FMTSEARCH to search Libraries • NOFMTERR use original values if the format does not exist

  23. Formats Merging Matching Sub Setting New Variables Data Cleaning Reporting Analysis Large Tables Many Tables Many Key Fields Flexibility Efficiency Easy to Use

  24. Questionsand Comments

  25. Thank you Gary McQuown Data and Analytic Solutions Inc. Fairfax, VA. 703-628-5681 http://www.DASconsultants.com SAS is a Registered Trademark of the SAS Institute, Inc. of Cary, North Carolina.

More Related