R ggplot에서 츄파츕스 차트 그리기 / geom_segment ✔️ 필요성 이런식으로 츄파츕스 같이 생긴 차트를 만들고 싶을 때가 있습니다ㅋㅋㅋㅋ 있었어요 저는... ✔️ 활용 예제 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) 데이터 분석/R 2021.12.07