ggraph icon indicating copy to clipboard operation
ggraph copied to clipboard

Grammar of Graph Graphics

Results 116 ggraph issues
Sort by recently updated
recently updated
newest added

First of all, thank you for the excellent work on this package! Enhancement suggestion here, which is to allow users access to the [shadowtext](https://github.com/GuangchuangYu/shadowtext) package, either as an option to...

How to set the color of node by module? Module is calculated using igraph cluster_fast_greedy(). How about custom colors for the top several module and a gray color for the...

I often use manual layouts. It seems like it would often be simpler to pass the layout arguments to `ggraph()` via an `aes()` rather than `...` arguments to `ggraph()`. I...

It seems I cannot remove the `alpha` level of colored edges in a ggraph legend. Because of overlapping edges, I set `alpha`, but I don't want it in the legend...

I would like to refer to a previous issue that was closed. When I use the following code: ``ggraph(g, layout = "with_kk")+ geom_edge_link(aes(alpha = weight)) + geom_node_point(aes(color = party_code))+ geom_node_text(aes(label...

It appears that start_cap and end_cap only use the first cap value and not all cap values. In the example below, the arrows appear to all point as though they...

I filed a query on SO, https://stackoverflow.com/questions/72395410/ggraph-make-filled-arrow-edges-appear-in-legend regarding how to make filled arrow heads appear as filled in the legend, but have had no useful answer. Can someone here help?...

I'm getting an error everytime I try to use `facet_graph()` with only one dimension. These plots work fine with `facet_grid()` instead of `facet_graph()` so I'm not sure what the issue...

Hi @thomasp85, When plotting a deep tree (height > 4000), we run into the issue of C stack overflow, triggered by the recursions in `recurse_layout`. Reproducible example: [tree_final_1.rds.zip](https://github.com/YuLab-SMU/treeio/files/8551338/tree_final_1.rds.zip) ``` gtree...

I want to plot friendships that persist over multiple waves, and keep the nodes in the same coordinates for each plot. I'm able to use ggraph and graphlayouts' dynamic layout...