我需要一個「nls」對象的LaTex表示。不幸的是,stargazer不支持這種對象類型。如何獲得「nls」對象的美麗乳膠輸出
在網絡上的一些研究導致我as.lm.nls功能出nls2庫。它聲稱將一個nls對象轉換爲相應的lm對象。在我的情況下,它慘敗了。下面是示例輸出:
> DNase1 <- subset(DNase, Run == 1)
> xx <- nls(density ~ SSlogis(log(conc), Asym, xmid, scal), DNase1)
> summary(xx)
Formula: density ~ SSlogis(log(conc), Asym, xmid, scal)
Parameters:
Estimate Std. Error t value Pr(>|t|)
Asym 2.34518 0.07815 30.01 2.17e-13 ***
xmid 1.48309 0.08135 18.23 1.22e-10 ***
scal 1.04146 0.03227 32.27 8.51e-14 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 0.01919 on 13 degrees of freedom
Number of iterations to convergence: 0
Achieved convergence tolerance: 3.281e-06
而且as.lm.nls低於輸出時不符合上述實際輸出:
> library(nls2)
Loading required package: proto
> xlm = as.lm.nls(xx)
> summary(xlm)
Call:
lm(formula = density ~ Asym + xmid + scal - 1, offset = fitted(xx))
Residuals:
Min 1Q Median 3Q Max
-0.033513 -0.012931 -0.001454 0.009699 0.038137
Coefficients:
Estimate Std. Error t value Pr(>|t|)
Asym -8.878e-07 7.815e-02 0 1
xmid -9.328e-07 8.135e-02 0 1
scal -3.751e-07 3.227e-02 0 1
Residual standard error: 0.01919 on 13 degrees of freedom
Multiple R-squared: 0.9996, Adjusted R-squared: 0.9995
F-statistic: 1.153e+04 on 3 and 13 DF, p-value: < 2.2e-16
由於NLS摘要輸出頗爲相似l米摘要輸出,我假定相當於nls到lm對象的內容應該可以用於觀星者發揮其魅力。
我有相當數量的納入模型納入報告,as.lm.nls的失敗已經把我綁定。我需要對乳膠輸出的nls對象絕望的幫助。
任何關於如何進行的指針。
問候
ķ