Classical heat map plot with row.names=1 and header=T and then view the matrix and plot the heatmap and see if you can see them or not. Do you have a row with all 0 then filter row with all 0 since they will creat NA error
• 0 views
•
link
Could you post a subset of your data_matrix :
data_matrix[1:10,]. And also could you do is(data_matrix)This looks like your csv file, not the output of R
data_matrix[1:10,]From the docs:
You may find this blog post enlightening.
Til this time it worked, but if I delete it it is still not doing the cluster analysis and the heatmap..
I don't understand. What worked and what did you delete ? Most likely, the integers in your data frame are treated as factor levels and converted to character type. Try the data.matrix() function which tries to coerce a data frame to a numeric matrix.
Your code works as it is with me, I got the mentioned error only when I remove the function as.matrix.
I can only conclude that your csv file is the problem. Did the code work previously with this particular file or other files.
Yes, I realized as well. CSV made by old MS Excell is working...with new versions not. THX your help.