Hi everyone,
I've a matrix of data taked by GSE5281.
I would like to take a classification, in my specific case with a ANN (i know that is not a good alghoritm for gene's data).
My problem is that the data is everything with a high correlation:
sum(correlation>0.7);sum(correlation<0.7)
[1] 25599
[1] 322
sum(correlation>0.8);sum(correlation<0.8)
[1] 25379
[1] 542
With this cor the ANN don't work. How algorithm I can use to perform a ANN? There is some code example about a ANN with GSE dataset?
Thank you :)
What is "everything"? Have you normalized or log-transformed the data? Scaled in any way? What measure of correlation are you using? It is worth thinking about these details and how they impact the correlation that you are seeing.