Effacer les filtres
Effacer les filtres

how to generate a scatterplot matrix

2 vues (au cours des 30 derniers jours)
chengwei zhang
chengwei zhang le 29 Jan 2020
Hi,
I am looking for a way to create a scatterplot matrix for visualization from a csv file but it has too many columus. So i do not know how to start and finish. please help.
thanks in advance

Réponse acceptée

Star Strider
Star Strider le 29 Jan 2020
One option:
D = readtable('diabetes.csv');
VN = D.Properties.VariableNames;
Dmtx = table2array(D);
figure
semilogy((1:size(Dmtx,1)), Dmtx, '.')
grid
xlabel('Row #')
legend(VN)
That will plot all the variables as a function only of the row in ‘Dmtx’.
Choose what to plot (and what to use as independent or dependent variables) as necessary to depict the required trends. Choose those either as columns of ‘Dmtx’ or as variables in ‘D’.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by