Data extraction from stacked plot

조회 수: 2 (최근 30일)
Ajai Singh
Ajai Singh 2021년 7월 14일
댓글: Ajai Singh 2021년 7월 14일
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.
( I want the values displayed in the boxes to be written in an excel file )
Thank you.

채택된 답변

ANKUR KUMAR
ANKUR KUMAR 2021년 7월 14일
편집: ANKUR KUMAR 2021년 7월 14일
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,:)
extracted_values = 1×4
67 179 124 78
  댓글 수: 1
Ajai Singh
Ajai Singh 2021년 7월 14일
Thank you for the answrer. appreciate it, but can i get the value of x when the user clicks on the stacked plot ?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by