Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这里有一个问题:
我有一个箱线图,但没有简单的方法来命名每个小盒子。这是一个例子:
boxplot(rand(10,3))
将绘制 3 个这样的框,但每个框的标题是 1、2、3,我需要一些更有意义的东西。
我有一个想法,如何实现它,
load carsmall boxplot(MPG,Origin)
但这需要重组我的数据并创建带有标题的附加列。
做
boxplot(rand(10,3), 'labels', {'a','b','c'})
做你需要的?