Create a Heatmap in R Programming - heatmap() Function Last Updated : 17 Jun, 2025 Comments Improve Suggest changes Like Article Like Report A heatmap() function in R Programming Language is used to plot a heatmap. A heatmap is defined as a graphical representation of data using colors to visualize the value of the matrix. It is used to represent more common values or higher activities brighter colors reddish colors are used and to less common or activity values darker colors are preferred. Heatmap is also defined by the name of the shading matrix. Syntax: heatmap(data)Parameters: data: It represent matrix data, such as values of rows and columns1. Create a Heatmap in R Programming LanguageIn this example, number of rows and columns are specified to draw heatmap with a given function. r set.seed(110) data <- matrix(rnorm(100, 0, 5), nrow = 10, ncol = 10) colnames(data) <- paste0("col", 1:10) rownames(data) <- paste0("row", 1:10) heatmap(data) Output: Heatmap in R Programming2. Create heatmap in R using colorRampPaletteIn this example, heat map is drawn by using colorRampPalette to merge two different colors. r set.seed(110) data <- matrix(rnorm(100, 0, 5), nrow = 10, ncol = 10) colnames(data) <- paste0("col", 1:10) rownames(data) <- paste0("row", 1:10) my_colors <- colorRampPalette(c("cyan", "darkgreen")) heatmap(data, col = my_colors(100)) Output: Heatmap in R Programming3. Adding Title and Axis Labels to the HeatmapIn this example we give the title of the heatmap using the main argument and the xlab ,ylab arguments are used to label the x and y axes, respectively. R set.seed(110) data <- matrix(rnorm(100, 0, 5), nrow = 10, ncol = 10) colnames(data) <- paste0("col", 1:10) rownames(data) <- paste0("row", 1:10) my_colors <- colorRampPalette(c("cyan", "darkgreen")) heatmap(data, col = my_colors(100), main = "Customized Heatmap", xlab = "Columns", ylab = "Rows") Output:Heatmap in R Programming4. Margins Around the Heatmap PlotIn this example we plot a heatmap with specified margins around the plot using the margins argument. Here the first value (5) controls the bottom margin and the second value (10) controls the right margin. R set.seed(110) data <- matrix(rnorm(100, 0, 5), nrow = 10, ncol = 10) colnames(data) <- paste0("col", 1:10) rownames(data) <- paste0("row", 1:10) my_colors <- colorRampPalette(c("cyan", "darkgreen")) heatmap(data, col = my_colors(100), main = "Customized Heatmap", xlab = "Columns", ylab = "Rows", margins = c(5, 10)) Output:Heatmap in R Programming5. Heatmap in R without DendrogramIn this example we plot a heatmap without dendrograms by setting Colv = NA and Rowv = NA, which removes the hierarchical clustering and dendrogram from both rows and columns. R set.seed(110) data <- matrix(rnorm(100, 0, 5), nrow = 10, ncol = 10) colnames(data) <- paste0("col", 1:10) rownames(data) <- paste0("row", 1:10) my_colors <- colorRampPalette(c("cyan", "darkgreen")) heatmap(data, col = my_colors(100), main = "Customized Heatmap", xlab = "Columns", ylab = "Rows", margins = c(5, 10), Colv = NA, Rowv = NA) Output:Heatmap in R Programming Create Quiz Comment K kaurbal1698 Follow 0 Improve K kaurbal1698 Follow 0 Improve Article Tags : R Language R-plots R Graphics-Functions Explore IntroductionR Programming Language - Introduction 4 min read Interesting Facts about R Programming Language 4 min read R vs Python 5 min read Environments in R Programming 3 min read Introduction to R Studio 4 min read How to Install R and R Studio? 4 min read Creation and Execution of R File in R Studio 5 min read Clear the Console and the Environment in R Studio 2 min read Hello World in R Programming 2 min read Fundamentals of RBasic Syntax in R Programming 3 min read Comments in R 3 min read R-Operators 5 min read R-Keywords 2 min read R-Data Types 5 min read VariablesR Variables - Creating, Naming and Using Variables in R 5 min read Scope of Variable in R 5 min read Dynamic Scoping in R Programming 5 min read Lexical Scoping in R Programming 4 min read Input/OutputTaking Input from User in R Programming 7 min read Printing Output of an R Program 4 min read Print the Argument to the Screen in R Programming - print() Function 2 min read Control FlowControl Statements in R Programming 4 min read Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switch 3 min read Switch case in R 2 min read For loop in R 5 min read R - while loop 5 min read R - Repeat loop 2 min read goto statement in R Programming 2 min read Break and Next statements in R 3 min read FunctionsFunctions in R Programming 5 min read Function Arguments in R Programming 4 min read Types of Functions in R Programming 6 min read Recursive Functions in R Programming 4 min read Conversion Functions in R Programming 4 min read Data StructuresData Structures in R Programming 4 min read R Strings 6 min read R-Vectors 4 min read R-Lists 6 min read R - Array 7 min read R-Matrices 10 min read R-Factors 4 min read R-Data Frames 6 min read Object Oriented ProgrammingR-Object Oriented Programming 7 min read Classes in R Programming 3 min read R-Objects 3 min read Encapsulation in R Programming 3 min read Polymorphism in R Programming 6 min read R - Inheritance 7 min read Abstraction in R Programming 3 min read Looping over Objects in R Programming 5 min read S3 class in R Programming 8 min read Explicit Coercion in R Programming 3 min read Error HandlingHandling Errors in R Programming 3 min read Condition Handling in R Programming 5 min read Debugging in R Programming 3 min read File HandlingFile Handling in R Programming 3 min read Reading Files in R Programming 9 min read Writing to Files in R Programming 2 min read Working with Binary Files in R Programming 5 min read Like