我正在尝试将一组样本的几个特征绘制成各种美学。圆圈的边框颜色和大小就是其中之一。但是,如果我尝试为这些形状设置更大的基线边框,通过设置lwd=2
,所有形状都会恢复到相同的大小并且图例消失了。我只想让圆圈有更大的边框,我该怎么做?
一个例子:
library(ggplot2)
testFrame <- data.frame(
sizeVar=factor(c('a', 'a', 'a', 'a', 'b', 'b', 'b', 'b')),
samples=rep(c('Sample1', 'Sample2'), times=4),
features=c(rep('Feature1', times=4), rep('Feature2', times=4))
)
testPlot <- ggplot(data=testFrame, aes(x=samples, y=features))
testPlot +
geom_point(aes(size=sizeVar), pch=21, color='black', fill='gray') +
scale_size_manual(values=c(9,4)) + theme_bw()
testPlot +
geom_point(aes(size=sizeVar), pch=21, lwd=3, color='black', fill='gray') +
scale_size_manual(values=c(9,4)) + theme_bw()