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
Calculate Time Between DatesSample: a=01-Jan-50 % January 1 1950 b=16-Feb-18 % February 16 2018 Desired output: 68.17 Essent…
Interpreting output of the margins command after logitDear all I have a naive question that I can't answer from reading the manual (because I don't under…
Risk ratio in multilevel model?Hi everyone I am working on a multilevel model on cross-sectional data from multiple countries. I h…
Testing if the mean of a variable has changed significantly over timei am doing an assignment on bank mergers and want to see if there is a significant difference in the…
Create binary variableHi Statalist, I have question regarding the binary variable. This is the example of my data. Code: …
Subscribe to:
Post Comments (Atom)
0 Response to Stata not saving correctly
Post a Comment