Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
B R
B R le 10 Nov 2022
Commenté : Star Strider le 10 Nov 2022
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 commentaire
Star Strider
Star Strider le 10 Nov 2022
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
.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by