Create space between binEdges Historgram
Mostrar comentarios más antiguos
Hello,
I'am tryning to creat space between binedges in the histogram below
I wanted to choose the interval and the step of the x-axis knowing that I wanted to present the cumulative values for each value of X

I want to get a histogram like the one below to see esaslyh my data and x values

thanks for your help
Respuestas (1)
Try
data=randi([1,10],[100,100]);
hist_counts = histcounts(data);
%............^ change the value as per required result
bar(hist_counts, 0.5);
1 comentario
Mohamed
el 19 de Feb. de 2023
Categorías
Más información sobre Data Distribution Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
