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 ?
Heat graph problem
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
• 1,589 views
•
link
1 answer
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.
• 1 views
•
link
• 1 views
•
link
can i convert selective coulmns into rows against respective columns into comples heat maps
• 1 views
•
link
Log in to answer this question.