Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
library(httr) | |
library(digest) | |
library(XML) | |
s3_request <- function(verb, bucket, path = "/", query = NULL, | |
content = NULL, date = NULL) { | |
list( | |
verb = verb, | |
bucket = bucket, | |
path = path, |
import sys | |
import csv | |
tabin = csv.reader(sys.stdin, dialect=csv.excel_tab) | |
commaout = csv.writer(sys.stdout, dialect=csv.excel) | |
for row in tabin: | |
commaout.writerow(row) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# TITLE: ggplot2 Workshop Homework for Maps | |
# AUTHOR: Tom Schenk Jr. | |
# DATE CREATED: November 7, 2012 | |
# DATE MODIFIED: None | |
# PURPOSE: Create maps using R and ggplot2 library. | |
# LIBRARIES: ggplot2, maptools | |
library(ggplot2) | |
library(maptools) |