Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ycphs/openxlsx
openxlsx - a fast way to read and write complex xslx files
https://github.com/ycphs/openxlsx
cran r xlsx
Last synced: 8 days ago
JSON representation
openxlsx - a fast way to read and write complex xslx files
- Host: GitHub
- URL: https://github.com/ycphs/openxlsx
- Owner: ycphs
- License: other
- Created: 2019-10-04T09:23:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-26T17:58:49.000Z (16 days ago)
- Last Synced: 2024-11-26T18:38:13.469Z (16 days ago)
- Topics: cran, r, xlsx
- Language: R
- Homepage: https://ycphs.github.io/openxlsx/
- Size: 11.7 MB
- Stars: 226
- Watchers: 9
- Forks: 76
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- jimsghstars - ycphs/openxlsx - openxlsx - a fast way to read and write complex xslx files (R)
README
[openxlsx](https://ycphs.github.io/openxlsx/)
========[![codecov](https://codecov.io/gh/ycphs/openxlsx/branch/master/graph/badge.svg)](https://app.codecov.io/gh/ycphs/openxlsx)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/openxlsx)](https://cran.r-project.org/package=openxlsx)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/openxlsx)](https://cran.r-project.org/package=openxlsx)
[![R-CMD-check](https://github.com/ycphs/openxlsx/actions/workflows/R-CMD-check.yaml/badge.svg?branch=master)](https://github.com/ycphs/openxlsx/actions/workflows/R-CMD-check.yaml)
This [R](https://www.R-project.org/) package simplifies the creation of `.xlsx` files by providing
a high level interface to writing, styling and editing worksheets. Through the use of [`Rcpp`](https://CRAN.R-project.org/package=Rcpp), read/write times are comparable to the [`xlsx`](https://CRAN.R-project.org/package=xlsx) and
[`XLConnect`](https://CRAN.R-project.org/package=XLConnect) packages with the added benefit of removing the dependency on
Java.## Installation
### Stable version
Current stable version is available on [CRAN](https://CRAN.R-project.org/) via
```R
install.packages("openxlsx", dependencies = TRUE)
```### Development version
```R
install.packages(c("Rcpp", "remotes"), dependencies = TRUE)
remotes::install_github("ycphs/openxlsx")
```## Bug/feature request
Please let me know which version of openxlsx you are using when posting bug reports.
```R
packageVersion("openxlsx")
```## News
[Here](https://raw.githubusercontent.com/ycphs/openxlsx/master/NEWS.md).