1
Iは、クロス集計表をプロットhereから変更されたRで次のコードを持っている:可視クロス集計表 - 変更色
#load ggplot2
library(ggplot2)
# Set up the vectors
xaxis <- c("A", "B")
yaxis <- c("A","B")
# Create the data frame
df <- expand.grid(xaxis, yaxis)
df$value <- c(120,5,30,200)
#Plot the Data
g <- <- ggplot(df, aes(Var1, Var2)) + geom_point(aes(size = value), colour = "lightblue") + theme_bw() + xlab("") + ylab("")
g + scale_size_continuous(range=c(10,30)) + geom_text(aes(label = value))
それが大きい右図を生成し、私は4つのドットをカスタムカラーにすることを望んでいました。理想的には、左上と右下がそれぞれ1つの色で、右上と左下が別の色です。
私が使用しようとしました:
+ scale_color_manual(values=c("blue","red","blue","red"))
それが動作するようには思えません。何か案は?
これは、2つの別個の凡例 – PoGibas