change in histogram distributions
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
0 개 추천
Hi, is it possible to flip a histogram around the peak value? I do not want to flip the axis. Just for performing some checks, I want to invert my distribution from negative skewness to positive skewness, keeping the mean value at its original value. any help is appreciated.
채택된 답변
Théophane Dimier
2020년 12월 9일
편집: Théophane Dimier
2020년 12월 9일
Hi!
It should be doing the following (considering that a is your input)
[counts,center]=hist(a);
bar(center,counts);
hold on
center_mirror=flip(center);
bar(center_mirror,counts);
This should plot the histogram and the mirrored histogram.
If you want to force it to rotate around the peak (conservation of the mode of the distribution):
[counts,center]=hist(a);
bar(center,counts);
hold on
[~,idx]=max(counts);
center_mirror=2*center(idx)-center;
bar(center_mirror,counts);
I hope it answers your question!
댓글 수: 9
Sumera Yamin
2020년 12월 11일
Hi, many thanks for your answer. Your second code is what i wanted to do. However i have a question, you are platting bars (with spaces in between the bars). How can i avoid the spaces between the bars and plot it as a normal histogram bins.
Théophane Dimier
2020년 12월 11일
편집: Théophane Dimier
2020년 12월 11일
you can change the width of the bar using the name-pair argument "LineWidth":
bar(center_mirror,counts,"BarWidth",1);
Sumera Yamin
2020년 12월 11일
i did not mean the width of bar, what i meant was the spacing between the bars. I want histogram bins to be next to each other. With bar, they have a spacig in between. i attached the figure for ref.
Théophane Dimier
2020년 12월 11일
편집: Théophane Dimier
2020년 12월 11일
It was "BarWidth" and not "LineWidth"... My bad. I have edited the original comment.
Sumera Yamin
2020년 12월 11일
right, i also see it now. many thanks for your help.
Théophane Dimier
2020년 12월 11일
You are welcome! Can you just close the question by accepting the answer, please?
Sumera Yamin
2020년 12월 11일
편집: Sumera Yamin
2020년 12월 11일
Yes of course. could you please explain what is "idx" and what is code doing? i want to integrate it in my original code and i cannot understand it, what if i want to use histogram instead of bar
Image Analyst
2020년 12월 11일
The cryptic idx should have been called something more explicit and descriptive, like "indexOfMax". Basically it's the first index (bin number) where the max value (mode) of the histogram appears. Does that explain it better.
Sumera Yamin
2020년 12월 11일
편집: Sumera Yamin
2020년 12월 11일
ok, thanks, i understood it now.
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Histograms에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
