フィルターのクリア

Vertical bars in scatter plot

4 ビュー (過去 30 日間)
Anouk Heuvelmans
Anouk Heuvelmans 2023 年 1 月 2 日
コメント済み: Anouk Heuvelmans 2023 年 1 月 3 日
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
  1 件のコメント
Anouk Heuvelmans
Anouk Heuvelmans 2023 年 1 月 3 日
Thanks a lot Cameron!! That helped.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by