2016-06-17 1 views
1

Вот код:Как я могу изменить цвет для geom_point в этой ситуации?

df$ProsperRating..Alpha.<-ordered(df$ProsperRating..Alpha., 
            levels = c("AA","A","B","C","D","E","HR")) 
ggplot(aes(x=BorrowerAPR,y=LP_InterestandFees), 
     data=subset(df,!is.na(ProsperRating..Alpha.)))+ 
    geom_point(alpha=0.2,aes(color=ProsperRating..Alpha.),position = "jitter") 

Вот приведенный график: enter image description here

Но мне нужно изменить цвет точек в блюзе, как это: enter image description here

Как может Я этого добился?

+0

См 'scale_color_manual' или' scale_color_discrete'. – eipi10

ответ

3
library(ggplot2) 

qplot(x, price, data = diamonds, colour = clarity) + 
    scale_colour_brewer(palette="Blues", direction = -1) 

производит этот

enter image description here