필터 지우기
필터 지우기

I need to add error bars to the "scatter" portion of the scatterhistogram plot.

조회 수: 6 (최근 30일)
B R
B R 2022년 11월 10일
댓글: Star Strider 2022년 11월 10일
I need to add error bars to the "scatter" portion of the scatterhistogram plot, but scatterhistogram does not support "hold on". Is there a way I can overcome this?
  댓글 수: 1
Star Strider
Star Strider 2022년 11월 10일
I created a scatterhistogram plot using data from the documentation and then looked at its properties. It doesn’t have a separately-addressable scatter plot that I can see by looking through them.
However if you use the older scatterhist function, it does have a distinct scatter plot you could probably plot the error bars on. I haven’t tried that, so I can’t be certain.
load fisheriris
x = meas(:,1);
y = meas(:,2);
hs = scatterhist(x,y)
hs =
1×3 Axes array: Axes Axes Axes
scp = hs(1)
ans =
Axes (scatter) with properties: XLim: [3.7560 8.2440] YLim: [1.6353 4.6647] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.3500 0.3500 0.5500 0.5500] Units: 'normalized' Show all properties
.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by