I am using Stata/IC 14.2 for Windows (64-bit x86-64).
I have a long Stata .do file that processes and produces images into particular folders. This code has been working for well over 10-15 years without issue. This past week, the code is sending the images into folders that are different from what the code specifies.
As an example, the code specifies that the bar chart images be sent to a folder within the "Blinded\New Fields" folder, but actually sent it to a different folder: "Unblinded\New Fields".
Any help would be appreciated.
I have a long Stata .do file that processes and produces images into particular folders. This code has been working for well over 10-15 years without issue. This past week, the code is sending the images into folders that are different from what the code specifies.
As an example, the code specifies that the bar chart images be sent to a folder within the "Blinded\New Fields" folder, but actually sent it to a different folder: "Unblinded\New Fields".
Any help would be appreciated.
Code:
graph bar (median) antegrade_target antegrade_actual if (CircArrestCerebDirection==1 | CircArrestCerebDirection==3) & n_circ~="HFD (37)" & n_circ~="HFM (8)" & n_circ~="LLD (13)" & n_circ~="MUS (3)" & n_circ!="OS14 (15)" & n_circ~="OS19 (23)" & n_circ!="OS21 (100)" & n_circ!="OS5 (170)" & n_circ!="OS6 (20)" & n_circ!="SPT (100)" & n_circ!="UMI (157)", ylabel(, angle(0)) over(n_circ_blind, label(angle(rvertical) labsize(small)) sort(antegrade_target)) ytitle(Antegrade Cerebral Flows in mL/min) legend(rows(1) label(1 "Target") label(2 "Actual") size(*.5)) title ("Median Antegrade Cerebral Flows (mL/min)" "By Hospital") note("Circulatory Arrest" "Conditional on antegrade cereral flow" "Restricted to Versions 5 and 6" "Only Includes Cases Matched to Surgical Records" "Centers not contributing data on 80% of their cases for this field are excluded", size(*.5))
graph export "Blinded\New Fields\NEW-antegrade_flowrate.png", width(5178) height(3750) replace
graph export "Blinded\New Fields\NEW-antegrade_flowrate_optimized.png", width(5178) height(3750) replace

Comment