scatter plot with showing their means and error bars
29 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I would like to draw following graphs with Matlab. Any suggestions would be appreciated.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/343522/image.png)
0 commentaires
Réponses (1)
Sudheer Bhimireddy
le 9 Août 2020
doc errorbar
Look at the matlab example: "plot error bars with no line".
2 commentaires
Sudheer Bhimireddy
le 10 Août 2020
You can plot all your points in each category (from the image you posted, it seems that each x-tick is a category) and use 'hold on', then draw the plot with at mean values with errorbars.
plot(x1,z1,'ro','MarkerFaceColor','w'); %<- this shows all points
hold on;
errorbar(1,z1_mean,z1_std,'-ro','MarkerSize',10,...
'MarkerEdgeColor','r','MarkerFaceColor','r'); %<- this shows mean with standard deviation
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/343846/image.png)
Voir également
Catégories
En savoir plus sur Errorbars dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!