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 read a csv file in the disk and save it as a csv format.
Install packageYou 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).You can enter data name(4) to edit, upload a CSV or excel or RDS file(5) and download the edited data as a csv(6) or xlsx(7) or RDS (8)file.
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 assigned 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
.
The editData
package is made of modularized shiny functions. You can use the modularized editableDTUI()
and editableDT()
functions in your shiny app. In this package, I have included three examples in the inst
folder. You can run these examples with one of the following codes.
shiny::runApp(system.file('example',package='editData'))
shiny::runApp(system.file('multipleData',package='editData'))
shiny::runApp(system.file('multipleFiles',package='editData'))
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4