Row label in heatmap
1
1
Entering edit mode
7.0 years ago
1769mkc ★ 1.2k

I have data frame like this about 250 gene i taking a small subset of it

gene     `WT`           `Treated`
ACTL6A  4.5167211886    4.4304190975
ACTL6B  -4.3730103378 -9.800779238
ACTR5   1.3871253811    1.2086608355

I am plotting heatmap since I m using pheatmap since plotting requires a matrix that is I have to use the only the numeric matrix I m doing something like this rownames(VD3) <- data[,1]

mat <- as.matrix(data[,-1])

I can plot the heatmap but Im missing my gene name labels , How can i include it in my final plot ,any suggestion ?And Im using the pheatmap library

R • 4.3k views
ADD COMMENT
0
Entering edit mode

Can you show the code and output you are getting?

ADD REPLY
0
Entering edit mode
pheatmap(mat,show_rownames=T,col=mycol,breaks=bk,cluster_cols=T,cluster_rows=T,cex=0.9,clustering_distance_rows = "euclidean", clustering_distance_cols = "euclidean", clustering_method = "complete"

+ )

I have no issue in getting the heatmap but it seems that after plotting the gene names are not annotated

ADD REPLY
3
Entering edit mode
7.0 years ago
theobroma22 ★ 1.2k

Your code is a bit confusing. You can assign the rownames to the matrix.

Mat = as.matrix( data[,-1])
rownames(Mat) = as.character( data[,1])
head(Mat)
class(Mat)

Did this help you?

ADD COMMENT
0
Entering edit mode

i will try your suggestion i did figure out

ADD REPLY

Login before adding your answer.

Traffic: 2620 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6