Closed teunbrand closed 10 months ago
Hi Thomas,
As you know, a new version of ggplot2 is coming up. {ggraph} was in the list of packages with revdep failures. While investigating, I've isolated the cause to the following lines:
https://github.com/thomasp85/ggraph/blob/febab71076d7cf277cdb79b823f262b626651703/R/geom_edge_density.R#L147-L152
Where data is not (anymore) a vector but a <data.frame>. Should be fixable by using:
data
<data.frame>
fill = alpha(data$edge_fill %||% data$fill %||% "darkgrey")
Cheers
Hi Thomas,
As you know, a new version of ggplot2 is coming up. {ggraph} was in the list of packages with revdep failures. While investigating, I've isolated the cause to the following lines:
https://github.com/thomasp85/ggraph/blob/febab71076d7cf277cdb79b823f262b626651703/R/geom_edge_density.R#L147-L152
Where
data
is not (anymore) a vector but a<data.frame>
. Should be fixable by using:Cheers