mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			405 B
		
	
	
	
		
			SAS
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			405 B
		
	
	
	
		
			SAS
		
	
	
	
	
	
| /* PROC examples for Linguist */
 | |
| 
 | |
| proc surveyselect data=work.data out=work.boot method=urs reps=20000 seed=2156 sampsize=28 outhits;
 | |
| 	samplingunit Site;	
 | |
| run;
 | |
| 
 | |
| PROC MI data=work.boot out=work.bootmi nimpute=30 seed=5686 round = 1;
 | |
| 	By Replicate;
 | |
| 	VAR Variable1 Variable2;
 | |
| run;
 | |
| 
 | |
| proc logistic data=work.bootmi descending;
 | |
| 	By Replicate _Imputation_;
 | |
| 	model Outcome = Variable1 Variable2 / risklimits;
 | |
| run; |