An open API service indexing awesome lists of open source software.

https://github.com/jienagu/DT_editor_shiny_module

This app utilize shiny module that can fit any data.table
https://github.com/jienagu/DT_editor_shiny_module

Last synced: 4 months ago
JSON representation

This app utilize shiny module that can fit any data.table

Awesome Lists containing this project

README

        

# DT_editor_shiny_module

* This app utilize shiny module that can fit for any data.table
You just need to create your data.table and load it to the same location of your shiny app as note.rds
* Currently, I am working on an elegant way to handle Date format so please convert any date col to character/factor
before you load the data.table to this app

# Acknowledgement
Eric Nantz (@rpodcast) introduced shiny module to me!

## For example:
```
DT3=data.table(iris[1:3,])
saveRDS(DT3, "path of your shiny app/note.rds")
```
![Screen_recording](Screen_record.gif)