Space 在 R 的 x 轴上具有 day/week/month 的条形图之间
Space between bar chart with day/week/month in x axis in R
当条数较多时(当days/weeks在x轴上时),条之间的空间不可见。
但是当柱数较少时(当月份在 x 轴上时),柱之间的空间是可见的。
我想要的是不管条数多少,条之间的空间应该是可见的。请知道用 R 编写代码吗?
您可以为条形图周围的边框添加 colour = "white"
:
library(tidyverse)
df <- tibble(x = rep(1:100, 5))
df |>
ggplot(aes(x)) +
geom_histogram()
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
df |>
ggplot(aes(x)) +
geom_histogram(colour = "white")
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
由 reprex package (v2.0.1)
于 2022-05-17 创建
当条数较多时(当days/weeks在x轴上时),条之间的空间不可见。
但是当柱数较少时(当月份在 x 轴上时),柱之间的空间是可见的。
我想要的是不管条数多少,条之间的空间应该是可见的。请知道用 R 编写代码吗?
您可以为条形图周围的边框添加 colour = "white"
:
library(tidyverse)
df <- tibble(x = rep(1:100, 5))
df |>
ggplot(aes(x)) +
geom_histogram()
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
df |>
ggplot(aes(x)) +
geom_histogram(colour = "white")
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
由 reprex package (v2.0.1)
于 2022-05-17 创建