필터 지우기
필터 지우기

How to plot a dotplot with horizontal error bars and additional function?

조회 수: 32 (최근 30일)
Ego sum
Ego sum 2023년 1월 29일
답변: Animesh 2023년 3월 10일
Dear community, I'm in the process of plotting a dotplot with horizontal error bars and an additional function, but I'm pretty new to MatLab and I'm pretty lost. It would be very nice if someone could help me with the necessary commands. Warm greetings

답변 (1개)

Animesh
Animesh 2023년 3월 10일
Hi Ego,
I understand that you want to make a dotplot with horizontal error bars.
You can try the following implementation:
x= 1:10; %x-axis data vector
y = sin(x); %corresponding y-axis data vector
e = std(y)*ones(size(x)); %error margin for every datapoint in a vector
scatter(x,y); % This function plots a every data point as a dot
hold on; %simply hold the already plotted graph
errorbar(x, y, e,'horizontal','LineStyle','none'); % This function plots horizontal error bars into the graph.
xlabel("x");
ylabel("y");
Please refer to scatter for more information on scatter plots.
Please refer to errorbar for more information on errorbar and it’s variations

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by