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

2 次查看(过去 30 天)
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