could not find function "read_excel"

1、问题

2、解决方法

install.packages("readxl")
library("readxl")
test <- read_excel("cor.xlsx", sheet = 1, col_names = T, col_types = NULL)
dim(test)

原文地址:https://www.cnblogs.com/liujiaxin2018/p/15514762.html