Basic SAS

Just an entry for SAS with the basic .sas file extension and two
examples.
This commit is contained in:
Eric Lofgren
2013-12-03 14:48:55 -05:00
parent 4a5165ad7f
commit 3ecc1f883c
3 changed files with 37 additions and 0 deletions

17
samples/SAS/data.sas Normal file
View File

@@ -0,0 +1,17 @@
/* Example DATA step code for linguist */
libname source 'C:\path\to\file'
data work.working_copy;
set source.original_file.sas7bdat;
run;
data work.working_copy;
set work.working_copy;
if Purge = 1 then delete;
run;
data work.working_copy;
set work.working_copy;
if ImportantVariable = . then MissingFlag = 1;
run;