Built with blockbuilder.org from this original jsfiddle: http://jsfiddle.net/Qh9X5/154/
forked from lilyc5459's block: d3.js wiki visualization
Credit goes to Peter Cook for giving permission to use code from his Circular Heat Chart in D3.EZ.
Uses D3.EZ Reusable Chart Library
forked from jamesleesaunders's block: D3.EZ : Reusable Circular Heat Chart
Built with blockbuilder.org , adapted from this http://jsfiddle.net/yH75y/2/
### Getting model output into Word (if you really have to) | |
# This assumes that in your working directory you already have a word document called rtf.doc | |
library(rtf) # puts data into RTF format | |
fit <- summary(lm(mpg ~ cyl + hp, data=mtcars)) |
### Make Win / Winless Streaks plot | |
#Load packages | |
library(engsoccerdata) | |
library(dplyr) | |
library(ggplot2) | |
engsoccerdata2$Date <- as.Date(engsoccerdata2$Date, format="%Y-%m-%d") #make Date format | |
#Get MUFC games: |
Built with blockbuilder.org
A draggable tactics board for soccer (Think Andy Townsend circa late 1990s).
More info here: http://jalapic.github.io/tacticsboard
Built with blockbuilder.org
A draggable tactics board for soccer (Think Andy Townsend circa late 1990s).
forked from jalapic's block: James' tactics board
Adding to Ian Baldwin's modifications:
Changes made:
Built with blockbuilder.org
A draggable tactics board for soccer (Think Andy Townsend circa late 1990s).
forked from jalapic's block: James' tactics board
Adding to Ian Baldwin's modifications:
Changes made:
library(ggplot2) | |
library(dplyr) | |
data(mtcars) | |
sem <- function(x) sd(x)/sqrt(length(x)) #std error | |
mtcarsx <- mtcars %>% group_by(cyl) %>% summarize(meanx = mean(wt), semx = sem(wt)) %>% mutate(upr = meanx + semx, lwr = meanx - semx) | |
mtcarsx | |
ggplot(mtcarsx, aes(x=factor(cyl), y=meanx))+ |