top coding tips
play

Top Coding Tips Neil Merchant Technical Specialist - SAS Bio Work - PowerPoint PPT Presentation

Top Coding Tips Neil Merchant Technical Specialist - SAS Bio Work in the ANSWERS team at SAS o Analytics as a Service and Visual Analytics Try before you buy SAS user for 12 years o Base SAS and O/S integration o Worked


  1. Top Coding Tips Neil Merchant – Technical Specialist - SAS

  2. Bio • Work in the ANSWERS team at SAS o “Analytics as a Service” and Visual Analytics “Try before you buy” • SAS user for 12 years o Base SAS and O/S integration o Worked across Clinical, Finance, Marketing and Energy o More recently specialising around “In Memory” and Administration

  3. Agenda 5 Top Coding Tips to improve and automate your code 1. In Memory Processing 2. O/S Manipulation (XCMD) 3. Locking / Updating Datasets 4. Data Dynamic Code 5. Hash Tables I will be in the quad all day following this presentation.

  4. In Memory Processing

  5. In Memory Processing • I/O (disk) is often the biggest constraint on SAS systems. • Memory is often abundant and cheap. Imagine the following scenario:-

  6. SASFILE The SASFILE global statement loads an entire SAS dataset into memory for subsequent DATA and PROC steps. Loading only performs one I/O action. OPEN Opens the file and allocates the buffers, but defers reading the data into memory until a procedure or a statement that references the file is executed. LOAD Opens the file, allocates the buffers, and reads the data into memory. CLOSE Releases the buffers and closes the file.

  7. SASFILE Before using the dataset use the LOAD (or OPEN) option. Ensure you use the CLOSE option once you have finished with the table to free up system resource.

  8. SASFILE CAUTION: • If your dataset is larger than the amount of memory available this can degrade the performance. RECOMMENDATIONS: • Run your code with and without the SASFILE option to compare the results. • SASFILE will be a greater benefit during peak loads on your system.

  9. O/S Manipulation (XCMD)

  10. O/S Manipulation (XCMD) • SAS has the ability to run O/S scripting. Often referred to as the X command. • Eg DOS commands in Windows, BASH Commands in Linux/Unix.

  11. X Command Examples • List Files • Move Files • Rename files (including my personal favorite I wrote to run a Windows PowerShell script to get the date taken property of a photo and then update the file names accordingly) • Compress files • Run scripts (such as an FTP client script) • Email Users when they forget to logout of client machine • ETC

  12. Three Main Methods Call System (Datastep) X Command (Raw Code) Pipe (Filename Statement)

  13. Example /*LIBNAME*/ libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ options noxwait; /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; data csv_filename; /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; length filename $64.; /*READ IN EACH PROCESS*/ input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; /*READ IN CSV FILE*/ proc import datafile="C:\Example\MINE_&fn." out=example.csv_file dbms=csv replace; getnames=yes; run; /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

  14. Example /*LIBNAME*/ • Options noxwait (and libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ xwait) options noxwait; • noxwait – means that /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; you don’t have to exit data csv_filename; your X commend /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; • xwait – means you have length filename $64.; /*READ IN EACH PROCESS*/ to type exit in your code input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ or manually exit call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; • xsync and noxsync will /*READ IN CSV FILE*/ wait/not wait for the proc import datafile="C:\Example\MINE_&fn." out=example.csv_file command to finish dbms=csv replace; running before returning getnames=yes; run; to your SAS session /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

  15. Example /*LIBNAME*/ • Create a pipe file name libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ • Everything in the quotes options noxwait; will run against the OS /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; • As it is a pipe the results data csv_filename; of the command will be /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; passed back into SAS length filename $64.; /*READ IN EACH PROCESS*/ input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; /*READ IN CSV FILE*/ proc import datafile="C:\Example\MINE_&fn." out=example.csv_file dbms=csv replace; getnames=yes; run; /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

  16. Example /*LIBNAME*/ • Next read in the libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ filename statement the options noxwait; same as you would a /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; text file data csv_filename; • The pipe gets submitted /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; against the OS length filename $64.; /*READ IN EACH PROCESS*/ • The input statement input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ reads the output – this call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ being the name of the call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; file in the directory /*READ IN CSV FILE*/ proc import datafile="C:\Example\MINE_&fn." out=example.csv_file dbms=csv replace; getnames=yes; run; /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

  17. Example /*LIBNAME*/ • Then create a macro libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ variable with the options noxwait; filename so we can /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; save it for later data csv_filename; /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; length filename $64.; /*READ IN EACH PROCESS*/ input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; /*READ IN CSV FILE*/ proc import datafile="C:\Example\MINE_&fn." out=example.csv_file dbms=csv replace; getnames=yes; run; /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

  18. Example /*LIBNAME*/ • Next to rename the file libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ to prefix the name of it options noxwait; with “MINE_” so that /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; other users know I am data csv_filename; processing it /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; • Use call system to length filename $64.; /*READ IN EACH PROCESS*/ execute a OS command input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ to process the rename call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ • The command is built call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; from hardcoded text and /*READ IN CSV FILE*/ the variable name taken proc import datafile="C:\Example\MINE_&fn." out=example.csv_file from the pipe dbms=csv replace; getnames=yes; run; /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

  19. Example /*LIBNAME*/ • Use proc import to libname example "C:\Example"; /*ALLOW COMMAND TO EXIT ITSELF*/ import the CSV and turn options noxwait; it onto a dataset /*FILENAME PIPE TO READ IN ALL FILES WITH CSV EXTENSION*/ filename os pipe 'dir /b C:\Example\*.csv'; • Use the macro variable data csv_filename; created above to get the /*READ IN FILENAME REQUEST AS A PIPE*/ infile os length=reclen; filename length filename $64.; /*READ IN EACH PROCESS*/ input filename $varying64. reclen; /*LOAD FILENAME INTO A MACRO VARIABLE*/ call symput('fn',filename); /*RENAME THE CSV FILE TO SHOW OTHERS I AM USING IT*/ call system("REN C:\Example\"||left(filename)||" MINE_"|| left(filename)); run; /*READ IN CSV FILE*/ proc import datafile="C:\Example\MINE_&fn." out=example.csv_file dbms=csv replace; getnames=yes; run; /*DELETE CSV FILE*/ x "del C:\Example\MINE_&fn.";

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend