我正在尝试使用 gWidgets 显示结果摘要,但我找不到可以轻松完成这项工作的小部件。
例如,
ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
group <- gl(2,10,20, labels=c("Ctl","Trt"))
weight <- c(ctl, trt)
lm.D9 <- lm(weight ~ group)
我想要一个可以打印的窗口或文本框summary(lm.D9)
。如下所示:
Call:
lm(formula = weight ~ group)
Residuals:
Min 1Q Median 3Q Max
-1.0710 -0.4938 0.0685 0.2462 1.3690
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 5.0320 0.2202 22.850 9.55e-15 ***
groupTrt -0.3710 0.3114 -1.191 0.249
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 0.6964 on 18 degrees of freedom
Multiple R-squared: 0.07308, Adjusted R-squared: 0.02158
F-statistic: 1.419 on 1 and 18 DF, p-value: 0.249
这可以通过闪亮的使用renderPrint
和轻松完成verbatimTextOutput
。我希望里面也有一些东西gWidgets
。
一个相关的问题,我可以capture.output
用来将摘要写入文本文件。如果有一个小部件可以打开文本文件并在用户界面中显示内容,那将会很有帮助。