如果 ggproto 對象有 $print
方法,這將調用該方法。否則,它將打印出該對象的成員,以及可選的繼承對象的成員。
用法
# S3 method for ggproto
print(x, ..., flat = TRUE)
# S3 method for ggproto
format(x, ..., flat = TRUE)
參數
- x
-
要打印的 ggproto 對象。
- ...
-
如果 ggproto 對象具有
print
方法,則會向其傳遞更多參數。否則,這些參數將不會被使用。 - flat
-
如果是
TRUE
(默認值),則顯示所有本地和繼承成員的扁平列表。如果是FALSE
,則顯示繼承層次結構。
相關用法
- R ggplot2 print.ggplot 明確繪製情節
- R ggplot2 position_stack 將重疊的對象堆疊在一起
- R ggplot2 position_dodge 躲避左右重疊的物體
- R ggplot2 position_nudge 將點微移固定距離
- R ggplot2 position_jitter 抖動點以避免過度繪製
- R ggplot2 position_jitterdodge 同時閃避和抖動
- 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等大神的英文原創作品 Format or print a ggproto object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。