这是我从meta分析中得到的输出。我如何将输出导出到.txt或.csv或任何其他文件类型,以便以后可以引用它而不是再次进行分析?
result #this gives the following output
Random-Effects Model (k = 11; tau^2 estimator: REML)
tau^2 (estimated amount of total heterogeneity): 0.1027 (SE = 0.0532)
tau (square root of estimated tau^2 value): 0.3205
I^2 (total heterogeneity / total variability): 95.22%
H^2 (total variability / sampling variability): 20.92
Test for Heterogeneity:
Q(df = 10) = 212.2659, p-val < .0001
Model Results:
estimate se zval pval ci.lb ci.ub
6.4863 0.1048 61.9000 <.0001 6.2809 6.6916 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 发布于 2016-09-22 16:01:46
sink(file = "OUTPUT.txt")
RE_model <- your_model
RE_model
sink(NULL)https://stackoverflow.com/questions/34146613
复制相似问题