Histogram in App Designer
이전 댓글 표시
So I have this excel file and i want to make an histogram or scatter in app desginer for smoke and non smoker, can someone help me out ? I can't figure it out, because in the excel Smoker is just one column, and i want to make a histogram with 2 bars (different colours), one is for the smokers, and the other one is for non smokers.
댓글 수: 9
Rik
2020년 7월 3일
The first step is to get your data into Matlab. How did you do that? What is the next step?
Diogo Costa
2020년 7월 3일
편집: Diogo Costa
2020년 7월 3일
Diogo Costa
2020년 7월 3일
Rik
2020년 7월 3일
Feel free to move your solution to the answer section.
For next time you can also separately calculate the histcounts and then plot the frequencies as a bar chart.
Diogo Costa
2020년 7월 3일
Rik
2020년 7월 3일
And that is why I tend to use histcounts. Have you tried reading the documentation for the histogram function to see what properties you can modify?
Diogo Costa
2020년 7월 3일
Diogo Costa
2020년 7월 3일
Rik
2020년 7월 3일
I don't think that is possible with histogram, so you will have to create two bar objects.
답변 (1개)
Harry Smith
2022년 6월 18일
1 개 추천
This may help:
histogram(app.histogramPlot,data)
댓글 수: 1
Gligan Miron Marius
2023년 5월 18일
Yes, in my case it works correctly.
...
I_hist=histogram(app.Hist, I_rgb);
...
카테고리
도움말 센터 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!