Clear Filters
Clear Filters

Histogram in App Designer

3 views (last 30 days)
Diogo Costa
Diogo Costa on 3 Jul 2020
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 Comments
Diogo Costa
Diogo Costa on 3 Jul 2020
So I have this, but only turns the bars in red, and that's is not what i want, i want each bar with each color
t = readtable("Pacientes.xlsx","Sheet",1);
app.UITable.Data = t;
x = table2array(t(:,"Smoker"));
C = categorical(x,[1 0],{'Smoker','Non Smoker'})
h = histogram(app.UIAxes2,C,'BarWidth',0.5,'FaceColor',"r")
legend(h(:), {'Smoker' 'Non Smoker'},'Location','northwest')
Rik
Rik on 3 Jul 2020
I don't think that is possible with histogram, so you will have to create two bar objects.

Sign in to comment.

Answers (1)

Harry Smith
Harry Smith on 18 Jun 2022
This may help:
histogram(app.histogramPlot,data)
  1 Comment
Gligan Miron Marius
Gligan Miron Marius on 18 May 2023
Yes, in my case it works correctly.
...
I_hist=histogram(app.Hist, I_rgb);
...

Sign in to comment.

Categories

Find more on Data Distribution Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!