を使用しているため、この質問は以前にここで尋ねられた同様の質問とは少し異なると思いますscale_fill_brewer(
。私はこれに似たコロプレスに取り組んでいます https://gist.github.com/233134
それは次のようになります。
そして伝説は次のようになります:
私はそれが好きですが、凡例のラベルをカットのようなラベル、つまり(2, 4]から ' 2% to 4% ' または ' 2% - 4% ' のようなより親しみやすいものに変更したいと考えています。ここで見られるように、scale_... 内のラベルを簡単に変更できます.labels = 引数をどこに置くべきかわかりません.もちろんコードを書き直すことはできますchoropleth$rate_d
が、それは非効率的です.どこに引数labels=c(A, B, C, D...)
?
対象のコードは次のとおりです (完全なコードについては、上記のリンクを使用してください)。
choropleth$rate_d <- cut(choropleth$rate, breaks = c(seq(0, 10, by = 2), 35))
# Once you have the data in the right format, recreating the plot is straight
# forward.
ggplot(choropleth, aes(long, lat, group = group)) +
geom_polygon(aes(fill = rate_d), colour = alpha("white", 1/2), size = 0.2) +
geom_polygon(data = state_df, colour = "white", fill = NA) +
scale_fill_brewer(pal = "PuRd")
よろしくお願いいたします。
編集:DWinの方法を使用する(これは私が以前に遭遇したものであるため、このエラーを投稿する必要がありました)
> ggplot(choropleth, aes(long, lat, group = group)) +
+ geom_polygon(aes(fill = rate_d), colour = alpha("white", 1/2), size = 0.2) +
+ geom_polygon(data = state_df, colour = "white", fill = NA) +
+ scale_fill_brewer(pal = "PuRd", labels = lev4)
Error: Labels can only be specified in conjunction with breaks