magrittr
appears to be failing to pipe 'workbook' class objects into the addWorkbook
function from the package openxlsx
.
(Never mind why I need to use excel...eugh yuk)
For example, to write the InsectSprays
dataset to an excel file in 'base' syntax:
library("openxlsx")
insect.wb <- createWorkbook()
addWorksheet(wb = insect.wb,
sheetName = "Insect Spray")
writeData(wb = insect.wb,
sheet = "Insect Spray",
x= InsectSprays)
openXL(insect.wb)
Opens a temp excel file with the data.
So magrittr
should
But e.g.
library("openxlsx")
library("magrittr")
insect.wb <- createWorkbook()
insect.wb %>%
addWorksheet(sheetName = "Insect Spray") %>%
writeData(sheet = "Insect Spray",
x= InsectSprays)
Returns
Error in writeData(., sheet = "Insect Spray", x = InsectSprays) : First argument must be a Workbook.
But insect.wb
is a workbook object:
> insect.wb <- createWorkbook()
> class(insect.wb)
[1] "Workbook"
attr(,"package")
[1] "openxlsx"
Which suggests that the issue is that the object isn't getting piped in...
Am I just buggering up the syntax, or is there a more interesting explanation for why this is failing?
For interest, there is no issue with forward pipe and writeData
–- if we shift the use of forward-pipes until after addWorksheet
, it also works fine:
insect.wb <- createWorkbook()
addWorksheet(wb = insect.wb,
sheetName = "Insect Spray")
insect.wb %>%
writeData(sheet = "Insect Spray",
x= InsectSprays)
openXL(insect.wb)