丢失 ggplot 中的灰色边距填充

发布于 2024-11-02 19:03:30 字数 354 浏览 0 评论 0原文

A 想要绘制 geom_tile() 而不显示周围的灰色框架。示例:

library(ggplot2)
p <- ggplot(melt(volcano), aes(x = X1, y = X2, z = value,fill = value)) + geom_tile() 
print(p)

生成下图,如果主题背景没有正确框住热图,该图看起来会更好。我想象中的填充与基础图形中的填充相同,为 4%。大多数时候拥有它是件好事,但并非总是如此。

我认为这个问题的相同解决方案也可以应用于其他几何体。 热图

A would like to plot geom_tile() without displaying the surrounding grey frame. Example:

library(ggplot2)
p <- ggplot(melt(volcano), aes(x = X1, y = X2, z = value,fill = value)) + geom_tile() 
print(p)

Produces the figure below, which would look better had not the theme background framed the heatmap proper. I imaging the padding is the same 4% as in base graphics. It's good to have it most of the time, but not always.

I assume the same solution to this problem could be applied to other geoms as well.
heatmap

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小红帽 2024-11-09 19:03:30

只需执行 print(p1 + scale_x_continuous(expand = c(0, 0)) + scale_y_continuous(expand = c(0, 0))) 即可消除周围的灰色空间

just do print(p1 + scale_x_continuous(expand = c(0, 0)) + scale_y_continuous(expand = c(0, 0))) and that will get rid of the gray space around

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文