mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			385 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			385 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
* Setup
 | 
						|
sysuse auto
 | 
						|
 | 
						|
* Fit a linear regression
 | 
						|
regress mpg weight foreign
 | 
						|
 | 
						|
* Fit a better linear regression, from a physics standpoint
 | 
						|
gen gp100m = 100/mpg
 | 
						|
regress gp100m weight foreign
 | 
						|
 | 
						|
* Obtain beta coefficients without refitting model
 | 
						|
regress, beta
 | 
						|
 | 
						|
* Suppress intercept term
 | 
						|
regress weight length, noconstant
 | 
						|
 | 
						|
* Model already has constant
 | 
						|
regress weight length bn.foreign, hascons
 |