5
私はggplotとgeom_tile
を使ってヒートマップを形成しています。そして、私は細胞間に微妙な線を挿入したいと思います。例えば細胞間のggplotタイル線
:
マイggplot geom_tile
ヒートマップ:
library(ggplot2)
library(reshape2)
data("iris")
x = melt(cor(iris[,1:4]))
ggplot(data=x,aes(Var1,Var2,fill=value)) + geom_tile() # No line between the cells
私は(Rでd3heatmapパッケージから)望むもの
library(d3heatmap)
data("iris")
x = cor(iris[,1:4])
d3heatmap(cor(iris[,1:4]),Rowv = F,Colv = F) #There is a faint line between the cells
(申し訳ありません任意の画像を投稿することはできません) ありがとう!
こんにちは!共有してくれてありがとう。特定の細胞に何らかの色を設定する方法があるのだろうか? Sepal.LengthとSepal.widthを "赤"にしたいのですが。 – jimmy15923
@ jimmy15923セルではなくデータを設定します。または、新しい質問としてそれを聞いてください。 – RHA