When trying to use read_excel an error returns: there is no package called lifecycle

library(readxl)
dirname <- "F:/Weygand/Class/fall21/CNU/LabData/ElectricForce/"
fname <- paste(dirname,"Group4",".xlsx",sep='')
T1 <- read_excel(fname,sheet="T1")

Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : 
  there is no package called ‘lifecycle’

Then you have to install it

install.packages("lifecycle")

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.