Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8064449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T11:22:03+00:00 2026-06-05T11:22:03+00:00

I am trying to create a simple heatmap in R, using a diverging colour

  • 0

I am trying to create a simple heatmap in R, using a diverging colour palette. I want to use a gradient so that all numbers below a threshold N are designated a color (say purple), and all numbers above the threshold are designated another color (say orange). The further away the number is from the threshold, the darker the color should be.

Here is a sample dataset:

Division,COL1,COL2,COL3,COL4,COL5,COL6,COL7
Division 1,31.9221884012222,75.8181694429368,97.0480443444103,96.295954938978,70.5677134916186,63.0451830103993,93.0396212730557
Division 2,85.7012346852571,29.0621076244861,16.9130333233625,94.6443660184741,19.9103083927184,61.9562198873609,72.3791105207056
Division 3,47.1665125340223,99.4153356179595,8.51091076619923,79.1276383213699,41.915355855599,7.45079894550145,24.6946100145578
Division 4,66.0743870772421,24.6163331903517,78.694460215047,42.04714265652,50.2694897353649,73.0409651994705,87.3745442833751
Division 5,29.6664374880493,35.4036891367286,19.2967326845974,5.48460693098605,32.4517334811389,15.5926876701415,76.0523204226047
Division 6,95.4969164915383,8.63230894319713,61.7535551078618,24.5590241160244,25.5453423131257,56.397921172902,44.4693325087428
Division 7,87.5015622004867,28.7770316936076,56.5095080062747,34.6680747810751,28.1923673115671,65.0204187724739,13.795713102445
Division 8,70.1077231671661,72.4712177179754,38.4903231170028,36.1821102909744,97.0875509083271,17.184783378616,78.2292529474944
Division 9,47.3570406902581,90.2257485780865,65.6037972308695,77.0234781783074,25.6294377148151,84.900529962033,82.5080851092935
Division 10,58.0811711959541,0.493217632174492,58.5604055318981,53.5780876874924,9.12552657537162,20.313960686326,78.1371118500829
Division 11,34.6708688884974,76.711881859228,22.6064443588257,22.1724311355501,5.48891355283558,79.1159523651004,56.8405059166253
Division 12,33.6812808644027,44.1363711375743,70.6362190190703,3.78900407813489,16.6075889021158,9.12654218263924,39.9711143691093

Here is a simple snippet to produce a heatmap from the above data

data <- read.csv("dataset.csv", sep=",")
row.names(data) <- data$Division
data <- data[,2:7]
data_matrix <- data.matrix(data) 
heatmap(data_matrix, Rowv=NA, Colv=NA, col = heat.colors(256), scale="column", margins=c(5,10))

How can I modify the above code to produce:

  • a color gradient (orange) for all numbers ABOVE 50 (darker the further the number is from 50)
  • a color gradient (purple) for all numbers BELOW 50 (darker the further the number is from 50)
  • Nice to have (but optional) write the number value in the grid cell
  • Nice to have (but optional), use a different color for grid cell that is EXACTLY the threshold number (50 in this case)

[[Edit]]

I have just seen this question on SO, which seems to be very similar. The answer uses ggplot (which I have no experience of), and I have so far, been unable to adapt the ggplot solution to my slightly more complicated data.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T11:22:05+00:00Added an answer on June 5, 2026 at 11:22 am

    This should get you most of the way. (Note that you’ll need to set scale="none" if you want the plotted colors to correspond to the actual (rather than the rescaled) values of the cells).

    ncol <- 100
    
    ## Make a vector with n colors
    cols <- RColorBrewer:::brewer.pal(11,"PuOr")  # OR c("purple","white","orange")  
    rampcols <- colorRampPalette(colors = cols, space="Lab")(ncol)
    rampcols[(n/2) + 1] <- rgb(t(col2rgb("green")), maxColorValue=256) 
    
    ## Make a vector with n+1 breaks
    rampbreaks <- seq(0, 100, length.out = ncol+1)
    
    ## Try it out
    heatmap(data_matrix, Rowv = NA, Colv = NA, scale="none",
            col = rampcols, breaks = rampbreaks)
    

    enter image description here

    EDIT

    For finer control over the placement of the threshold, I’d suggest creating two separate palettes — one for values less than the threshold and one for values above the threshold — and then “suturing” them together. Try something like this, playing around with different values for Min, Max, Thresh, etc.:

    nHalf <- 50
    
    Min <- 0
    Max <- 100
    Thresh <- 50
    
    ## Make vector of colors for values below threshold
    rc1 <- colorRampPalette(colors = c("purple", "white"), space="Lab")(nHalf)    
    ## Make vector of colors for values above threshold
    rc2 <- colorRampPalette(colors = c("white", "orange"), space="Lab")(nHalf)
    rampcols <- c(rc1, rc2)
    ## In your example, this line sets the color for values between 49 and 51. 
    rampcols[c(nHalf, nHalf+1)] <- rgb(t(col2rgb("green")), maxColorValue=256) 
    
    rb1 <- seq(Min, Thresh, length.out=nHalf+1)
    rb2 <- seq(Thresh, Max, length.out=nHalf+1)[-1]
    rampbreaks <- c(rb1, rb2)
    
    heatmap(data_matrix, Rowv = NA, Colv = NA, scale="none",
            col = rampcols, breaks = rampbreaks)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a simple offline application for personal-use that uses a
Trying to create a simple regular expression that can extract numbers(between 7 - 14)
trying to create a simple slider for an input. Using a survey gem that
Im trying to create a simple pan and zoom app using silverlight 4, but
I am trying to create a simple Automator droplet that will take the style.less
Just trying to create a simple method that counts up 1 on the tally
Im trying to create a simple loop that creates 50 buttons, adds them to
I am trying to create a simple MongooseJS example program that gets a list
I'm trying to create a simple file upload form for my website. I'm using
I'm trying to create simple DER decoder - console application that just outputs content

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.