Skip to content

Instantly share code, notes, and snippets.

View peterparkerspicklepatch's full-sized avatar

Gary S. Becker peterparkerspicklepatch

View GitHub Profile
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@peterparkerspicklepatch
peterparkerspicklepatch / dataframe.R
Last active November 7, 2015 22:17
michaelbay.r
#Grab all of the info and put it into a dataframe
mikebay_movies <- lapply(vrottenrate(mikebay_movies$Film), function(x) as.data.frame(t(x), stringsAsFactors = FALSE))
mikebay_movies_dt <- rbindlist(mikebay_movies,fill=TRUE)