시각화
ggplot2 tips
몇 가지 ggplot2 팁 x가 factor일 때 geom_line() x가 factor일 때에는 geom_line()이 그려지지 않는다. 예를 들어, library(ggplot2) library(dplyr) dat = data.frame(gender=sample(c("M", "F"),…
시각화
ggplot2: Aesthetic mapping and scales
시각적 맵핑과 스케일 시각화의 3 요소 데이터(Data) 시각적 맵핑(Aesthetic mapping) 맵핑 : 어떤 시각적 특성을 사용할 것인가? x, y, + facet_grid(y ~…