Skip to content

Instantly share code, notes, and snippets.

@vpnagraj
vpnagraj / app.R
Created November 17, 2016 17:43
skeleton of a shiny app to setwd and source R scripts
library(shiny)
options(shiny.reactlog=TRUE)
# define home dir for shiny app
homed <- getwd()
# set up choices to be retrievable in server.R
progchoices <- c("This is a TEST APP" = "testapp/",
"Yet Another Program" = "anotherprog/")
ui <- fluidPage(
@vpnagraj
vpnagraj / eda_tools.R
Created April 9, 2024 14:17
Simple (and non-exhaustive) demo of exploratory data analysis tools in R
###############################################################################
## brief demo of exploratory data analysis (EDA) tools for data frames in R
## NOTE: the code below is intended to preview the EDA tools ...
## ... it does not exhaustively demonstrate functionality for these tools ...
## ... and it is current as of 2024-04-09 ...
## ... for more information refer to the documentation for each package
###############################################################################
###############################################################################
## set up