Is there a simple way to generate predicted value by beta/standardized regression coefficients. For example, the code below only generates a predicted value "priceHat" by unstandardized coefficients.
Code:
webuse "auto.dta", clear regress price mpg weight, beta predict priceHat
Comment