У нас вы можете посмотреть бесплатно A simple way to creating beautiful regression tables in STATA: the "esttab" command from "estout" или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Below are the do.file commands I used for the video. The "cd" could be different from yours, but the dataset is pre-installed in stata and you should be able to replicate my output. cd "C:\Users\Xuewen\Desktop" sysuse auto ** ssc install estout, replace eststo clear eststo: regress price weight mpg eststo: regress price weight mpg foreign **help regress esttab,se ar2 bic aic title(Table 3: This is a regression table) nonumbers mtitles("Model A" "Model B") addnote("Source: auto.dta") esttab using m1.rtf,se ar2 bic aic nostar title(Regression table predicting vehicle price) nonumbers mtitles("Model 1" "Model 2") addnote("Source: auto.dta") esttab using m1.csv,se ar2 bic aic nostar title(Regression table predicting vehicle price) nonumbers mtitles("Model 1" "Model 2") addnote("Source: auto.dta")