We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f482087 commit 4aabcf2Copy full SHA for 4aabcf2
R/network.R
@@ -74,14 +74,6 @@ network <- function(
74
height = 1,
75
colour = bg_line_col
76
) +
77
- ggforce::geom_circle(
78
- data = plot_data,
79
- mapping = ggplot2::aes(
80
- x0 = .data$x, y0 = .data$y,
81
- r = .data$r, fill = .data$fill
82
- ),
83
- colour = NA
84
- ) +
85
ggplot2::geom_segment(
86
data = line_data,
87
mapping = ggplot2::aes(
@@ -90,6 +82,14 @@ network <- function(
90
),
91
colour = line_col
92
+ ggforce::geom_circle(
+ data = plot_data,
+ mapping = ggplot2::aes(
88
+ x0 = .data$x, y0 = .data$y,
89
+ r = .data$r, fill = .data$fill
+ ),
+ colour = NA
+ ) +
93
ggplot2::scale_fill_identity() +
94
ggplot2::coord_fixed() +
95
theme_aRt(bg_col)
0 commit comments