我在溜冰场的图像上绘制了曲棍球射击位置的等高线图/热图,但是噪音太大。特别是最低的垃圾箱是完全没有必要的,并且会破坏图像。有没有办法摆脱这个垃圾箱?我希望它看起来像这样:
代码和图像:
ggplot(full_data, aes(x=xCordall, y=yCordall)) +
background_image(img)+
stat_density_2d_filled(aes(fill= ..level..),geom = 'polygon',alpha= 0.8)+
scale_x_continuous(limits = c(-100, 100))+
scale_y_continuous(limits = c(-42.5, 42.5))+
guides(fill=F)+
theme_void()