ylabel(0(0.2)1, pct)
yields ("0%", "20%", "40%"), etc
Not sure if there's a clever way to do this with ", format()"
yields ("0%", "20%", "40%"), etc
Not sure if there's a clever way to do this with ", format()"
{...}
help braces
{
* outer block code
sysuse auto, clear
codebook
{
* inner block code
gen gp100m = 100 / mpg
regress gp100m weight
}
}
. sysuse auto, clear (1978 Automobile Data) . save TEMP, replace file TEMP.dta saved . use TEMP (1978 Automobile Data) . erase TEMP file TEMP not found r(601);
erase TEMP.dta
Comment