|
Total number of elements: 37 Not yet completed: 28 High priority: 16 Completed: 9 |
|---|
library(RExcelXML)
wb = workbook("RExcelXML/inst/SampleDocs/Workbook1.xlsx"); sh = wb[[1]]
sh[2, 1] = 10
Seems that in updateArchiveFiles, the data.frame (info) is
an S4 object bu when we get to [<-data.frame,
that sets the class to near the beginning and this
causes the warning. Looks like there is an inconsistency
in R methods and [<-data.frame.
library(RExcelXML)
wb = workbook("RExcelXML/inst/SampleDocs/Workbook1.xlsx"); sh = wb[[1]]
sh[2, 1] = 10