I have the following code
FXwb <- loadWorkbook("FX_r_2.xlsx")
x <- readWorksheet(FXwb, sheet=1)
And I get the error saying unable to find an inherited method for function readWorksheet. This code used to work before, and the only thing I've changed is adding
options(java.parameters = "- Xmx1024m")
To allow for more memory. Also, my data in Excel got significantly larger (from 200 rows to 7,000) so I'm not sure if that had something to do with it as well.