當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R ggplot2 coord_flip x 和 y 翻轉的笛卡爾坐標


翻轉笛卡爾坐標,使水平變為垂直,垂直變為水平。這主要用於將顯示以 x 為條件的 y 的幾何圖形和統計數據轉換為以 y 為條件的 x。

用法

coord_flip(xlim = NULL, ylim = NULL, expand = TRUE, clip = "on")

參數

xlim, ylim

x 軸和 y 軸的限製。

expand

如果 TRUE (默認值)會在限製中添加一個小的擴展因子,以確保數據和軸不重疊。如果 FALSE ,則完全從數據或 xlim /ylim 中獲取限製。

clip

是否應該將繪圖裁剪到繪圖麵板的範圍內?設置"on"(默認)表示是,設置"off"表示否。在大多數情況下,不應更改 "on" 的默認值,因為設置 clip = "off" 可能會導致意外結果。它允許在繪圖上的任何位置繪製數據點,包括繪圖邊。如果通過 xlimylim 設置限製,並且某些數據點超出這些限製,則這些數據點可能會顯示在軸、圖例、繪圖標題或繪圖邊距等位置。

例子

# Very useful for creating boxplots, and other interval
# geoms in the horizontal instead of vertical position.

ggplot(diamonds, aes(cut, price)) +
  geom_boxplot() +
  coord_flip()


h <- ggplot(diamonds, aes(carat)) +
  geom_histogram()
h
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

h + coord_flip()
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

h + coord_flip() + scale_x_reverse()
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.


# You can also use it to flip line and area plots:
df <- data.frame(x = 1:5, y = (1:5) ^ 2)
ggplot(df, aes(x, y)) +
  geom_area()

last_plot() + coord_flip()

源代碼:R/coord-flip.R

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Cartesian coordinates with x and y flipped。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。