Skip to content

Commit

Permalink
Merge pull request johnmyleswhite#14 from edgester/master
Browse files Browse the repository at this point in the history
Fix for ggplot error in figure 3-1
  • Loading branch information
johnmyleswhite committed Dec 22, 2012
2 parents 2eafcb4 + c192918 commit fde52d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 03-Classification/email_classify.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ex1 <- ggplot(val, aes(x, V2)) +
geom_jitter(aes(shape = as.factor(V3)),
position = position_jitter(height = 2)) +
scale_shape_discrete(guide = "none", solid = FALSE) +
geom_hline(aes(yintercept = c(10,30), linetype = 2)) +
geom_hline(aes(yintercept = c(10,30)), linetype = 2) +
theme_bw() +
xlab("X") +
ylab("Y")
Expand Down

0 comments on commit fde52d4

Please sign in to comment.