Re: [R] Everything in ggplot2 is blue

2016-03-13 Thread Ista Zahn
color is the border, fill is the inside color. You nees aes(x = W, y = IPouts, fill = SO) Best, Ista On Mar 12, 2016 10:43 PM, "KMNanus" wrote: > I’m working with a data frame called “Koufax” (his lifetime pitching > stats) in order to improve my ggplot2 skills. > > I’ve worked with a variety o

[R] Everything in ggplot2 is blue

2016-03-12 Thread KMNanus
I’m working with a data frame called “Koufax” (his lifetime pitching stats) in order to improve my ggplot2 skills. I’ve worked with a variety of iterations of ken <- ggplot(koufax, aes(x = W, y = IPouts, color = SO)) + geom_bar(stat = "identity”) but all the bars come up blue, even if I call..