Skip to content

Instantly share code, notes, and snippets.

@vpnagraj
vpnagraj / benchmark.R
Created July 4, 2018 15:45
benchmarking `svSocket` versus base `load` versus `redis`
library(microbenchmark)
library(redux)
library(svSocket)
# clear workspace
rm(list = ls())
# set up svSocket
startSocketServer()
con <- socketConnection(host = "localhost", port = 8888, blocking = FALSE)
@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