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


R ggplot2 position_nudge 將點微移固定距離

position_nudge() 通常可用於少量調整離散比例上的項目位置。微移內置於 geom_text() 中,因為它對於將標簽移動到距其標記內容一小段距離非常有用。

用法

position_nudge(x = 0, y = 0)

參數

x, y

要移動的垂直和水平距離量。

也可以看看

例子

df <- data.frame(
  x = c(1,3,2,5),
  y = c("a","c","d","c")
)

ggplot(df, aes(x, y)) +
  geom_point() +
  geom_text(aes(label = y))


ggplot(df, aes(x, y)) +
  geom_point() +
  geom_text(aes(label = y), position = position_nudge(y = -0.1))


# Or, in brief
ggplot(df, aes(x, y)) +
  geom_point() +
  geom_text(aes(label = y), nudge_y = -0.1)

源代碼:R/position-nudge.R

相關用法


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