這裏有一個重複的例子:
m1 <- lm(Sepal.Length ~ Petal.Length*Sepal.Width,
transform(iris, Sepal.Length = Sepal.Length+1e6,
Petal.Length=Petal.Length*10, Sepal.Width=Sepal.Width*100))
# Coefficients:
# (Intercept) Petal.Length Sepal.Width Petal.Length:Sepal.Width
# 1.000e+06 7.185e-02 8.500e-03 -7.701e-05
我不相信stargazer
有這個簡單的支持。 你可以嘗試像xtable
或any of the many options here其他替代品(我還沒有嘗試過所有)
library(xtable)
xtable(m1, display=rep('g', 5)) # or there's `digits` too; see `?xtable`
或者,如果你使用knitr
或pandoc
我很喜歡pander
,已經有AUTOMAGIC科學記數法(注:這是pandoc輸出看起來像降價,而不是TEX輸出,然後編織或pandoc乳膠/ PDF):
library(pander)
pander(m1)
這個問題是有點相關,但不能直接應用在這裏:http://stackoverflow.com/questions/ 36584423 /如何對顯示的數字式科學-符號功能於作爲cii-tables – landroni