R语言中有很多载入Excel文件的Package,如RODBC、xlsx、gdata、xlsReadWrite等,但都有很多缺陷(依赖Java,依赖操作系统,列数限定、效率这些),而下边要介紹的2个包可以很好地处理这种问题。
知识要点
- openxlsx: simplifies the the process of writing and styling Excel xlsx files from R and removes the dependency on Java.
- readxl: Read Excel Files. Works on Windows, Mac and Linux without external dependencies.
包安裝
install.packages(\"openxlsx\")
install.packages(\"readxl\")
Read Excel file
# readxl 内置的excel文件
xls_file <- readxl::readxl_example(\"datasets.xls\")
xlsx_file <- readxl::readxl_example(\"datasets.xlsx\")
readxl::read_xls(xls_file)
readxl::read_xlsx(xlsx_file)
openxlsx::read.xlsx(xlsx_file)
Write Excel file
xlsx_file <- readxl::readxl_example(\"datasets.xlsx\")
df <- openxlsx::read.xlsx(xlsx_file)
openxlsx::write.xlsx(df, file = \"datasets.xlsx\")
Edit Excel file
openxlsx 具备下列作用:
- 实际操作 WorkSheet
- 操作 Cell & Style
- 添加图片
- 函数公式
- 设定行高、列宽
- 恢复出厂设置这些
Reference
- https://ycphs.github.io/openxlsx/index.html
- https://readxl.tidyverse.org/
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。