Hi everyone,
I'm new to using batch mode via a remote server to run Stata code. I have a do file that 1) loads in a .dta file, does some very basic data cleaning, and then runs a regression. Specific code below:
I'm using the nohup stata-mp -b command to run the do-file, but the log output ends after the
command. I'm not sure if I'm using improper syntax or something OR that the log doesn't print anything until the regression output is available -- it's nearly 500,0000 observations with 17,000 fixed effects, in addition to covariates of interest, which obviously takes a while to run.
If anyone could provide some insight here, I'd appreciate it.
Thanks!
Kelsey
I'm new to using batch mode via a remote server to run Stata code. I have a do file that 1) loads in a .dta file, does some very basic data cleaning, and then runs a regression. Specific code below:
Code:
/* Developer: Kelsey O'Hollaren Initial Date: */ ** Universal settings clear all set more off set maxvar 50000 // necessary given all the fixed effects! use "~/Data/Analytic_HMDA_Subset.dta" sort ImportParcelID Year drop if RepeatSale == 0 replace SellerBlack = blackHMDA[_n-1] replace SellerWhite = whiteHMDA[_n-1] replace SellerAPI = APIHMDA[_n-1] replace SellerLatino = latinoHMDA[_n-1] di "Testing to see if this thing works" regress log_assesssale SellerBlack SellerLatino SellerAPI i.TaxJur i.Year , cluster(TaxJur)
I'm using the nohup stata-mp -b command to run the do-file, but the log output ends after the
Code:
di "Testing to see if this thing works"
If anyone could provide some insight here, I'd appreciate it.
Thanks!
Kelsey
Comment