我正在使用该包在 R 中运行大量模型caret
。该包是许多建模技术和方法的接口。
我想将每个模型的特定输出转换为 Latex 代码,但我正在寻找某种自动程序或模板来使其看起来漂亮。我希望每个模型有一个字母大小的页面。以下是 R 程序的两个主要输出
Call:
NULL
Deviance Residuals:
Min 1Q Median 3Q Max
-0.0552 -0.0508 -0.0508 -0.0508 3.6831
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) -6.65336 0.02520 -264.020 <2e-16 ***
H3K27me3 -0.12830 0.11265 -1.139 0.2547
H3K36me3 0.16695 0.07527 2.218 0.0266 *
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
(Dispersion parameter for binomial family taken to be 1)
Null deviance: 28404 on 1427599 degrees of freedom
Residual deviance: 28397 on 1427597 degrees of freedom
AIC: 28403
Number of Fisher Scoring iterations: 9
和
Generalized Linear Model
1427600 samples
12 predictor
2 classes: 'nbp', 'bp'
No pre-processing
Resampling: Cross-Validated (10 fold, repeated 10 times)
Summary of sample sizes: 1284840, 1284839, 1284840, 1284840, 1284840, 1284840, ...
Resampling results
ROC Sens Spec ROC SD Sens SD Spec SD
0.4896863 1 0 0.01090207 0 0
我特别喜欢 R 输出的格式,并且想知道是否有办法在乳胶中复制这种布局(或其他可行的布局)。
*如果以上所有信息无法容纳在一张 A4 纸上,我可以删除一些对我的结果来说并不真正需要的信息。
我知道stargazer
R 包,但是它看起来与caret
建模包不兼容。