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


R ggplot2 position_jitter 抖動點以避免過度繪製

違反直覺,向圖中添加隨機噪聲有時可以使其更易於閱讀。抖動對於具有至少一個離散位置的小型數據集特別有用。

用法

position_jitter(width = NULL, height = NULL, seed = NA)

參數

width, height

垂直和水平抖動量。抖動會在正方向和負方向上添加,因此總擴展是此處指定值的兩倍。

如果省略,則默認為數據分辨率的 40%:這意味著抖動值將占據隱含 bin 的 80%。分類數據在整數上對齊,因此 0.5 的寬度或高度會分散數據,因此無法看到類別之間的區別。

seed

使抖動可再現的隨機種子。如果您需要兩次應用相同的抖動(例如,對於一個點和相應的標簽),則非常有用。隨機種子在抖動後重置。如果NA(默認值),種子用隨機值初始化;這可以確保兩個後續調用以不同的種子開始。使用NULL使用當前的隨機種子並避免重置(行為格圖2.2.1 及更早版本)。

也可以看看

例子

# Jittering is useful when you have a discrete position, and a relatively
# small number of points
# take up as much space as a boxplot or a bar
ggplot(mpg, aes(class, hwy)) +
  geom_boxplot(colour = "grey50") +
  geom_jitter()


# If the default jittering is too much, as in this plot:
ggplot(mtcars, aes(am, vs)) +
  geom_jitter()


# You can adjust it in two ways
ggplot(mtcars, aes(am, vs)) +
  geom_jitter(width = 0.1, height = 0.1)

ggplot(mtcars, aes(am, vs)) +
  geom_jitter(position = position_jitter(width = 0.1, height = 0.1))


# Create a jitter object for reproducible jitter:
jitter <- position_jitter(width = 0.1, height = 0.1)
ggplot(mtcars, aes(am, vs)) +
  geom_point(position = jitter) +
  geom_point(position = jitter, color = "red", aes(am + 0.2, vs + 0.2))

相關用法


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