https://github.com/trinostics/excelRio
Excel - R Input - Output
https://github.com/trinostics/excelRio
Last synced: 3 months ago
JSON representation
Excel - R Input - Output
- Host: GitHub
- URL: https://github.com/trinostics/excelRio
- Owner: trinostics
- Created: 2014-10-04T23:16:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T00:10:38.000Z (over 4 years ago)
- Last Synced: 2024-08-13T07:11:17.913Z (6 months ago)
- Language: R
- Size: 323 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - trinostics/excelRio - Excel - R Input - Output (R)
README
# excelRio
Excel-R Input-Output
excelRio is an R package providing rudimentary input/output capability
between Microsoft Excel and R via:- the clipboard
- csv files
- directly to workbooksIn contraposition to RExcel, excelRio assumes the user "lives" within the R environment
and sometimes uses Excel as a source of data or to store results,
either for printing reports or performing subsequent analysis.## Installation
Currently this package is under development and only exists on github.
To install the current development version from github you need the [devtools package](http://cran.r-project.org/web/packages/devtools/index.html) and the other packages on which excelRio depends:
```s
install.packages(c("tools", "mondate"))
```Those two packages are sufficient to exchange data via the clipboard and csv files.
To exchange data directly with workbooks it is recommended to also install the XLConnect package and its dependencies.
Other packages are supported. See the help for `readFromExcel` and `writeToExcel`.
**Note! XLConnect uses java and the rJava package, which can sometimes be troublesome to manage. Please consult your IT department.**To install excelRio run:
```s
library(devtools)
install_github("trinostics/excelRio")
```## Usage
```s
library(excelRio)
?excelRio
```Refer to the help files. Examples are somewhat limited at this time.