stocnet / manynet

Many Ways to Make, Manipulate, and Map Myriad Networks
https://stocnet.github.io/manynet/
Other
9 stars 0 forks source link

`autographd()` arguments for node color and shape not working as expected for certain types of data/lists #39

Closed henriquesposito closed 3 months ago

henriquesposito commented 6 months ago

DV <- lapply(ison_starwars, function(x) to_egos(x)$DARTH VADER) DV <- DV[lengths(DV) != 0] DV <- lapply(DV, function(x) x %>% mutate(shape = ifelse(name == "DARTH VADER", "square", "circle"), color = ifelse(name == "DARTH VADER", "blue", "red"))) autographd(tlist = DV, node_size = 6, node_color = "color", node_shape = "shape")

The above does not shape or color nodes as expected.

henriquesposito commented 4 months ago

This has been fixed and the function was updated to be both more flexible and efficient in setting variables to aesthetics.