how to plot scatterplot for one attribute?
1 次查看(过去 30 天)
显示 更早的评论
lets say I have a data for attribute xyz is 23 12 43 21 43 21 334 65 32 12 and i want a graph where x axis will hold the location of data and y axis will hold the value for example,if i want data in form of point(xvalue,yvalue), then(1,23),(2,12),(3,43),(4,21) should get plotted on the graph and it should be scatterplot.
Please tell me the syntax for same. Thank you in advance!
0 个评论
回答(1 个)
José-Luis
2017-7-7
data = rand(10,1);
figure
plot(data); %implicit
figure
plot(1:size(data,1), data); %explicit
Please read the documentation on plot();
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete Data Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!