Git Product home page Git Product logo

Comments (2)

thackl avatar thackl commented on June 28, 2024

Hi, not sure I fully understand - might be useful to post some of your code. In general, it is definitely possible to change the fill/color of links, for example:

gggenomes(emale_genes) %>% add_clusters(emale_cogs) +
  geom_link(aes(fill=cluster_id))

image

Assuming you know that and tried something with add_clusters(), one issue you might have come across is that the following doesn't work, i.e. metadata associated with clusters is not added to links. Then you would be quite right, that should work. I'll try to add that soon.

emale_cogs
gggenomes(emale_genes) %>% add_clusters(emale_cogs) +
  geom_link(aes(fill=cluster_size))

### FAILS

A quick workaround could be to replace cluster_id in your cluster data.frame with whatever labels you want to color your links by:

# just randomly assign for coloring example
emale_cogs2 <- emale_cogs %>%
  mutate(cluster_id = sample(c("many", "single"), length(cluster_id), replace = T))

gggenomes(emale_genes) %>% add_clusters(emale_cogs2) +
  geom_link(aes(fill=cluster_id))

image

from gggenomes.

Marlon751 avatar Marlon751 commented on June 28, 2024

Thank you very much!

from gggenomes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.