Error in read_xlsx("C:/Users/zyc/Desktop/cov_stock.xlsx") : could not find function "read_xlsx"
时间: 2024-05-01 20:21:03 浏览: 189
actions_as_xlsx:axlsx的活动记录混合
这个错误提示是因为 R 无法找到 `read_xlsx` 函数。这个函数通常是由 `readxl` 包提供的。你需要先在 R 中安装 `readxl` 包,然后再加载它,才能使用 `read_xlsx` 函数。
你可以通过以下代码安装 `readxl` 包:
```
install.packages("readxl")
```
安装完成后,加载包:
```
library(readxl)
```
然后你就可以使用 `read_xlsx` 函数了。
阅读全文