Code Monkey home page Code Monkey logo

Comments (2)

jokergoo avatar jokergoo commented on May 22, 2024 1

Hi,

Maybe you can check the dendextend package:

https://cran.r-project.org/web/packages/dendextend/vignettes/introduction.html#changing-a-dendrograms-structure

There is a rotate() function which can adjust the order of branches in a dendrogram.

In your case, you should generate a dendrogram for columns first:

column_dend = as.dendrogram(hclust(t(mat)))
column_dend = rotate(column_dend, ...)  # define how you rotate the branches

In the vignette I mentioned above, the author use "pipe-style syntax", so:

dend15 %>% 
   set("labels_colors") %>% 
   rotate(5:1)

is identical to

rotate(set(dend15, "labels_colors"), 5:1)

and sent it to Heatmap():

Heatmap(mat, cluster_columns = column_dend, ...)

from complexheatmap.

NicolasHipp avatar NicolasHipp commented on May 22, 2024

Hi,

I tried this solution and it works perfectly ::)

Thks for the help ! :)

Nicolas

from complexheatmap.

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.