Data extraction from stacked plot
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ajai Singh
le 14 Juil 2021
Commenté : Ajai Singh
le 14 Juil 2021
I want to extract data from the stacked plot generated , by extracting data i mean that whenever the user clicks on the staked plot , a set of values are displayed at the intersection of the plot and vertical line ( please refer to the figure to get more understanding of what i mean) , i want to extract these values and then write them to an excel sheet . Please help me to do that.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/684553/image.png)
( I want the values displayed in the boxes to be written in an excel file )
Thank you.
0 commentaires
Réponse acceptée
ANKUR KUMAR
le 14 Juil 2021
Modifié(e) : ANKUR KUMAR
le 14 Juil 2021
Let us load random data.
tbl = readtable('patients.xls');
stackedplot(tbl,{'Height','Weight','Systolic','Diastolic'})
There must be value of x over which you wish to extarct all the values. Let us take 50 in this case.
values=[tbl.Height tbl.Weight tbl.Systolic tbl.Diastolic];
values_x=1:size(values,1);
extracted_values=values(values_x==50,:)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations 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!