違反直覺,向圖中添加隨機噪聲有時可以使其更易於閱讀。抖動對於具有至少一個離散位置的小型數據集特別有用。
參數
- width, height
-
垂直和水平抖動量。抖動會在正方向和負方向上添加,因此總擴展是此處指定值的兩倍。
如果省略,則默認為數據分辨率的 40%:這意味著抖動值將占據隱含 bin 的 80%。分類數據在整數上對齊,因此 0.5 的寬度或高度會分散數據,因此無法看到類別之間的區別。
- seed
-
使抖動可再現的隨機種子。如果您需要兩次應用相同的抖動(例如,對於一個點和相應的標簽),則非常有用。隨機種子在抖動後重置。如果
NA
(默認值),種子用隨機值初始化;這可以確保兩個後續調用以不同的種子開始。使用NULL
使用當前的隨機種子並避免重置(行為格圖2.2.1 及更早版本)。
也可以看看
其他位置調整:position_dodge()
、position_identity()
、position_jitterdodge()
、position_nudge()
、position_stack()
例子
# 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))
相關用法
- R ggplot2 position_jitterdodge 同時閃避和抖動
- R ggplot2 position_stack 將重疊的對象堆疊在一起
- R ggplot2 position_dodge 躲避左右重疊的物體
- R ggplot2 position_nudge 將點微移固定距離
- R ggplot2 print.ggplot 明確繪製情節
- R ggplot2 print.ggproto 格式化或打印 ggproto 對象
- R ggplot2 annotation_logticks 注釋:記錄刻度線
- R ggplot2 vars 引用分麵變量
- R ggplot2 geom_qq 分位數-分位數圖
- R ggplot2 geom_spoke 由位置、方向和距離參數化的線段
- R ggplot2 geom_quantile 分位數回歸
- R ggplot2 geom_text 文本
- R ggplot2 get_alt_text 從繪圖中提取替代文本
- R ggplot2 annotation_custom 注釋:自定義grob
- R ggplot2 geom_ribbon 函數區和麵積圖
- R ggplot2 stat_ellipse 計算法行數據橢圓
- R ggplot2 resolution 計算數值向量的“分辨率”
- R ggplot2 geom_boxplot 盒須圖(Tukey 風格)
- R ggplot2 lims 設置規模限製
- R ggplot2 geom_hex 二維箱計數的六邊形熱圖
- R ggplot2 scale_gradient 漸變色階
- R ggplot2 scale_shape 形狀比例,又稱字形
- R ggplot2 geom_bar 條形圖
- R ggplot2 draw_key 圖例的關鍵字形
- R ggplot2 annotate 創建注釋層
注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Jitter points to avoid overplotting。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。