У нас вы можете посмотреть бесплатно Introductory Stata 24: Estimates Report (estimates table, esttab) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, we will examine how to report regression results. We can store estimates in Stata and export the results to other programs, such as Word or Latex. #estimates #esttab ************************ *24. Estimates Report * ************************ capture log close log using report.log, text replace set showbaselevels on webuse nlsw88.dta, clear describe summarize *estimates store and estimates table generate lwage=ln(wage) regress lwage c.grade estimates store OLS_1 regress lwage c.grade c.age i.married estimates store OLS_2 regress lwage c.grade c.age i.married i.union i.race estimates store OLS_3 estimates dir estimates table OLS_1 OLS_2 OLS_3 estimates table OLS_1 OLS_2 OLS_3, se estimates table OLS_1 OLS_2 OLS_3, star *customize tables by esttab esttab OLS_1 OLS_2 OLS_3 esttab OLS_1 OLS_2 OLS_3, label esttab OLS_1 OLS_2 OLS_3, label mtitle esttab OLS_1 OLS_2 OLS_3, label mtitle nobaselevels esttab OLS_1 OLS_2 OLS_3, label mtitle nobaselevels b(%7.3f) se(%7.3f) esttab OLS_1 OLS_2 OLS_3, label mtitle nobaselevels b(%7.3f) se(%7.3f) varwidth(24) esttab OLS_1 OLS_2 OLS_3, label mtitle nobaselevels b(%7.3f) se(%7.3f) varwidth(24) keep(grade age 1.married 1.union 2.race) title("OLS Estimates") *export tables to latex esttab OLS_1 OLS_2 OLS_3 using "/Users/bobwen/Documents/table.tex", label mtitle nobaselevels b(%7.3f) se(%7.3f) varwidth(24) keep(grade age 1.married 1.union 2.race) replace title("OLS Estimates") log close