0

Using the new Shiny drag&drop feature when dropping an xls file I get an odd error "missing file extension":

Output created: /tmp/RtmpOu52HQ/file916414ce2376.html
Warning in body(fun) : argument is not a function
Warning: Error in : Missing file extension.
Stack trace (innermost first):
    107: excel_format
    106: read_excel_
    105: read_excel
    104: eval
    103: eval
    .....

I just drop a xls (with extensión of course) file and parse with readxl but this error is annoying me.

Forge
  • 1,587
  • 1
  • 15
  • 36

1 Answers1

0

Missing file extension is (was?) a common problem when reading excel files into shiny apps. This provides you with the known solutions for integrating reading excel files (or multiple sheets) into your shiny:

  1. with file.rename() here
  2. with file.copy() here
Patrik_P
  • 3,066
  • 3
  • 22
  • 39