Having fun with Ramnath Vaidyanathan's new package rblocks!
This file contains 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(httr) | |
library(digest) | |
library(XML) | |
s3_request <- function(verb, bucket, path = "/", query = NULL, | |
content = NULL, date = NULL) { | |
list( | |
verb = verb, | |
bucket = bucket, | |
path = path, |
This file contains 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
# Gantt chart based on my PhD completion timetable. | |
## Below is a copy of gantt.csv (built initially in a spreadsheet) | |
#Task,Start,End,Chapter | |
#"Metabolic efficiency reading (3)",2014/08/01,2014/11/30,3 | |
#"Metabolic efficiency data analysis (3)",2014/11/01,2015/02/28,3 | |
#"Model development (4)",2014/08/01,2014/10/30,4 | |
#"Shann Gu case study (5)",2014/08/01,2014/10/30,5 | |
#"Metabolic pathway database construction (6)",2014/08/01,2015/04/30,6 | |
#"Metabolic pathaway analysis (6)",2015/03/01,2015/06/30,6 |
This file contains 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
## install and load the stattleshipR package | |
devtools::install_github("stattleship/stattleship-r") | |
library(stattleshipR) | |
## optional: load dplyr | |
library(dplyr) | |
## get your API token stattleship.com | |
## set API token | |
set_token('YOUR API TOKEN') |