How to label scatter plot with different name?(not number)

1 Ansicht (letzte 30 Tage)
Weixu Pan
Weixu Pan am 23 Feb. 2018
Beantwortet: Chandani Madnani am 26 Feb. 2018
I have
x=randi([50 100],1,20);
y=randi([0 60],1,20);
figure
scatter(x,y);
hold on
plot(x(1:20),y(1:20),'w.');
hold on;
for k=1:20
text(x(k),y(k),{k});
end
Picture I want generate was attached
Thanks!

Antworten (1)

Chandani Madnani
Chandani Madnani am 26 Feb. 2018
Please see the following link:
https://www.mathworks.com/matlabcentral/answers/315124-how-do-i-display-custom-text-for-the-data-cursor

Kategorien

Mehr zu Scatter Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!