每個比例的指南可以使用 guide
參數設置 scale-by-scale ,或者使用 guides()
一起設置。
參數
- ...
-
name-guide 秤對列表。指南可以是字符串(即 "colorbar" 或 "legend"),也可以是對指定其他參數的指南函數(即
guide_colourbar()
或guide_legend()
)的調用。
也可以看看
其他指南:guide_bins()
、guide_colourbar()
、guide_coloursteps()
、guide_legend()
例子
# \donttest{
# ggplot object
dat <- data.frame(x = 1:5, y = 1:5, p = 1:5, q = factor(1:5),
r = factor(1:5))
p <-
ggplot(dat, aes(x, y, colour = p, size = q, shape = r)) +
geom_point()
# without guide specification
p
#> Warning: Using size for a discrete variable is not advised.
# Show colorbar guide for colour.
# All these examples below have a same effect.
p + guides(colour = "colorbar", size = "legend", shape = "legend")
#> Warning: Using size for a discrete variable is not advised.
p + guides(colour = guide_colorbar(), size = guide_legend(),
shape = guide_legend())
#> Warning: Using size for a discrete variable is not advised.
p +
scale_colour_continuous(guide = "colorbar") +
scale_size_discrete(guide = "legend") +
scale_shape(guide = "legend")
#> Warning: Using size for a discrete variable is not advised.
# Remove some guides
p + guides(colour = "none")
#> Warning: Using size for a discrete variable is not advised.
p + guides(colour = "colorbar",size = "none")
#> Warning: Using size for a discrete variable is not advised.
# Guides are integrated where possible
p +
guides(
colour = guide_legend("title"),
size = guide_legend("title"),
shape = guide_legend("title")
)
#> Warning: Using size for a discrete variable is not advised.
# same as
g <- guide_legend("title")
p + guides(colour = g, size = g, shape = g)
#> Warning: Using size for a discrete variable is not advised.
p + theme(legend.position = "bottom")
#> Warning: Using size for a discrete variable is not advised.
# position of guides
# Set order for multiple guides
ggplot(mpg, aes(displ, cty)) +
geom_point(aes(size = hwy, colour = cyl, shape = drv)) +
guides(
colour = guide_colourbar(order = 1),
shape = guide_legend(order = 2),
size = guide_legend(order = 3)
)
# }
相關用法
- R ggplot2 guide_legend 圖例指南
- R ggplot2 guide_bins Guide_legend 的分箱版本
- R ggplot2 guide_axis 軸導軌
- R ggplot2 guide_coloursteps 離散顏色條指南
- R ggplot2 guide_colourbar 連續色條指南
- 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等大神的英文原創作品 Set guides for each scale。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。