How can I change 'y axis' into 'Probability', not the 'number' when I use 'hist(variable)' ?

6 visualizzazioni (ultimi 30 giorni)
Figure 1 is what I get from hist(variable);
Figure 2 is what I want to get;
Figure 3 is what I want to to get as well.
  5 Commenti
wenhao yang
wenhao yang il 2 Mar 2021
So can you offer me some example on how to write the command to get something like Figure 3 ?
Walter Roberson
Walter Roberson il 2 Mar 2021
h = histfit(___) returns a vector of handles h, where h(1) is the handle to the histogram and h(2) is the handle to the density curve.
So you could set the 'Normalization' option of h(1) to change how the axes got labeled. It is possible that you will need to rescale the curve on h(2) as well.

Accedi per commentare.

Risposte (1)

KALYAN ACHARJYA
KALYAN ACHARJYA il 2 Mar 2021
Modificato: KALYAN ACHARJYA il 2 Mar 2021
Is there any sense? Let's suppose I have the following array
> data
data =
4 3 5 3 5 5 3 4 3 5 2 5 2 1 4 5 5 2 5 3
Now the bins and counts as follows
bins: 1 2 3 4 5
counts: 1 3 5 3 8
If you plot the hist of the data, no issue
Once you wish to reverse bar plot, then issue arrise with random data, which is not unique (It suppose to be unique for variable data). However you can get the line plot in this case
[counts,bins]=hist(data);
plot(counts,bins);
Counts data in the variable axes have two issue.
  • Non unique data
  • No linear order (Incresing or Decreasing)
Although you can do other ways to plot the histogram appearance, like barh etc.
Hope it Helps! :)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by