how to make dot-plot of table?
77 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
nines
am 7 Jul. 2022
Kommentiert: nines
am 7 Jul. 2022
Hello!
I have a table file where I want to plot just the numeric data in a dot plot
Here is the table1:
scan1 scan2 scan3
subject 1 2 1 1
subject 2 1 NaN 2
subject 3 2 2 NaN
I turn my table into a cell and then into a mat file in order to be able to make a dotplot.
numbers = table2cell(table1)
numbers = cell2mat(numbers)
scatter(numbers(:,1), numbers(:,2), numbers(:,3))
where my error is:
I want my final figure to look as follows:
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 7 Jul. 2022
If you are using a quite recent version of MATLAB, then
scatter3(table1, 'scan1', 'scan2', 'scan3')
Otherwise,
scatter3(table1.scan1, table1.scan2, table1.scan3)
3 Kommentare
Walter Roberson
am 7 Jul. 2022
R2019b does not support scatter3() of table variables, so you will need that second form that I posted.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Bar Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!