필터 지우기
필터 지우기

ovlay cdf plot on histogram

조회 수: 3 (최근 30일)
John
John 2012년 10월 5일
댓글: Giuseppe Degan Di Dieco 2021년 4월 17일
Hi there,
I'm trying to overlay a cdf plot over a histogram like in this picture
I'm using this code but the cdf plot is not showing up over the histogram.
hist(x)
hold on
cdfplot(x)
I would appreciate any help.
Thanks

채택된 답변

Tom Lane
Tom Lane 2012년 10월 5일
편집: Tom Lane 2012년 10월 6일
It's there but it's on the histogram scale and it is obscured by the bars. Try this instead to put the cdf on a separate y axis:
x = randn(30,1);
[y2,x2] = ecdf(x);
[y1,x1] = hist(x);
plotyy(x1,y1,x2,y2,@(x,y)bar(x,y,1,'c'),'stairs')
  댓글 수: 1
Giuseppe Degan Di Dieco
Giuseppe Degan Di Dieco 2021년 4월 17일
Dear Tom,
thank you for your explanation.
It helped me to produce the graph attached.
Best.
Best.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by