Borrar filtros
Borrar filtros

Vertical bars in scatter plot

4 visualizaciones (últimos 30 días)
Anouk Heuvelmans
Anouk Heuvelmans el 2 de En. de 2023
Comentada: Anouk Heuvelmans el 3 de En. de 2023
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')

Respuesta aceptada

Cameron
Cameron el 2 de En. de 2023
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

Más respuestas (0)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by