第 1 章 前言

hypothes.is: https://hypothes.is/groups/eBBqEGde/minicourse-ggplot2

要在hypothes.is貼上程式碼時,請依下例張貼:

<code>
  #你的程式碼
</code>

1.2 環境設定

library(dplyr)
library(magrittr)
library(ggplot2)

1.3 The grammar of graphics

  • Layer(層)
    • Data:使用什麼資料
    • Mapping:使用資料裡什麼變數
    • Statistical transformation (stat): 需不需要對變數先做統計轉換
    • Geometric object (geom):要畫什麼幾何圖形(點、線等等)
    • Position adjustment (position):幾何圖形位置調整
  • Scale(刻度尺)
  • Coordinate system (座標系統)
  • Faceting (多圖面)
  • Defaults
    • Data
    • Mapping