libraryreadxl data-readxlsxCUsers27773DesktoptryxlsxError in readxlsxCUsers27773Desktoptryxlsx could not find function readxlsx解决方案
The error message suggests that the function "read.xlsx" is not found. This could be due to the fact that the "readxl" package, which contains the "read.xlsx" function, is not installed or not loaded.
To resolve this issue, you can try the following steps:
-
Install the "readxl" package by running the following command:
install.packages("readxl") -
Load the "readxl" package by running the following command:
library(readxl)
After performing these steps, you should be able to use the "read.xlsx" function to read Excel files
原文地址: https://www.cveoy.top/t/topic/ivay 著作权归作者所有。请勿转载和采集!