This R Package creates a Shiny App to review all csv files in a folder and all its subfolders.
- Allows to add comments per csv file which are saved in the main folder as json file.
- A documentation.json can be provided that can contain instructions per file or folder.
install.packages("remotes")
remotes::install_github("ehden/CsvViewer")
To run on an example set of csv files run the following code:
library(CsvViewer)
csvViewer::launchdemo()
These example files are first downloaded to a temporary folder and then the app is launched.
To run on a folder with your csv files run the following code:
library(CsvViewer)
csvViewer::launch(folder = "path/to/folder")
In the folder a comments.json file will be created to store the comments.
All the csv files in this folder and its subfolders will be shown in the app.
if the folder contains a documentation folder and a documentation.json the documentation panel will show documentation per file in the app. See the exampe folder for more details.
We use the GitHub issues tracker for all bugs/issues/enhancements
CsvViewer is licensed under Apache License 2.0
CsvViewer is developed in R Studio.
CsvViewer is still under development all feedback is welcome in the issues tracker.