데이터 분석/R

R ggplot에서 츄파츕스 차트 그리기 / geom_segment

세리둥절 2021. 12. 7. 21:47
반응형

✔️ 필요성

이런식으로 츄파츕스 같이 생긴 차트를 만들고 싶을 때가 있습니다ㅋㅋㅋㅋ 있었어요 저는...

 

참고 : https://rpubs.com/ageek/ggplot-adv-part2

 

 

✔️ 활용 예제

tmp %>% dplyr::select(type, value) %>%
    ggplot() +
    geom_point(aes(x=type, y=value)) +
    geom_segment(aes(x=type, xend=type, y=0.75, yend=value)) +
    ylim(0.75, 1)

 

반응형