在ggforce中绘制圆圈顺序
Plotting order of circles in ggforce
我正在修改我之前发布的问题 Limited number of geoms in ggforce?。我当时以为我错了,但我现在可以更清楚地重建它:
我想在另一个上面绘制 N 个圆圈。无论我想绘制多少个圆圈,#11-N 圆圈都绘制在前 10 个圆圈的下方。这说明了问题:
library(tidyverse)
library(ggforce)
circles <- data.frame(
x0 = seq(1, 30),
y0 = seq(1, 30),
r = 2
)
ggplot() +
geom_circle(aes(x0 = x0, y0 = y0, r = r), fill = "grey", data = circles) +
coord_fixed()
因此,当我想绘制同心圆时,前 10 个圆隐藏了所有其他圆。
我可以通过先绘制 11-N 个圆圈然后绘制前十个圆圈来编写解决方法,但它并不优雅
我只能提供一个稍微有点老套的解决方法,对于大型数据集可能效果不佳。遍历每一行创建一个圆圈,然后将它们全部加在一起形成一个要绘制的对象。
library(tidyverse)
library(ggforce)
circles <- data.frame(
x0 = seq(1, 30),
y0 = seq(1, 30),
r = 2
)
mygeom_circle <- function(onerow) {
geom_circle(aes(x0 = x0, y0 = y0, r = r), fill = "grey", data = onerow)
}
gs <- sapply(1:nrow(circles), function(r) mygeom_circle(circles[r,])) # loop through one by one making single circles
gg <-
ggplot() +
gs + # add the single circles in the order they were made
coord_fixed()
gg
这是 ggforce
中的一个错误:它将圆圈中的点与排序顺序与原始圆圈不同的字符串分组。
要获取修复错误的版本,请使用
remotes::install_github("dmurdoch/ggforce@sortorder")
这将要求您安装包构建工具。如果您没有这些,您可以查看网站 https://github.com/thomasp85/ggforce/issues/224 以查看何时将修复程序合并到软件包的 CRAN 版本中。
我正在修改我之前发布的问题 Limited number of geoms in ggforce?。我当时以为我错了,但我现在可以更清楚地重建它: 我想在另一个上面绘制 N 个圆圈。无论我想绘制多少个圆圈,#11-N 圆圈都绘制在前 10 个圆圈的下方。这说明了问题:
library(tidyverse)
library(ggforce)
circles <- data.frame(
x0 = seq(1, 30),
y0 = seq(1, 30),
r = 2
)
ggplot() +
geom_circle(aes(x0 = x0, y0 = y0, r = r), fill = "grey", data = circles) +
coord_fixed()
因此,当我想绘制同心圆时,前 10 个圆隐藏了所有其他圆。 我可以通过先绘制 11-N 个圆圈然后绘制前十个圆圈来编写解决方法,但它并不优雅
我只能提供一个稍微有点老套的解决方法,对于大型数据集可能效果不佳。遍历每一行创建一个圆圈,然后将它们全部加在一起形成一个要绘制的对象。
library(tidyverse)
library(ggforce)
circles <- data.frame(
x0 = seq(1, 30),
y0 = seq(1, 30),
r = 2
)
mygeom_circle <- function(onerow) {
geom_circle(aes(x0 = x0, y0 = y0, r = r), fill = "grey", data = onerow)
}
gs <- sapply(1:nrow(circles), function(r) mygeom_circle(circles[r,])) # loop through one by one making single circles
gg <-
ggplot() +
gs + # add the single circles in the order they were made
coord_fixed()
gg
这是 ggforce
中的一个错误:它将圆圈中的点与排序顺序与原始圆圈不同的字符串分组。
要获取修复错误的版本,请使用
remotes::install_github("dmurdoch/ggforce@sortorder")
这将要求您安装包构建工具。如果您没有这些,您可以查看网站 https://github.com/thomasp85/ggforce/issues/224 以查看何时将修复程序合并到软件包的 CRAN 版本中。