Skip to content

Instantly share code, notes, and snippets.

View Myfanwy's full-sized avatar

Myfanwy Johnston Myfanwy

View GitHub Profile
library(SmarterPoland)
library(riverplot)
library(RColorBrewer)
library(graphics)
library(reshape2)
library(plyr)
library(stringr)
library(countrycode)
# DOWNLOAD THE DATA
@Myfanwy
Myfanwy / jekyll-google-calendar
Last active October 6, 2016 17:59 — forked from iani/jekyll-google-calendar
Embed google calendar in a web page for rendering by Jekyll. Copied from: https://github.com/StevenBlack/qst-jekyll-bootstrap/blob/master/calendar.html see it in action here: http://www.queenssailing.ca/calendar/
---
layout: page
title: Davis R-Users Group Calendar
permalink: /calendar/
type: info
header_text: Davis R-Users Group Calendar
calendar: true
---
<div class="span3">
<h3>Davis R-Users Group Events</h3>
tt %>%
mutate(
laststation = as.character(laststation),
TagID = as.character(TagID)
) %>%
group_by(laststation) %>%
ggplot(aes(TagID, kmday)) +
geom_segment(aes(xend=TagID, yend=0)) +
geom_point(shape="—", size=5) +
facet_wrap(~laststation, nrow=1, scales="free_x") +