Heat graph problem
1
0
Entering edit mode
7.9 years ago
Azhar ▴ 50

I am using the micraorray data analysis, trying to make heat graph for lnRNA which has some nmeric numbers as part of refseq ID like Ak132564 so heat graph use this coulmn in graph as it using number also i want not to use first column of serial number in graph

rna-seq • 1.2k views
ADD COMMENT
0
Entering edit mode
7.9 years ago
Benn 8.3k

I assume you use R for your heatmap?

If yes, then select the matrix without the first column, like this:

new <- your_matrix[, -1]

Then add your IDs as row names:

rownames(new) <- your_matrix[, 1]

Then continue with your heatmap.

ADD COMMENT
0
Entering edit mode

How can i make comples heat graph like one for lnrna list against the respective expression valuse for four diffrent regions up and down for respective lrna IDS in respctive regions please tell me ?

ADD REPLY
0
Entering edit mode

can i convert selective coulmns into rows against respective columns into comples heat maps

ADD REPLY

Login before adding your answer.

Traffic: 2393 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