Reputation: 21
When I typed the following line using readxl package, : bluedata <- read_excel("data.xlsx", coffee)
I get the following error: Error in standardise_sheet(sheet, range, sheets_fun(path)) : object 'coffee' not found
What I want was to import the data in "coffee" sheet of the "data.xlsx" file. Could any one help me to solve this problem? Thanks!
Upvotes: 0
Views: 3473
Reputation: 1474
It is cool that you are using readxl package, this is faster than normal way to read outside data.
I think you can find the answer yourself by typing
help("read.excel")
or
?"read.excel"
I can tell you the answer, but you will met thousands of another problem if you can not find answer on your own
Upvotes: 2