Plotting a scatter graph with a categorical X axis

27 次查看(过去 30 天)
I have a scatter graph as shown above but I want to alter the x axis so that I can have a category for every jump in 10. So basically I would like to replace each interval of 10 with a word or 2 to represent a category

回答(1 个)

Scott MacKenzie
Scott MacKenzie 2023-5-3
Just follow your chart function with code to add tick labels at 5, 15, 25, etc. Something like this should work:
xticks(5:10:55);
xticklabels({'first', 'second', 'third', 'fourth', 'fifth', 'sixth'});

类别

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

标签

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by