Skip to content

Distributions

jcdny edited this page Nov 7, 2011 · 5 revisions
x <- read.csv("dist.csv")
x <- x[which(x$actual > 0 & x$empty > 0),]
ggplot(x, aes(x=steps, y=actual/empty)) +geom_line() + xlim(5,100) + ylim(0,1.5) + facet_wrap(~ map)

Distribution of steps from Hill vs steps on an empty map

> ggplot(x, aes(x=steps, y=actual)) +geom_line() + xlim(5,20) +ylim(0,20) +facet_wrap(~ map) + opts(title="Actual tiles N steps from Hill")

Actual tiles N steps from hill

Pathing data

Clone this wiki locally