r语言读取excel数据(r语言对excel数据的分析)

R语言中有很多读取Excel文件的Package,如RODBC、xlsx、gdata、xlsReadWrite等,但都有很多缺点(依赖Java,依赖操作系统,列数限制、效率等等),而下面要介绍的两个包可以完美地解决这些问题。

r语言读取excel数据(r语言对excel数据的分析)

知识点

  • 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.

包安装

本文转载自:https://www.gylmap.com

install.packages("openxlsx")
install.packages("readxl")

Read Excel file

# readxl 自带的excel文件
xls_file 

Write Excel file

xlsx_file 

Edit Excel file

openxlsx 具有以下功能:

  • 操作 WorkSheet
  • 操作 Cell & Style
  • 插入图片
  • 函数
  • 设置行高、列宽
  • 格式化等等

Reference

  • https://ycphs.github.io/openxlsx/index.html
  • https://readxl.tidyverse.org/
秒鲨号所有文章资讯、展示的图片素材等内容均为注册用户上传(部分报媒/平媒内容转载自网络合作媒体),仅供学习参考。用户通过本站上传、发布的任何内容的知识产权归属用户或原始著作权人所有。如有侵犯您的版权,请联系我们反馈!本站将在三个工作日内改正。
(0)

大家都在看

品牌推广 在线咨询
返回顶部