R data visualisation with RStudio: heatmaps

Поделиться
HTML-код
  • Опубликовано: 5 янв 2025

Комментарии • 27

  • @elizabethquintero7024
    @elizabethquintero7024 4 года назад +1

    Excellent video. Thank you very much. it was very useful :)

  • @ncedilemankahla9758
    @ncedilemankahla9758 2 года назад +2

    Excellent video, you know how to walk people through a tutorial and not assume knowledge.. excellent

    • @uqlibrary
      @uqlibrary  2 года назад

      Thank you very much, Ncedile :)

  • @josejoaomansure4696
    @josejoaomansure4696 4 года назад +2

    This is great. Best explained and detailed video for heatmap. Thanks a lot

  • @TheAbdirahman2012
    @TheAbdirahman2012 3 года назад +1

    Excellent tutorial, simple and easy walk on step-by-step. Thanks a lot.

  • @macielrodriguez6697
    @macielrodriguez6697 3 года назад +1

    Great tutorial!!!! I'll definitely look up those other websites you recommend! thank you so much!

  • @muhammedwalugembe7142
    @muhammedwalugembe7142 4 года назад +1

    Great video. Clear and precise explanation, thanks!

  • @kevindoyle8158
    @kevindoyle8158 3 года назад

    This was a really fantastic video on heatmaps. Thank you!

  • @mayinalubega9309
    @mayinalubega9309 3 года назад +1

    Thank you for the video. It is very helpful.

  • @hectormotsepe1581
    @hectormotsepe1581 4 года назад +3

    i = 1
    million = 1000000
    while (i < million) {
    print('Thank you UQ Library')
    i = i + 1
    }

  • @didierleprince6106
    @didierleprince6106 4 года назад +1

    Bravo Stéphane.

  • @aris_budiman
    @aris_budiman 2 года назад +1

    thankyou

  • @ishy1294
    @ishy1294 5 лет назад +1

    This is great. Thanks a million

  • @БехзодАдилов-э9л
    @БехзодАдилов-э9л 3 года назад +1

    Thanks a lot

  • @myfav6914
    @myfav6914 4 года назад +1

    thank you so much ! great work

  • @hassanhijazi4757
    @hassanhijazi4757 2 года назад

    there is no scaling option in geom_tile(), right? what is the best way to do it then?

  • @boudhibisamir5937
    @boudhibisamir5937 3 года назад

    Thank you for your videos
    Could you make videos about Nnet and gstat packages?
    Good luck

  • @JahidulIslam-eo4ng
    @JahidulIslam-eo4ng 5 лет назад +1

    Thank you

  • @manojyellurkar1709
    @manojyellurkar1709 3 года назад

    how can we give annotations to row and columns using pheatmap in r studio? since I am new to use r studio

    • @uqlibrary
      @uqlibrary  2 года назад

      You can use the argument annotation_row and annotation_col for that. There is an example in this article: towardsdatascience.com/pheatmap-draws-pretty-heatmaps-483dab9a3cc

  • @elizabethquintero7024
    @elizabethquintero7024 4 года назад

    Good night. There is a way to make a ComplexHeatmap with only one gradient color? Thank you

    • @uqlibrary
      @uqlibrary  4 года назад +1

      You could change change the colour scale for the "col" argument in the Heatmap() function. This dataset is not ideal, but just to give you an example, if you want a colour scale that goes from white to blue, you can do this:
      Heatmap(mtcars,
      col = circlize::colorRamp2(breaks = range(mtcars),
      colors = c("white", "blue")))
      You will have to make sure you provide good breaks that work for the data you have, which is why I used the range() function to get the actual min and max for the dataset.

  • @Myopinions24
    @Myopinions24 3 года назад

    What's the best size to save heatmap as a png?

    • @uqlibrary
      @uqlibrary  2 года назад

      The ideal size and resolution will depend on how much information there is on the visualisation (i.e. how precise it is a how much data was used), so I don't have a definite answer to that, sorry!

  • @Innoodrr
    @Innoodrr 2 года назад

    ggplot

  • @zaenalabidin3790
    @zaenalabidin3790 2 года назад +1

    Thank you