mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			324 B
		
	
	
	
		
			SAS
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			324 B
		
	
	
	
		
			SAS
		
	
	
	
	
	
/* 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; |