3
我正在繪製使用ggplot2的散點圖。當我隱藏天平時,情節會自動因爲大一點而變大。例如:如何在使用ggplot2隱藏比例時保持圖的大小?
ggplot(data = iris, geom = 'blank', aes(y = Petal.Width, x = Petal.Length)) + geom_point()
ggplot(data = iris, geom = 'blank', aes(y = Petal.Width, x = Petal.Length)) +
geom_point() +
theme(axis.title.x = element_blank(),
axis.title.y = element_blank(),
legend.position = "none")
第二個更大。我如何避免它?我只想隱藏刻度和標籤,但保留情節作爲第一個情節,因爲我想將兩者結合起來,一個刻度和一個刻度,但保持情節大小相同。謝謝。
笑非常感謝! – Autumn