Hello, I am making changes to a data file then saving under a different name. The file with the new name "demo_working" is not being saved in the same directory (I don't know where it is being saved) from which I took the original file "DEMO_CHARGE_RAW_jm"
Below is my code. When I open up the demo_working file in the folder "jm_working" it is not saved with the changes that I made.
Any suggestions?
use "/Users/u0521032/Library/CloudStorage/OneDrive-UniversityofPittsburgh/LeaRRn-Jake/jm_working/DEMO_CHARGE_RAW_jm.dta", clear
format %16.0f PAT_ENC_CSN_ID // format enc id
rename *, lower // all lower case
capture drop dos_rc //making into usable date
gen dos_rc = date(orig_service, "DM20Y")
format dos_rc %td
keep pat_enc_csn_id - race visit_number dos_rc
sort pat_enc_csn_id visit_number dos_rc
order visit_number, after (pat_enc_csn_id)
capture drop n_1
by pat_enc_csn_id: gen n_1 = _n
keep if n_1 == 1
save demo_working, replace /// removed payment variable
Related Posts with Stata not saving correctly
Interpreting the intercept in the random-effects modelConsider the model yit = a + bXit + ci + eit Using a fixed effect model, the constant term a canno…
Multilevel modelling within Time Series Analysis of Cross-Sectional dataHi, I'm trying to model person within household within a Time Series of Cross-sectional Panel data.…
Plotting a histogramHi I am working with village wise consumption data and I need to generate histograms for the consum…
Can I take log and lag on my independent variables in a regression?Hello, Please can someone answer me if it is possible to take log and lag (both at the same time) on…
Testing coefficient equality across different regressions (bootstrap)Dear All, Suppose that I estimate the following two regressions (please ssc install ivreghdfe. In ad…
Subscribe to:
Post Comments (Atom)
0 Response to Stata not saving correctly
Post a Comment