| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| README.html | 2020-08-12 11:52 | 11K | ||
| man/ | 2020-08-12 11:52 | - | ||

Manual data entry and editing in R can be tedious, especially if you have limited coding experience and are accustomed to using software with a Graphical User Interface (GUI). DataEditR is an R package that makes it easy to view, enter and edit data within R, due to its convenient interactive GUI that supports many of the data manipulation operations supported by other commonly used GUI-oriented software. If you are new to DataEditR visit https://dillonhammill.github.io/DataEditR/ to get started.
DataEditR can be installed directly from GitHub:
DataEditR ships with a single function called data_edit() that allows you to interactively view, enter or edit data in R. The key features of the data editor are summarised below and will be explored in detail in the package vignette:
read.csv())write.csv())shinythemes themeA quick demonstration of some of these features can be seen below, where we use data_edit() to make changes to the mtcars dataset and save the result to a new csv file:
# Load required packages
library(DataEditR)
# Save output to R object & csv file
mtcars_new <- data_edit(mtcars,
save_as = "mtcars_new.csv")
DataEditR is built using the fantastic rhandsontable package. DataEditR makes use of many features for entering and editing data, but rhandsontable has support for much more sophisticated interactive representations of data should you need them.
Please note that the DataEditR project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
If you use DataEditR in your work, please cite the package as follows:
citation("DataEditR")
#>
#> To cite package 'DataEditR' in publications use:
#>
#> Dillon Hammill (2020). DataEditR: An Interactive Editor for Viewing,
#> Entering & Editing Data. R package version 0.0.5.
#> https://github.com/DillonHammill/DataEditR
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {DataEditR: An Interactive Editor for Viewing, Entering & Editing Data},
#> author = {Dillon Hammill},
#> year = {2020},
#> note = {R package version 0.0.5},
#> url = {https://github.com/DillonHammill/DataEditR},
#> }