軸參考線是位置比例的視覺表示,例如使用 scale_(x|y)_continuous() 和 scale_(x|y)_discrete() 創建的位置比例。
用法
guide_axis(
title = waiver(),
check.overlap = FALSE,
angle = NULL,
n.dodge = 1,
order = 0,
position = waiver()
)
參數
- title
-
指示指南標題的字符串或表達式。如果是
NULL
,則不顯示標題。默認情況下 (waiver()
),比例對象的名稱或labs()
中指定的名稱用作標題。 - check.overlap
-
默默地刪除重疊的標簽,(遞歸地)優先考慮第一個、最後一個和中間的標簽。
- angle
-
與在
theme()
/element_text()
中設置角度相比,這還使用一些啟發式方法來自動選擇您可能想要的hjust
和vjust
。 - n.dodge
-
用於呈現標簽的行數(對於垂直軸)或列數(對於水平軸)。這對於顯示否則會重疊的標簽很有用。
- order
-
如果必須在同一位置繪製多個參考線,則用於確定參考線的順序(從左到右、從上到下)。
- position
-
應繪製該指南的位置:頂部、底部、左側或右側之一。
例子
# plot with overlapping text
p <- ggplot(mpg, aes(cty * 100, hwy * 100)) +
geom_point() +
facet_wrap(vars(class))
# axis guides can be customized in the scale_* functions or
# using guides()
p + scale_x_continuous(guide = guide_axis(n.dodge = 2))
p + guides(x = guide_axis(angle = 90))
# can also be used to add a duplicate guide
p + guides(x = guide_axis(n.dodge = 2), y.sec = guide_axis())
相關用法
- R ggplot2 guide_legend 圖例指南
- R ggplot2 guide_bins Guide_legend 的分箱版本
- R ggplot2 guide_coloursteps 離散顏色條指南
- R ggplot2 guide_colourbar 連續色條指南
- R ggplot2 guides 為每個尺度設置指南
- R ggplot2 geom_qq 分位數-分位數圖
- R ggplot2 geom_spoke 由位置、方向和距離參數化的線段
- R ggplot2 geom_quantile 分位數回歸
- R ggplot2 geom_text 文本
- R ggplot2 get_alt_text 從繪圖中提取替代文本
- R ggplot2 geom_ribbon 函數區和麵積圖
- R ggplot2 geom_boxplot 盒須圖(Tukey 風格)
- R ggplot2 geom_hex 二維箱計數的六邊形熱圖
- R ggplot2 geom_bar 條形圖
- R ggplot2 geom_bin_2d 二維 bin 計數熱圖
- R ggplot2 ggplot 創建一個新的ggplot
- R ggplot2 geom_jitter 抖動點
- R ggplot2 geom_point 積分
- R ggplot2 geom_linerange 垂直間隔:線、橫線和誤差線
- R ggplot2 ggsf 可視化 sf 對象
- R ggplot2 geom_blank 什麽也不畫
- R ggplot2 ggsave 使用合理的默認值保存 ggplot (或其他網格對象)
- R ggplot2 ggtheme 完整的主題
- R ggplot2 geom_path 連接觀察結果
- R ggplot2 geom_violin 小提琴情節
注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Axis guide。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。