折線圖

ggplot2 資料視覺化入門

Rick Scavetta

Founder, Scavetta Academy

常見圖表類型

圖表類型 可用幾何物件
散佈圖 points, jitter, abline, smooth, count
長條圖 histogram, bar, col, errorbar
折線圖 line, path
ggplot2 資料視覺化入門

Beaver

str(beaver)
'data.frame':    101 obs. of  3 variables:
 $ time  : POSIXct, format: "2000-01-01 09:30:00" "2000-01-01 09:40:00" "2000-01-01 09:50:00" ...
 $ temp  : num  36.6 36.7 36.9 37.1 37.2 ...
 $ active: Factor w/ 2 levels "0","1": 1 1 1 1 1 1 1 1 1 1 ...
ggplot2 資料視覺化入門

Beaver

ggplot(beaver, aes(x = time, y = temp)) +
  geom_line()

ggplot2 資料視覺化入門

Beaver

ggplot(beaver, aes(x = time, y = temp, 
                   color = factor(active))
                   ) +
  geom_line()

ggplot2 資料視覺化入門

漁獲資料集

str(fish)
'data.frame':    427 obs. of  3 variables:
 $ Species: Factor w/ 7 levels "Pink","Chum",..: 1 2 3 4 5 6 7 1 2 3 ...
 $ Year   : int  1950 1950 1950 1950 1950 1950 1950 1951 1951 1951 ...
 $ Capture: int  100600 139300 64100 30500 0 23200 10800 259000 155900 51200 ...
ggplot2 資料視覺化入門

線型美學屬性

ggplot(fish, aes(x = Year, 
                 y = Capture, 
                 linetype = Species)) + 
  geom_line()

ggplot2 資料視覺化入門

大小美學屬性

ggplot(fish, aes(x = Year, 
                 y = Capture, 
                 size = Species)) + 
  geom_line()

ggplot2 資料視覺化入門

顏色美學屬性

ggplot(fish, aes(x = Year, 
                 y = Capture, 
                 color = Species)) + 
  geom_line()

ggplot2 資料視覺化入門

類別變數的美學屬性

ggplot2 資料視覺化入門

搭配 geom_area() 的填色屬性

ggplot(fish, aes(x = Year, 
                 y = Capture, 
                 fill = Species)) + 
  geom_area()

ggplot2 資料視覺化入門

使用 position = "fill"

ggplot(fish, aes(x = Year, 
                 y = Capture, 
                 fill = Species)) + 
  geom_area(position = "fill")

ggplot2 資料視覺化入門

geom_ribbon()

ggplot(fish, aes(x = Year, 
                 y = Capture, 
                 fill = Species)) + 
  geom_ribbon(aes(ymax = Capture, 
                  ymin = 0), 
              alpha = 0.3)

ggplot2 資料視覺化入門

一起來練習吧!

ggplot2 資料視覺化入門

Preparing Video For Download...