Skip to content

Commit

Permalink
fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
nrennie committed Jan 4, 2025
1 parent f482087 commit 4aabcf2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions R/network.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,6 @@ network <- function(
height = 1,
colour = bg_line_col
) +
ggforce::geom_circle(
data = plot_data,
mapping = ggplot2::aes(
x0 = .data$x, y0 = .data$y,
r = .data$r, fill = .data$fill
),
colour = NA
) +
ggplot2::geom_segment(
data = line_data,
mapping = ggplot2::aes(
Expand All @@ -90,6 +82,14 @@ network <- function(
),
colour = line_col
) +
ggforce::geom_circle(
data = plot_data,
mapping = ggplot2::aes(
x0 = .data$x, y0 = .data$y,
r = .data$r, fill = .data$fill
),
colour = NA
) +
ggplot2::scale_fill_identity() +
ggplot2::coord_fixed() +
theme_aRt(bg_col)
Expand Down

0 comments on commit 4aabcf2

Please sign in to comment.