The ‘editData’ is an RStudio addin for editing a ‘data.frame’ or a ‘tibble’. Many RStudio users want to edit a data.frame. With this ‘editData’ package, you can delete, add or update a ‘data.frame’ without coding. You don’t have to use Microsoft excel or a csv editor any more to edit data. You can get resultant data as a ‘tibble’ or as a ‘data.frame’.
You can install editData
package from CRAN.
install.packages("editData")
You can install the developmental version of editData
package from github.
#install.packages("devtools")
devtools::install_github("cardiomoon/editData")
After install this editData
package you can see the editData
addin in RStudio’s addins. (See the second plot).
This addin can be used to interactively manipulate a data.frame
or a tibble
. The intended way to use this is as follows:
data.frame
or a tibble
in your R session, e.g. mtcars
(1).sampleData
included in the editData
package is selected. The sex
and bloodType
column are factor
variables. A selectInput
is assigned for a column of class factor.dateInput
is assigend for a column of class date
.You can use the editData()
function as a regular function, e.g. in a command line.
require(editData)
result <- editData(mtcars)
The resultant ‘tibble’ or ‘data.frame’ is assigned to the object result
.