Skip to content

Instantly share code, notes, and snippets.

@Lauler
Created December 16, 2015 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lauler/12be9025b7441eb44c51 to your computer and use it in GitHub Desktop.
Save Lauler/12be9025b7441eb44c51 to your computer and use it in GitHub Desktop.
cstrike <- read.csv("CSrandom2.csv")
csgo <- read.csv("CSgopolar.csv")
p <- ggplot(data = cstrike, aes(x = x, y = y)) +
geom_point(alpha = 0.05, colour = "Blue") +
theme(axis.title.y = element_text(angle = 0, hjust = 0)) +
theme_set(theme_bw(base_size = 20)) +
ggtitle("Spread/Inaccuracy in CS 1.6 (100 000 shots)")
p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment