Welcome to dataviewR

dataviewR is a Shiny-based interactive viewer for R data
frames and tibbles. It allows you to:
- Select and view columns easily
- Apply complex filters
- Sort and search within data
- Auto-generate
dplyrcode based on your interactions - View attribute information of data objects
Installation
You can install dataviewR from CRAN (replace with actual
if published):
install.packages("dataviewR")Or from GitHub (if applicable):
# install.packages("devtools")
devtools::install_github("madhankumarnagaraji/dataviewR")Basic Usage
Let’s try viewing the built-in mtcars dataset:
dataviewR::dataviewer(mtcars)This will launch an interactive Shiny app where you can explore the dataset.