Vertical bars in scatter plot

4 次查看(过去 30 天)
Hi everyone,
I have a scatterplot with points on 12 horizontal lines. Sometimes, the points synchronize and in this case, I want to put a semi-transparant black bar in the background, spanning the period of overlap.
The data for my scatterplot is in a matrix with [y,x]. The data for the synchronization is in a matrix with [x,duration of the synchronized period].
I was wondering if, and how, it would be possible to create a grey bar in the background of the scatterplot. I've added an example of the scatterplot without bar below, and have in one of the synchronized events made a grey bar as I mean to have it in powerpoint.
This is the code for my scatter plot:
figure();
scatter(peaktrains(:,2)./1000000,peaktrains(:,1),"|",'MarkerEdgeColor','#097F97')

采纳的回答

Cameron
Cameron 2023-1-2
x = randi([200 800],800,1); %random x data for scatter
y = randi([1 12],800,1); %random y data for scatter
scatter(x,y,'b')
hold on
barx = [475,475,490,490]; %bar x data
bary = [0,12,12,0]; %bar y data
fill(barx,bary,[0.95,0.95,0.95],'FaceAlpha',0.3)
hold off

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by