This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Adapted from https://gist.github.com/abresler/46c36c1a88c849b94b07 | |
| ## Blog post Jan 21 | |
| ## http://blog.revolutionanalytics.com/2015/01/a-beautiful-story-about-nyc-weather.html | |
| library(checkpoint) | |
| checkpoint("2015-01-28") | |
| library(dplyr) | |
| library(tidyr) | |
| library(magrittr) | |
| library(ggplot2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(rgl) | |
| open3d() | |
| comet <- readOBJ(url("http://sci.esa.int/science-e/www/object/doc.cfm?fobjectid=54726")) | |
| shade3d(comet, col="gray") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run Simon Urbanek's benchmark v2.5 | |
| cat("R version\n") | |
| cat("=========\n") | |
| print(R.version) | |
| if(exists("Revo.version")) { | |
| cat("Revo version") | |
| cat("============") | |
| print(Revo.version) |
NewerOlder