在R库XLConnect上需要一些帮助

时间:2019-04-22 06:54:52

标签: r excel xlconnect

我正在尝试使用XLConnect将图形和图表从R代码复制到Excel格式的文件。我收到一个错误“错误:IllegalArgumentException(Java):名称'Report2'不存在!”指出选项卡“ Report2”不存在。但是,我已经使用以下代码在代码中创建了选项卡:“ XLConnect :: createSheet(wb,name =” Report2“)”

当我能够将文本和表格从R复制到选项卡“ Report2”但无法将图表复制到同一选项卡时,为什么不能在同一选项卡中复制图形/图表。

wb <- loadWorkbook("Data Quality Report2.xls", create = TRUE)
XLConnect::createSheet(wb, name = "Report2")
require(lattice)
png(filename = "earthquake.png", width = 800, height = 600)
devAskNewPage(ask = FALSE)
Depth <- equal.count(quakes$depth, number=8, overlap=.1)
xyplot(lat ~ long | Depth, data = quakes)
update(trellis.last.object(),
       strip = strip.custom(strip.names = TRUE, strip.levels = TRUE),
       par.strip.text = list(cex = 0.75),
       aspect = "iso")
dev.off()

addImage(wb, filename = "earthquake.png", name = "Report2",originalSize = TRUE)

1 个答案:

答案 0 :(得分:1)

在调用createName时,需要指定命名范围的名称(例如,通过addImage创建的名称),而不是工作表名称。有关完整示例,请参见https://www.rdocumentation.org/packages/XLConnect/versions/0.2-15/topics/addImage-methods