作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在ggplot图表中有一个颜色条,范围从白色到红色,白色边框在白色背景上不太好看。
有没有办法为图例中的刻度线涂上不同的颜色或在渐变比例周围添加边框?
这是一个最小的示例:
df <- data.frame(x <- rnorm(10),
y <- rnorm(10),
fill <- rnorm(10))
ggplot(df, aes(x, y, fill = fill)) +
geom_point() +
scale_fill_gradient(low = 'white', high = 'red')
最佳答案
在最新的ggplot2(开发版本,将以2.3版本发布)中,现在可以使用:
# devtools::install_github("tidyverse/ggplot2") # do this once
library(ggplot2)
df <- data.frame(x <- rnorm(10),
y <- rnorm(10),
fill <- rnorm(10))
ggplot(df, aes(x, y, fill = fill)) +
geom_point() +
scale_fill_gradient(low = 'white', high = 'red',
guide = guide_colorbar(frame.colour = "black", ticks.colour = "black"))
关于r - 在ggplot2中添加边框或背景以缩放图例guide_colorbar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29793398/
默认情况下,geom_raster创建一个稍微超出数据限制的渐变图例。 例如: library(ggplot2) p1 <- ggplot(data=cbind(expand.grid(x=1:10,
我是一名优秀的程序员,十分优秀!