我創建了箱形圖並將x標籤設置爲垂直於x軸,然後迫使我調整邊距以便實際的x軸標題與x軸標籤不重疊。然而,在這樣做的時候,y軸標題已經移動得相當遠,這意味着它與y軸之間的差距很大。有沒有辦法可以解決這個問題,或許可以單獨更改它們? boxplot(spend~region, data=spendbyregion, main="Boxplot showing distribution
of expen
我想使用兩個數據集製作boxplot。每組都是一個浮動列表。 A和B是兩個數據的例子設置 A = []
B = []
for i in xrange(10):
l = [random.random() for i in xrange(100)]
m = [random.random() for i in xrange(100)]
A.append(l)