xlsx

所属分类:工具库
开发工具:R
文件大小:0KB
下载次数:0
上传日期:2020-11-12 10:28:09
上 传 者sh-1993
说明:  这是CRAN R软件包存储库的只读镜像。xlsx-读取、写入、格式化Excel 2007和Excel 97 2000 XP 2003文件。哼...,
(??This?is?a?read-only?mirror?of?the?CRAN?R?package?repository. xlsx?—?Read,?Write,?Format?Excel?2007?and?Excel?97/2000/XP/2003?Files.?Homepage:?https://github.com/colearendt/xlsx Report?bugs?for?this?package:?https://github.com/colearendt/xlsx/issues)

文件列表:
DESCRIPTION (1076, 2020-11-10)
MD5 (6367, 2020-11-10)
NAMESPACE (1748, 2020-11-10)
NEWS (11867, 2020-11-10)
R/ (0, 2020-11-10)
R/Alignment.R (2096, 2020-11-10)
R/Border.R (2341, 2020-11-10)
R/Cell.R (7879, 2020-11-10)
R/CellBlock.R (12029, 2020-11-10)
R/CellProtection.R (1243, 2020-11-10)
R/CellStyle.R (10820, 2020-11-10)
R/DataFormat.R (1983, 2020-11-10)
R/ExcelConstants.R (86, 2020-11-10)
R/Fill.R (1970, 2020-11-10)
R/Font.R (3425, 2020-11-10)
R/NamedRanges.R (5936, 2020-11-10)
R/Picture.R (2549, 2020-11-10)
R/PrintSetup.R (2725, 2020-11-10)
R/Row.R (11949, 2020-11-10)
R/Workbook.R (6300, 2020-11-10)
R/addDataFrame.R (7365, 2020-11-10)
R/autoRefresh.R (6973, 2020-11-10)
R/comment.R (2665, 2020-11-10)
R/otherEffects.R (9181, 2020-11-10)
R/read.xlsx.R (8515, 2020-11-10)
R/read.xlsx2.R (1844, 2020-11-10)
R/readColumns.R (5802, 2020-11-10)
R/readRows.R (2544, 2020-11-10)
R/utilities.R (6797, 2020-11-10)
R/write.xlsx.R (5414, 2020-11-10)
R/write.xlsx2.R (673, 2020-11-10)
R/xlsx-package.R (2793, 2020-11-10)
build/ (0, 2020-11-10)
build/vignette.rds (248, 2020-11-10)
inst/ (0, 2020-11-10)
inst/doc/ (0, 2020-11-10)
inst/doc/excel_report.R (3028, 2020-11-10)
inst/doc/excel_report.Rmd (5415, 2020-11-10)
inst/doc/excel_report.html (107848, 2020-11-10)
... ...

[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/colearendt/xlsx?branch=master&svg=true)](https://ci.appveyor.com/project/colearendt/xlsx) [![Travis-CI Build Status](https://travis-ci.org/colearendt/xlsx.svg?branch=master)](https://travis-ci.org/colearendt/xlsx) [![CRAN Version](https://www.r-pkg.org/badges/version-last-release/xlsx)](https://CRAN.R-project.org/package=xlsx) [![codecov.io](https://codecov.io/github/colearendt/xlsx/coverage.svg?branch=master)](https://codecov.io/github/colearendt/xlsx?branch=master) [![CRAN Activity](https://cranlogs.r-pkg.org/badges/xlsx)](https://CRAN.R-project.org/package=xlsx) [![CRAN History](https://cranlogs.r-pkg.org/badges/grand-total/xlsx)](https://CRAN.R-project.org/package=xlsx) xlsx ======== **An R package to read, write, format Excel 2007 and Excel 97/2000/XP/2003 files** The package provides R functions to read, write, and format Excel files. It depends on Java, but this makes it available on most operating systems. ## Install Stable version from CRAN ```r install.packages('xlsx') ``` Or development version from GitHub ```r devtools::install_github('colearendt/xlsx') ``` ## Common Problems This package depends on Java and the [`rJava`](https://www.rforge.net/rJava/) package to make the connection between R and Java seamless. In order to use the `xlsx` package, you will need to: - Ensure you have a `jdk` (Java Development Kit, version >= 1.5) installed for your Operating System. More information can be found on [Oracle's website](https://www.oracle.com/java/technologies/javase-downloads.html) - Ensure that the system environment variable `JAVA_HOME` is configured appropriately and points to your `jdk` of choice. Typically, this will be included in your `PATH` environment variable as well. Options and system environmental variables that are available from `R` can be seen with `Sys.getenv()` - Particularly on UNIX systems, if you continue experiencing issues, you may need to reconfigure `R`'s support for Java on your system. From a terminal, use the command `R CMD javareconf`. You may need to run this as root or prepended with `sudo` to ensure it has appropriate permission. More detail can be found in the [`rJava` docs](https://www.rforge.net/rJava/). ## Quick start To read the first sheet from spreadsheet into a data.frame ```r read.xlsx2('file.xlsx', 1) ``` To write a data.frame to a spreadsheet ```r write.xlsx2(iris, file='iris.xlsx') ``` The package has many functions that make it easy to style and formalize output into Excel, as well. ```r wb <- createWorkbook() s <- createSheet(wb,'test') cs <- CellStyle(wb) + Font(wb,heightInPoints = 16, isBold = TRUE) + Alignment(horizontal='ALIGN_CENTER') r <- createRow(s,1) cell <- createCell(r,1:ncol(iris)) setCellValue(cell[[1]],'Title for Iris') for (i in cell) { setCellStyle(i,cs) } addMergedRegion(s, 1,1, 1,ncol(iris)) addDataFrame(iris, s, row.names=FALSE, startRow=3) saveWorkbook(wb,'iris_pretty.xlsx') ``` ## Issues/Mailing list To report a bug, use the Issues page at: https://github.com/colearendt/xlsx/issues If you are wrestling with the Java dependency, there are some very good alternatives that do not require Java. Your choice will vary depending on what you are trying to accomplish. - [openxlsx](https://github.com/awalker89/openxlsx) - [readxl](https://readxl.tidyverse.org/) - [writexl](https://docs.ropensci.org/writexl/) ## Acknowledgements The package is made possible thanks to the excellent work on [Apache POI](https://poi.apache.org/components/spreadsheet/index.html).

近期下载者

相关文件


收藏者