Hi, thank you for the useful package.
The following code creates a broken excel.
my_ws2 <- read_xlsx()
my_ws2 <- xl_add_vg(my_ws2, sheet = "Feuil1",
code = barplot(1:5, col = 2:6), width = 6, height = 6, left = 1, top = 2 )
my_ws2 <- xl_add_vg(my_ws2, sheet = "Feuil1",
code = barplot(1:5, col = 2:6), width = 10, height = 10, left = 1, top = 2 )
Is it possible to have two different plots exported to the same sheet? Thank you.