Skip to content

Instantly share code, notes, and snippets.

@bhive01
bhive01 / code.R
Created January 13, 2014 15:03 — forked from patilv/code.R
library(rCharts)
library(plyr)
library(reshape2)
library(scales)
findata=read.csv("https://raw.github.com/patilv/rChartsTutorials/master/findata.csv")
# These are data regarding NCAA athletic department expenses at public universities. Please see the blog post where these charts were originally used
# regarding more details on the origins of these data.: http://analyticsandvisualization.blogspot.com/2013/10/subsidies-revenues-and-expenses-of-ncaa.html
findata=findata[,-c(1:2)] # removing first dummy column - the csv quirk - and second column on Rank.
@bhive01
bhive01 / README.md
Last active January 29, 2016 17:46 — forked from ramnathv/README.md

Livecoding D3 in RStudio

This is a proof-of-concept on how one can use RStudio to livecode D3 visualizations.

Usage

You will need to install a couple of packages before getting started

devtools::install_github("yihui/servr")
@bhive01
bhive01 / fileIOinR.R
Last active May 20, 2016 19:56 — forked from rmflight/feather_input.R
feather benchmarking
library(devtools)
library(iotools)
library(R.utils)
library(feather) # install_github("wesm/feather/R")
library(microbenchmark)
library(data.table)
library(readr)
library(ggplot2)
library(plotly)