0
我正在嘗試使用estout包格式化LaTeX文檔的迴歸表。 Error in esttab() : object 'adds' not found
R的Estout包給IV錯誤迴歸輸出
這裏是我的代碼如下所示:
fit.IV1 <- ivreg(deflatedtotalsalary ~ earlyentrypolicy + draft_year + pick + G + MP + TRB + AST
+ PTS + STL + BLK + PER + WS | draftpolicyregime + draft_year + pick + G + MP + TRB + AST
+ PTS + STL + BLK + PER + WS, data = mydata)
estclear()
eststo(fit.IV1) # Store model coefficients for table.
fit.IV2 <- ivreg(undeflatedtotalsalary ~ earlyentrypolicy + pick + draftage + G + MP + TRB + AST
+ PTS + STL + BLK + PER + WS | pick + draftage + G + MP + TRB + AST
+ PTS + STL + BLK + PER + WS + draftpolicyregime, data = mydata)
eststo(fit.IV2) # Store model coefficients for table.
esttab()
,如前所述試圖讓使用ivreg(表時),我遇到下面的錯誤,這些都是我的OLS迴歸但做工精細, ,我收到上面顯示的錯誤。有誰知道什麼可能導致這個問題?