Created
December 16, 2015 08:21
-
-
Save Lauler/12be9025b7441eb44c51 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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