Function for visualisation of raw data -Ovarian cancer

I want to a 'plot' function to effectively visualise the ovarian cancer data inbuilt in MATLAB.
load ("OvanrianCancer.mat")
Error using load
Unable to find file or directory '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 comentarios

What do the entries look like? For example, what are the first 10 entries of the first row?
Cutie
Cutie el 30 de Abr. de 2023
Editada: Cutie el 30 de Abr. de 2023
Each column contains 4000 gene expression samples of a patient.
Please attach 'ovariancancer.mat' with the paperclip icon.
Cutie
Cutie el 30 de Abr. de 2023
@Walter Roberson surf(obs) didn't give anything meaniful
@Image Analyst I have attached the data

Iniciar sesión para comentar.

Respuestas (2)

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 comentarios

Cutie
Cutie el 30 de Abr. de 2023
i did this plot function before but the confusion is that the visuals are too small to make insights from. I use semilogy.
I am analysing the data using a modal decomposition algorithm. My model is to be able create a reconstructed replica of the original data (with its patterns/structures).
Maybe, some 'manipulation' ideas to perfect the plot functions can help. e.g setting the limits.
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.

Iniciar sesión para comentar.

Jeremy Huard
Jeremy Huard el 9 de Jun. de 2026
This is a preprocessed Mass Spectrometry dataset. plot(X) will indeed show the spectra but you'll need data processing including dimensionality reduction to gain meaningful insights.
For example, check this example that uses this exact dataset: Select Features for Classifying High-Dimensional Data

Categorías

Más información sobre Biotech and Pharmaceutical en Centro de ayuda y File Exchange.

Productos

Versión

R2021b

Preguntada:

el 29 de Abr. de 2023

Respondida:

el 9 de Jun. de 2026

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by