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.
我已经看到很多解决方案可以在一个图上并排创建箱线图,但在所有这些解决方案中,都要求集合中的所有向量都具有相同数量的数据点。您如何将箱线图放在同一个图上但具有不同数量的数据点?
如果你有一个 vector 中的数据X,你想在几个箱线图中绘制它,创建一个新的 vector G,它的大小X与第一个箱线图的 1 相同,第二个箱线图为 2 等。
X
G
例如,您想为 绘制一个箱线图,为 绘制另一个箱线1 2 3 4 5 6图7 8 9 10。
1 2 3 4 5 6
7 8 9 10
X=[1 2 3 4 5 6 7 8 9 10]; G=[1 1 1 1 1 1 2 2 2 2]; boxplot(X,G)