vertical lines of 'mean' and 'std' in a 'ksdensity' plot?
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello everyone. I was wondering how can I add vertical lines of standard deviation, mean, median , among other statistical results to a plot made with the function ‘ksdensity’ ? thank you.
댓글 수: 0
채택된 답변
Cris LaPierre
2021년 5월 31일
Use xline.
% create a distribution with known mean, std
pd = makedist('Normal','mu',2.5,'sigma',3.1);
x = random(pd,100,1);
[f,xi] = ksdensity(x);
figure
plot(xi,f);
% Add vertical lines
xline(2.5)
xline(2.5+[-3.1,3.1])
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!