I wrote this code to get Stata to print a conditional statement:
but it prints this:

Is there a way to get Stata to run this "quietly" so that the only output on the screen is either "Reject null" or "Do not reject null"?
Code:
if p_value < alpha /// { di "Reject null" } else { di "Do not reject null" }
Is there a way to get Stata to run this "quietly" so that the only output on the screen is either "Reject null" or "Do not reject null"?
Comment