Function for visualisation of raw data -Ovarian cancer
Show older comments
I want to a 'plot' function to effectively visualise the ovarian cancer data inbuilt in MATLAB.
load ("OvanrianCancer.mat")
The variable X (a 4000 by 216 matrix containing 4000 gene expression from 216 patients with and without ovarian cancer) is what I want to visualisation in its raw form to get an insight of its patterns. I intend to use a modal decomposition algorithm to analyse and re-construct it.
I have tried different 'plot' function but the results are awlful. I guess it's me not using the right 'syntax' or commands.
5 Comments
Walter Roberson
on 29 Apr 2023
What do the entries look like? For example, what are the first 10 entries of the first row?
Image Analyst
on 30 Apr 2023
Please attach 'ovariancancer.mat' with the paperclip icon.
Walter Roberson
on 30 Apr 2023
surf(obs)
??
Cutie
on 30 Apr 2023
Answers (1)
Try this:
load('OvarianCancer.mat')
plot(X, '-');
grid on;
Do you want to make a model of it? Do you have any ground truth for the data?
2 Comments
Cutie
on 30 Apr 2023
Walter Roberson
on 30 Apr 2023
You have over 800000 data points of floating point values that you are asking to draw in a single graph that probably is only about 1000 pixels + borders wide. It is not obvious to me that you can have any possible meaningful visualization — not unless you are doing some kind of summary like histogram.
Categories
Find more on Genomics and Next Generation Sequencing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!