R Language
texreg를 사용하여 종이 준비 방식으로 모델을 내보내십시오.
수색…
소개
texreg 패키지는 모델 (또는 여러 모델)을 종이로 잘 만들어진 방식으로 내보내는 데 도움이됩니다. 결과는 HTML 또는 .doc (MS Office Word)로 내보낼 수 있습니다.
비고
선형 회귀 결과 인쇄
# models
fit1 <- lm(mpg ~ wt, data = mtcars)
fit2 <- lm(mpg ~ wt+hp, data = mtcars)
fit3 <- lm(mpg ~ wt+hp+cyl, data = mtcars)
# export to html
texreg::htmlreg(list(fit1,fit2,fit3),file='models.html')
# export to doc
texreg::htmlreg(list(fit1,fit2,fit3),file='models.doc')
결과는 종이의 표와 비슷합니다.
texreg::htmlreg()
함수에는 몇 가지 추가 매개 변수가 있습니다. 다음은 가장 유용한 매개 변수에 대한 유스 케이스입니다.
# export to html
texreg::htmlreg(list(fit1,fit2,fit3),file='models.html',
single.row = T,
custom.model.names = LETTERS[1:3],
leading.zero = F,
digits = 3)
다음과 같은 테이블에서 결과가 나타납니다.
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow