gpt4 book ai didi

r - 将直方图从 R 导出到 Excel

转载 作者:行者123 更新时间:2023-12-03 02:08:17 29 4
gpt4 key购买 nike

我在 R 中有一些数据,我想将它们表示为直方图(实际上,我将有 6 个直方图),然后将这些图表导出到 Excel 文件中。我刚刚使用了 hist() 函数,但我也在尝试 ggplot2 函数。每个直方图都有 10,000 条数据,因此我不能只导出原始数据并在 Excel 中创建直方图(我假设这会导致 Excel 文件大小过大,这是我不想要的)。

有什么方法可以导出我的图表吗?

最佳答案

excel.link 包是 RDCOMClient 的包装器。

以下示例仅适用于普通 RGui(而非 RStudio)中的 R 3.0.1。

# load package
require(excel.link)

# plot something
plot(cos)

# save graph to tmp file
cos.plot=current.graphics()

# add excel workbook
xl.workbook.add()

# add sheet to excel workbook
xl.sheet.add()

# put your graph starting at the top left in cell A1
xl[a1]=list("Cosine plotting",cos.plot,"End of cosine plotting")

关于r - 将直方图从 R 导出到 Excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17948776/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com